From 40e27109d663b5191e522dbcd78d94058718d8b4 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sun, 18 Mar 2018 21:58:44 -0400 Subject: [PATCH 01/23] Porting to 1.12.2 --- build.gradle | 91 ++-- gradle.properties | 5 + gradle/wrapper/gradle-wrapper.jar | Bin 52271 -> 54208 bytes gradle/wrapper/gradle-wrapper.properties | 4 +- gradlew | 74 +-- gradlew.bat | 14 +- .../java/com/rafacost3d/bbs_mod/BBSMod.java | 34 +- .../bbs_mod/creativetabs/CreativeTabsBBS.java | 39 +- .../rafacost3d/bbs_mod/init/BlocksInit.java | 25 + .../com/rafacost3d/bbs_mod/init/ItemInit.java | 33 ++ .../bbs_mod/objects/blocks/ModelBlock.java | 25 + .../blocks/containers/MicroPackBlock.java | 165 +++++++ .../blocks/containers/MicroPackContainer.java | 84 ++++ .../blocks/containers/MicroPackGui.java | 24 + .../containers/MicroPackTileEntity.java | 61 +++ .../blocks/machines/MicroBrewerBlock.java | 205 +++++++++ .../blocks/machines/MicroBrewerContainer.java | 149 ++++++ .../blocks/machines/MicroBrewerGui.java | 60 +++ .../blocks/machines/MicroBrewerRecipes.java | 95 ++++ .../machines/TileEntityMicroBrewer.java | 373 +++++++++++++++ .../machines/slots/SlotMicroBrewerFuel.java | 25 + .../machines/slots/SlotMicroBrewerOutput.java | 38 ++ .../bbs_mod/objects/crops/BlockBBSCrop.java | 290 ++++++++++++ .../bbs_mod/objects/crops/BlockRegistry.java | 47 ++ .../bbs_mod/objects/crops/CropRegistry.java | 431 ++++++++++++++++++ .../bbs_mod/objects/crops/ItemModelList.java | 34 ++ .../bbs_mod/objects/crops/ItemModels.java | 81 ++++ .../bbs_mod/objects/crops/ItemRegistry.java | 49 ++ .../objects/crops/ItemRenderRegister.java | 25 + .../bbs_mod/objects/items/ItemBase.java | 25 + .../rafacost3d/bbs_mod/proxy/ClientProxy.java | 39 +- .../rafacost3d/bbs_mod/proxy/CommonProxy.java | 75 +-- .../rafacost3d/bbs_mod/proxy/GuiProxy.java | 42 ++ .../rafacost3d/bbs_mod/util/IHasModel.java | 5 + .../rafacost3d/bbs_mod/util/Reference.java | 13 + .../util/handlers/RegistryHandler.java | 29 ++ .../bbs_mod/blockstates/microbrewer.json | 26 ++ .../assets/bbs_mod/blockstates/micropack.json | 10 + .../bbs_mod/blockstates/modelblock.json | 10 + .../resources/assets/bbs_mod/lang/en_US.lang | 22 +- .../bbs_mod/models/block/microbrewer.json | 204 +++++++++ .../models/block/microbrewer_empty.json | 139 ++++++ .../bbs_mod/models/block/micropack.json | 74 +++ .../bbs_mod/models/block/modelblock.json | 6 + .../bbs_mod/models/item/aluminiumpot.json | 43 ++ .../assets/bbs_mod/models/item/beerkeg.json | 6 + .../bbs_mod/models/item/hotwortkeg.json | 6 + .../assets/bbs_mod/models/item/keg.json | 6 + .../assets/bbs_mod/models/item/lme_amber.json | 2 +- .../assets/bbs_mod/models/item/lme_dark.json | 2 +- .../bbs_mod/models/item/lme_extralight.json | 2 +- .../assets/bbs_mod/models/item/lme_light.json | 2 +- .../bbs_mod/models/item/lme_munich.json | 2 +- .../bbs_mod/models/item/lme_pilsen.json | 2 +- .../assets/bbs_mod/models/item/lme_wheat.json | 2 +- .../assets/bbs_mod/models/item/mashkeg.json | 6 + .../assets/bbs_mod/models/item/spoon.json | 6 + .../assets/bbs_mod/models/item/waterkeg.json | 6 + .../assets/bbs_mod/models/item/wortkeg.json | 6 + .../resources/assets/bbs_mod/recipes/keg.json | 20 + .../assets/bbs_mod/recipes/microbrewer.json | 22 + .../assets/bbs_mod/recipes/micropack.json | 19 + .../assets/bbs_mod/recipes/sanitizer.json | 20 + .../assets/bbs_mod/recipes/watergallon.json | 15 + .../assets/bbs_mod/recipes/waterkeg.json | 18 + .../assets/bbs_mod/recipes/wortkeg.json | 18 + .../assets/bbs_mod/recipes/yeast.json | 20 + .../bbs_mod/textures/block/microbrewer.png | Bin 0 -> 1047 bytes .../bbs_mod/textures/block/modeltexture.png | Bin 0 -> 537 bytes .../bbs_mod/textures/gui/microbrewer_gui.png | Bin 0 -> 2196 bytes .../bbs_mod/textures/gui/microbrewergui.png | Bin 0 -> 1997 bytes .../bbs_mod/textures/gui/micropackgui.png | Bin 0 -> 1237 bytes .../bbs_mod/textures/gui/micropackgui_old.png | Bin 0 -> 1161 bytes .../assets/bbs_mod/textures/item/beerkeg.png | Bin 0 -> 741 bytes .../assets/bbs_mod/textures/item/keg.png | Bin 0 -> 1386 bytes .../assets/bbs_mod/textures/item/spoon.png | Bin 0 -> 5016 bytes .../assets/bbs_mod/textures/item/waterkeg.png | Bin 0 -> 768 bytes .../assets/bbs_mod/textures/item/wortkeg.png | Bin 0 -> 907 bytes src/main/resources/pack.mcmeta | 7 + 79 files changed, 3371 insertions(+), 186 deletions(-) create mode 100644 gradle.properties create mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/ModelBlock.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/util/IHasModel.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/util/Reference.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.java create mode 100644 src/main/resources/assets/bbs_mod/blockstates/microbrewer.json create mode 100644 src/main/resources/assets/bbs_mod/blockstates/micropack.json create mode 100644 src/main/resources/assets/bbs_mod/blockstates/modelblock.json create mode 100644 src/main/resources/assets/bbs_mod/models/block/microbrewer.json create mode 100644 src/main/resources/assets/bbs_mod/models/block/microbrewer_empty.json create mode 100644 src/main/resources/assets/bbs_mod/models/block/micropack.json create mode 100644 src/main/resources/assets/bbs_mod/models/block/modelblock.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/aluminiumpot.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/hotwortkeg.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/keg.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/spoon.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/waterkeg.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/wortkeg.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/keg.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/microbrewer.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/micropack.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/sanitizer.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/watergallon.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/waterkeg.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/wortkeg.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/yeast.json create mode 100644 src/main/resources/assets/bbs_mod/textures/block/microbrewer.png create mode 100644 src/main/resources/assets/bbs_mod/textures/block/modeltexture.png create mode 100644 src/main/resources/assets/bbs_mod/textures/gui/microbrewer_gui.png create mode 100644 src/main/resources/assets/bbs_mod/textures/gui/microbrewergui.png create mode 100644 src/main/resources/assets/bbs_mod/textures/gui/micropackgui.png create mode 100644 src/main/resources/assets/bbs_mod/textures/gui/micropackgui_old.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/beerkeg.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/spoon.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/waterkeg.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/wortkeg.png create mode 100644 src/main/resources/pack.mcmeta diff --git a/build.gradle b/build.gradle index a349a6f..3d88060 100644 --- a/build.gradle +++ b/build.gradle @@ -1,61 +1,31 @@ -def mainVersion = "0.1" -def buildNumber = "52" +buildscript { -buildscript { repositories { jcenter() maven { url = "http://files.minecraftforge.net/maven" } } dependencies { - classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT' + classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT' } } + apply plugin: 'net.minecraftforge.gradle.forge' //Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. -repositories { - maven { // TOP - name 'tterrag maven' - url "http://maven.tterrag.com/" - } - maven { // The repo from which to get waila - name "Mobius Repo" - url "http://mobiusstrip.eu/maven" - } - maven { // JEI - url "http://dvs1.progwml6.com/files/maven" - } -} - -version = "${mainVersion}.${buildNumber}" +version = "1.12.2-" + MAJOR + "." + MINOR + "." + BN group = "com.rafacost3d.bbs_mod" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "bbs_mod" -sourceCompatibility = targetCompatibility = "1.7" // Need this here so eclipse task generates correctly. +sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. compileJava { - sourceCompatibility = targetCompatibility = "1.7" + sourceCompatibility = targetCompatibility = '1.8' } minecraft { - version = "1.11.2-latest" + version = "1.12.2-14.23.2.2611" runDir = "run" - - replace '${version}', project.version - - // the mappings can be changed at any time, and must be in the following format. - // snapshot_YYYYMMDD snapshot are built nightly. - // stable_# stables are built at the discretion of the MCP team. - // Use non-default mappings at your own risk. they may not always work. - // simply re-run your setup task after changing the mappings to update your workspace. - mappings = "snapshot_20161220" - // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. -} - -dependencies { - deobfCompile "mcp.mobius.waila:Waila:1.7.1_1.11.2" - deobfCompile "mezz.jei:jei_1.11.2:4.3.5.277" - deobfCompile "mcjty.theoneprobe:TheOneProbe:1.1x-1.4.6-56" + mappings = "snapshot_20171003" } processResources { @@ -75,4 +45,47 @@ processResources { from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } -} \ No newline at end of file +} + +task increaseVersion { + group 'VersionControl' + description 'My Versioning System' + + doLast { + Properties props = new Properties() + File propsFile = new File('gradle.properties') + props.load(propsFile.newDataInputStream()) + Integer nextbuildnum = (((props.getProperty('BN')) as Integer) + 1) + props.setProperty('BN', nextbuildnum.toString()) + props.store(propsFile.newWriter(), null) + props.load(propsFile.newDataInputStream()) + } +} +task newminor { + group 'VersionControl' + description 'My Versioning System' + + doLast { + Properties props2 = new Properties() + File props2File = new File('gradle.properties') + props2.load(props2File.newDataInputStream()) + Integer nextminornum = (((props2.getProperty('MINOR')) as Integer) + 1) + props2.setProperty('MINOR', nextminornum.toString()) + props2.store(props2File.newWriter(), null) + props2.load(props2File.newDataInputStream()) + } +} +task newmajor { + group 'VersionControl' + description 'My Versioning System' + + doLast { + Properties props3 = new Properties() + File props3File = new File('gradle.properties') + props3.load(props3File.newDataInputStream()) + Integer nextmajornum = (((props3.getProperty('MAJOR')) as Integer) + 1) + props3.setProperty('MAJOR', nextmajornum.toString()) + props3.store(props3File.newWriter(), null) + props3.load(props3File.newDataInputStream()) + } +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..b555110 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,5 @@ +#Sun Mar 18 13:57:53 EDT 2018 +MAJOR=0 +org.gradle.jvmargs=-Xmx3G +MINOR=3 +BN=104 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 30d399d8d2bf522ff5de94bf434a7cc43a9a74b5..0965c456f3152da1a0978d1038d0b28a503f98ae 100644 GIT binary patch delta 25555 zcmZ6yV~}RSwk_JFF59+kqsz8!+y1(2+qP}jSJh?Pw!5s?`@S2o&$$_EW<;)-nSa)b z%rV9sS(gshUj~MtC<6wL_TvW>)DIhXRp|r-LWKX0Mu-X|5_mOuE;4SN@0>w?{5Mzk zU+#~84fH?VzXtv<9Goo}!Tz6|gh^tU|9`#z%t&~q#{BPS{VNP)6za#1WYix&sFD)E zF_PpFAd@8f5dbL~5k9CZ$lo;ybY5C;f3WJABYuDhCo+4qC!*o1Y`!Vd<619_Xvx_4 zL{y_!q3^O;340fx>8&>t_b7OeHXF{hL-QBN-MkBY$NT4abycey7yNxVdEV~Mc+NVQ zn$+pJ&%-qMS&#pXu-AY@fOs&)a(*icr7#Y)pA84Ca0i&y5%#pfa)8~tV#yuhHD%ky z#*T7g2=*A)jC6q~du1Tlo*MFb+4b@ABy`y!9D(!{nBgTnTnZcXOg%w-xJ_WnJ$MCe z$~#$-7<$2)Aw1bbHS$e7QMkK3LlQt8u~_>()9`X)b~%i>IvmygMpD;{Hj=jXQCHuu zA@YJVV*s#tVkPb-GC@2}_mdjoyp{XeLw5jkY?kcA9_=7y$-S9HKyZGAgME#Uhee2e zj;jC0qr97;oGcrTK+tPRRn*ZP|!5_M6#9QUyY!5I{kgF|D(p;F%R*4P*I_VbqMO(^cb%7L5URTuS%nFqj>}N)0`2sv%f-rUU=gOW0)IIwSrV1}CpNPi^n|gFEri$9IUe@;5iAuB zIjc%XCX9qTJXPo|$x&fNg%*fabUHUrJS$+)c0B2)5x+u2RRwD;;i0QTuVUln6&Nv{ zVtyIhgbkLK7_XWJ9WnAd;GVb`dS@&GwE?v)HGxo>F-?u(Wa5GaF6vSR_LIh^I5X8e z5*McY80~fKuqY^c)=m=I&O@2X2pEj`We3y0g4T(nb6L(TBEVRB%e^9`R!{9-#-aLwuzGuTOZmr4iUGhcV-5%^~zO#MrL|3-Z540 zn&}pO={k9qC%65@o~mJjmKrU!gaGjINR5bcI?&n2n!}SkgrYA^E1%hxWL6l$%R7p| z?D4|%M%^?F-l%MJOq?s-;&iJIAa`pIDE+1JOrOFBrUw%4h80s@P%kmGlvB6I;=;fX zeftk*R+1@Kve)d6(%r$ZX7x<|ZI*VB?_?|5rQ{Ho8c@)Z^-^UlJ|kh%83N3tzdz7~ z!hgV;edinkIU)WL$ZFR+wi7$(FYY6CmB&q!Yd zyLm5Z!6IPds${-@qwVD+2my2ER}+jF&CvoCHf!a%&u(YtnTq<=cQ~oJQ#$8b3ci_} zwS1>*Tf6U~YAO8eePYZ67h<3o5Zvl1p{-O>vqfA*+FySC8{Ajjj}FvR{(8}ijP%O_ z1QRApHyASPOMJ}PYO4P}q?(+V;GQ>rKbKFV@mY_dKv?sEh$CmUhK1^TCH7!hE#I-G~H|%tX zz?*-LpTL`xWHa9ie~*CP{Cu5_k$B7RlyVHDuv1BaHs1_n{uK0F{2)Qh3>*UqkG`lk zdN%tvZt)z(W-wYzq#slr>MT5#GYFxu zKIk-MqDBLWe+HKs+l)zxrnveYTilXa^JLM|wvNe7OGHo0(>DLpb`M(mDc|y1*2UEn zym0;2_J-w+9RS5Ai?Ps6$g>alBrve;k&N8u9&s7Buf-RZe&B(bI@cc4y(T0G(q;nT zuITEKxM<%w&Oh7{SL?&5ALo}o;GaDN!t?!u7;hM2GY<1~U4_IMq)@{cd{mU|#4&qX zsG7?^QPatIagLCGjqSe1>`WJb>IyAilu(S`D@Y}99R!7ATE7F^50g!xg|8f6a-4p8ra`AJ^5nV2nsopYW&E%eD`Mn_x|S zB=!Jym76BDYkXBNi{i7`^@m(>VBMx&MfGc_*rj)YoAB_VC9I4uEa-ZV zT9%i2EMe|f?__b!XaARwL}5tn+ippwr=W1dB*2K9oQU+gQK17GBOo?OSSFavg#?0x zEUT=ECBsfp5!C(%*WDTHAE({?B>z26VHm}fr8mXfVzt#JtWatm0#bDRV$$H|KjPAF z#9Fygo#+u77&YhM=3@hV3aW}|kmOWqgHN9Usr_z?ZQ#d=E6B3bH9fyWJp=FE41tY}Yv{`i4|@Z$%?|G`OpSQr2U+OWSfJtEA$LQ|Ki~Q6m$aO)IjivC^IhJ$ zv!*ALA5QW5>t@O)lk*|xW-_bo`)lUn8`KfuJ9>{VS|qu4RIy(?I+1z^9y?b@~FJ@aDX85+DoA62H?`1OX#0OpDn~jgoYxS%yon6c$IRZHMk-6CZx6icTNg zx%GhexXTQ!6!q2EbmQO@f@j|}xeuBiiPA7)#U0CPjRaVF>Y*@2>MiG*0=|p`OH!C} zM1kJhG+QL;!#YZmc`=6OEB06y-N=Z2QxjuDV*|(5eA|mlBRx15(yi6!=11IhiKP4E zbW=7FjsXinqfy#~Zo0-9dIp%Zd<+v*gZ6>&6+m8UNl_=A&HMj%Yd2!Di=HGNG- zn6{cVD%ZSunpijuF>EEK%|-PD#qk`B;p#N408OJDCC7-%8r}PBa%IhR-ctw&(L(Qp z#Ta?yo<17!@w+?o0_{fGIsEibE>W6J>fXf(n)h2YW$%=9VP&x*JN71&|X_Fk!ELF!EPqJCx0`0T|5TAY75ODvLmBXrqT6NN~A^aj7~rhfYWBy?2g2osB%7dCw~z zD4Jr9YAA2*T}#62@jg0wBkiS|QU!5Iiz^Vz&5EoJ)?==t6T0#@Z={p(SEKvq>6-)W7`DBVtD_zK2#uD$N=4OjHie^vwok8P^Tr0w5NL*Y`xCvS(*oiS7px zJ`LQkk>BE>dTbA+-rFrUzOI}{(xg$`VO^tg;V*e_1lbb!jphBxi)QlKYOL~gYA80 z{(|ym4vV`L1wg)LjDj{~mvo1dGiE06ydl&1oNgSFBgPBJ*ipCDx_;QAgT*~=|KjRN zvcIX>--6fQ*Jo2;QCVotCOv4%{SF4SUKhX;KJt|>Y7VH?{dqk@dTFenclZ7?D$+qL zHPBxoz=OAreGbd70UUylqr}F>l1X>6j4n=EJ!szk1CUnOvO&x>!n1Ya3Q(&vX45CR zW7OL7klOtw&qWodShzDq52_=|?2Ky7apgOz;VC&iIP)=N2=ySN|J5@rp-HJfXL_yi z?z3$v{Kj_ii0$o{%B^YUcIs1mWr}}Bwj2mo?Q`-lnXig(Ag+$zHU9m-l?7O7lhx}? zr+>#H5?m4?6fZ!>1=j-GUqEYq{o;|>eqWutHc5z_vNaJyGC{7qXyjK!c6)>Ic`KWq zjKO7$MwfAmv@sDHj1_mPip&O5`d+9$)8s66C7EZaBLu7N&@F8HB|PV(<1f!%y|p{) z>qXYD*qc4Co#)r>rJb+mQ9%%{NP{y^yb=Uo6wF1Ynms@i&%USpP;@MrwDm)`cF$}q z=F$hb+kGMqL*d#D(^!Q8DHyaDPdeeOhF2bVroZa0^kk#F~HwvfSH zqZ@FXCl$b(mILFvk%NnTI__i7U%zR%?u?_HPg-9!Zv&3%2BL&?TI&_7;s|zT(17Qb zj@P2c%f%2ci3yWo72vsDrPxqr*>!JQ#6$a;$bKPtG()R1-F&oRy~7g?`M^ik`2v8NYBMF3CzPb_NyL;IyI1)vWi^G9C_MR(I3;nTUZK4s6%H&>q>IoBj-%8lI`#!M$T5`5z>%RM_ zbG{-B0Sg!?ova%Z8=(~?EM~rBWxgY^i)^X!MMAofnl`g4kl+QQT<6e%UWWrDjJVRh za|8Hq;ZIr7H`CT~ipIxrBwrcmBm&o+wGixMyqi^VxaIwF$P-)oDJ&#YsC}ke0z(x( zBj%LtO$y@x)yiV>EO;4L+}O!~hM_l{&>timyYB?@Ge#x0hFB}`c!Ne@B3yKa z)v;UsD|eCoMHhLy5usPA#SXi;FQow*cl0P$tJI8GFReUSBk*8#dv0JmN<$uZJZrc8 zBd?)V+ZWQRpc41`Llx<@nCWH)+5v1fspE}WTIT6qV-Ipb-Uk$?jGw)j+;6=B3ji+C z+ts0V3Z#cRoEH%P@;!Jk!NE9qH0FXm%Afv`dC;z@h1*8nX|m`OS-vL}zmiYPfZf(> zAP4Y0b$sNk-izkDA%@PSp>1#y&J zyOSPgJeM9Ky{g}UF7(RnMx>?%=dv;}`FITHm{G~2xcW}4Sb^5HYayhj5zuBaaV<=1 z>o@&YSmTT0E`WzObX!7N)2SQeY~4Wchodl48b zQzE86dT=~%sx!Nt3N7%{PTTOL6L(M^tjSg?J1+wpNI_i!Lbi_2kd{7zsscEbKyC!b z%{T-+Ax?yS=-l)KoZR8ELI5Fj0WNZFauL=_-iQU27-s_v$|>luicI(no;68B@ZqGL zrEV+d++3N9W#I!ybdyN;6j0@kqSJoAJhN*@tSr;V-q;Yjhn0S-*G{$2b*J%~^jVaF z*jXyH(eD;9e5*dziex3>{DpR8QLFFim>y4OFgBy0_iMwGElrX<6W~dgCQF_r84~#X zoglqEFs&L0CfB^x9;A1(_1(n6+`Rs1|E9{2xw_Dnb|GS8h}RqC2g=P41Y>2BR4tGL z_1z^Z`4(8|=#V|>$!?IIZ6E#kh9!(7IIfqlRbizepYDpmjV+D zF4Ia&(?pIEt5Yl-0h}*sHEC$&aBAkYIl{HwYJK2vfBYnUp%)_nvhyfmr(+UThNQyVb)3pN)w2UzD-(H@zqT$_#X4IUul)G|uA1=aFnF27SuO zI@fyc9rZ={&kpGK>ztL+XT&XnWnWOh)vCeg7R+eU-fIX_6Y^N|?b$i%;yfV0h0d1- z@M~pP4-d@~@oxW}FIJ^K%AVBaQ!<#5RvtZP?8ca+^Um3_H;-j2duCtvqCs|FD+Mwe zaZmP>@ISQff2iC=w2GkrgT6g`SN9|S)5(SYY2{`@q-mGk{UIPM8qjv`%t9oOM;&HcRXVqp&WdV2yB!j7{eOK937vM{0# z$l_RTNa!~QodAsVn3=$~*@-5!)!XeMhST{I2^@z?q`5ki`DUU@)oDBW8sUY)f>CAq!Hr;|Tezlq`VJ+#gF}s=tXYh6^2b=y)@F;^ee#b(m#|j* zNj_BE^c|yPrcHceNMq2ury&nt^KE#+3m|MP{$d*r3ZYXQkA-Zi zhe}G8-w?1mzCuZ*{c2RD%!O<0$rAJuS8;ZR6*1emd|X+HMv2_uYt%OqpEGCNXI|@J zHl40n)Hf3FS{Rs%YZlZ#iw??Alh+Rjwcd8t&5xHBhA6GJZNq+77b-WKcX}6 zXtaJF4**LW>pUb^>L*`qm&Q07cKF|_fvNZ8PU62`i61&?7l{j?qoSjR_QfH^MT|Gz z!zQUy+!Cy#%qU6TOoK*-4oVJHqJK`DO%WFAvOgvT;_&#UZGdNS9^`;9%{9H4#`GuJ z?^&W^N1o(xdEB(|Y2C)p=c=WzWkvq$?LAHqq&wWf?-W=ZNKJUobT;HBOPhW-KpNxl zns2BsPomsauxkf^aDh4Yvm7kORN`ikY@hIevw}9ia=xrx&^eZYTJ5we@*Yt50U`?${u3GxMZ#S(I?MOic%e~hGsy) zvdL+gkIczhh{>3_1-wBIv1QwU*7o;D{`MJP&u{UXW_kozy4&crrL{aJGX!Zl(YF+? zg=S;M*i%}Wf`^{a@ghsFu8T_}+HGj_)NB;2+KPLg)|TN9 zv7EVVEqDO1C7V#!=(k+QxwSQS77q}V+(yI#ViP|}W9@BX$&&y(@Wt`COO8cR)V&&a21$5rIaV-`d0VRh46?Iy0b6=#^*UsFZgS9ZuE|w)qoV& zQVGfp5GoX=6_N*}5Ur7Lco16X&jnShBM6M*$Km<;fqLkK2dLg1B2LX|cwBhe7_zqztXS&9Heb~ zW*!b{n#b44HJq(QncXIi=GUy#X|xLpMY zZ|4p>@VrO({SjO8X1Nca5A`h0`1`p5nCj18+*saln6IZ2@ez%*wBSA6YjXI zFv&0}(a8^Zq^!62f*6!NiR=4382s;DE2j$UW$_v>kOU=fqd(;9(0Cp#xx`?L^XqaD~B5+!}dpe^RhsT+*dgK8CinT34x;Sof$# zc~m5lquE{5tiMHl|L%L!cqzZ(Y|7fQO@%u4ddlYB@lAX7-QnHg_Ilr`>-}kn`_&4k zbK4F_n7k*#g2f^`77tJ$i3-jv)?`gnn)!7M#tAYnkx7^Q?v z0FE)BQPMX-6@`nG!Xk+)?199q5S4I1LTt~Z(YFzmaFmkgPRdt0RDsg**KnTHe$$IC zN?w{_(u**t0{Lw-p8)9)Ch$u}O8BcW)PkL_Y>yU3&jPM%)E)2;>NiNkZ@E@F7`aJ( z5S`GnSzYZx>l!IPK=VG7T2|lLdtY4<>CiFVZZU()U7CjvuniWk5~aW4p{y|mvWhAc zaGrPrZRc2FS~K`BuuBrp%qR!F%C%CSDwdf{7R0|}b4*gOL#~<9?YMxKSm@a#@cUoQ zYS(L(^|gA*$bhm-+*W$;pj4ArA9RM|G-ciNVE3vweFtxqD5Yltm2iX(2y;KPY3Iqg z@yX;feD=~}ge`9B3Fe_DQ$191vosjRSqZ!_WZNQL4(bk@h^fD}2fanEBf@SaJ~|g! ze=VdRmg3Ng|KO{~4cZluG&xvE_$GBZ^8c$AcQ2G;RstA3WSbNT+-G=NZP3sbp;?M; zv)RIQunXVqsV#Du?Ha>9yE3y+%4wnaS02%q={BEVmHlpTwPk-|+MCuH@;Wj&q>`Cy z4QX_Qyx9j;6Xx=m9h1*DGFP2q`2&kq{G!k^_u~g%BTq77^YD$oz$LrtP3(aaSw_-- zwU^t%aR9JB{bL*U8Ak%9Zwm}Mz!g`%xVj6he*2uy5`$59?CT)}d|s!%*k{AE*k8Uu zy_q6sFBAl-nj6wZpXd_|>AA5{p1(%hZtc{aqI|SRJxuw-G2MJIcNXsau>FY|)BXvb zg7bGQ4AjG|$#63(cP3t+s2|Bn7mvjc@cVZbH~|0J1I(9_ScARBPz~1)oW40Hh$f!O z_DUo9QTFc2z0TO3$h@6^MSXtT^-@N8Ng9gf$LWPF8&AChVg~wT^!SEebARKoKxxV1M;^I0pX?J^?m2yjg&-gVId_?pgVE1|vM{t&|$m^cX?S z3{)aDVRUMti|{$jqpcI?o7=VZqd4*J5cj(^A_Nr{w$JbaCF0_!A+MudI?A2(Y=N}D zo)Q}*^awuahf&5CjU2vr>UE+q^H69pq_H+CbL9AV=6kMYs;_~{&gSb>ahWHlB!F{p z75rmA(54%8L+7|G`$pK{9l3|QRaYub%}UNX+*x<1W(fySZB`fiW0^Y0Rca9T?;VXI zbB*U6XPgr3&>pu%K3WpnT|f4TjcN7auFk`Ha4v_sDL$5;@se2ej;`3VSapF=1e0%rH$s~p0)3akZ;YN`OH;&^Iqpq?&TA5RMgX?Oly7!` zC5<+49r{in%wtitOGWjxY9E0{&B@}$Ij3Dgtj@>}yu$MIsy2eBntPKUsr%@a4@m}C zyO$G*8OwkFmm!2R9xJ>Jyd&(FvePxWs0wUyA%I+@(3fWM)PuiQm;0|{Gv zz*1w}ulI(I`&pea%<|^-1Cd!iIW_B!DR2LUQj0Ax$P~d#-N9}pq&qHd&&PnIci zsPXG+lq!S3=&;Q(T{f0wgvR@(?8<~)KlEk98F67fb#L=Kv@NL5GtYOG>m|K7vaE9&Wo$-I4e>dLRX*d5+`x5kzAN2pJ z^(Cc%qa@ie;sZPu)RDf>CQ?a7F)TnJCE3($bQ?%<8d z<1A!bn4Qmvx9e%WshC-*D&BAFfH^^7UX4Z+2gl58m$bFM3|`Xj&yQz|ANm6dEW(~T zBSw=ln(>amMu-^3HHXQu(-QV465$9_&2$IUdb?4FVE|>tLG2WKox#-DTbe13A|qXY zB-=Y6KQ)saX~Un}J2rg1@)$h=70s$iX^Anx4@SGAMW`fKk&w8Gurv87`!Qo`V33l` zW1&ywt$yk-V6J4i$?2^`ph#zEsTruz$L!dM&TY?1gBnvW(2&8TW-e&$2b9>`v(P$i zvt1?1r2)v*Sm#@<*CsR3cNy=BeizNPEb2Y>X3nY=#Y=9anxmQPMVeD!u;ong+?A^b z@cnH;#vtlqV9XSYEU8k`5-OYMDb_~wTV}IuHKTNEQI*cHjzwm^w8om0*ENt@YG`*( zD0G(u^}g`sCA-diNK5ZAItGVZg4U#~YpTw1^a7A^uco(O$uW9;PMOchPC89I=xDWC z*_0|J<||R(XC}y0n2~l3&_PZ*Hd8B1{Q-6#t4g#~7nvH?gw(MHVGS1kMugE*v z(p#Szw^iMgHwBF;k8Q%6!8qMrwCvfi2@u{hK*G=(Zo%q&wka*j%I7R!#A112W>3r_ zppFwq`$8aiJL`|e^d;yMn`yyW-x>bV>g5-rFQmYxz5^N66hp3CEmf*brb5O&s|tRD z{1-DlXPaTIdUe$)H^dyiOfSPvttI`}5b-fQ*zdVg?uDP#Nl4zM*)x=8Y|AXRWT1W3_t0CKp*hss z3$mm+h1Mz}@xTCg>Ru_Khf*Z``6AF71;Q*n@mr~kW z4J1jy0M%dhk<-|B(1-P!1G)8B$~3FI2Z-+?dSqKUcaH^>dcSUDiSUrZQ2^sF6ldEW zq;y{)UlO`EoN!Q{m*6u+yrJ^iVSnC1K%J42{vHWN80q#ysUr{Aflh=E74@BpYewbf zQ7|77jho;&38VDmON(UN#*suE{M8XBv!OiwRui7G%N@2MbE`~+O?&3K+a`*XOkOYz z=_P7ORv$C@{WPJ#oSp%9RRu5xKO7RFLw#E7WCq%3wglQRgHsFV8}3M7+4a`enMlE|st<&YzgAe)%U-xc{; zuFx$%jcsR83v^W>MNon=A*?MaaYCNtg_rB*Md}OkzndfYe|(`yG$8B$LqKbS#)tq# z`>#=S>urY`3;xHCZR{jLWlBJfCbTcwir-gma~CVlPht!ty4CvC5h#4xgH^o!`h*gy93owW;ic3TuyxLtPh99H-zmUb)p2}q;%7xC}CbsTd0 z$CfUC1?DMUw>Opu=0lG)40pN@06jN=Nx;i&+|H-|4_;t$09UT{pcddG1TQyri1lY! zU@Qb!+ARb84M+Y#W5DyS7T68Y#o1GT{-Xr%Yg~x(OM3_wXWPP%y%x)I;2r*-MwdKF zm^c*X<~!UkamUQ7sbS`GsMykdPSFmjn>*W$@^&-NT&^b{O9im?6!nAqcWeyL?UAawmG3Ly4X z7=3p85E?>+zXYoAd`Ss>YbAa}Wq($IAML>5jr3i-AcB2Ie9zzQ;P{iZeMyXdpT9JO zYFNHR5EBJ6;83ZtS(D^P}6daZ$BtJk{bEnqr4My(yHc+ABI;VlJB3^*y>9@1wBi>q}htt(R z2@PMO``5ii2SXmSneF}K0+bi8>dSfcEM8qo!c_Hz9=?Y8fXi#q4^_do);6eMmg&i8 zIqIyR_#UM`BY>7t7WZd}mGL9nHXlX&Yt-3xg4Sc(OeW819tSsz>PuOVL63zsYyw=q z+DW%4-l~2$V}=bnD!jeWjCed{rkt+3R8UFEH@zGkB{n<>Z zD%;lTKL_qPg!@GF6=udJ@kX9o_{j(j&r0sJB0$IEF8Xh2O*p1i%l>?gTvo!Ei)o@j zvQJxV`)6vFluV_Yn(9%#CfTN*7*--P3FSo55CT=YW$}ien5Hx+kd3#LKUqdZ0;wBIWcyb`ebdKL|r>T z3ffSm8j72mrcsHsVr|?+-5Op_(VDr>{nO;h8wuKhOU?lAM$GK=m z(%B+xNlGKYO1Y@)7lyA&xyZcb<|v=C_Unh&s$(ft{vJ4~!2Q_^=dzA$&&E$00^s9O zIm{00+){%6IwP1t6EW7@El3I*2|XB+C_ErIp!EJb95Gj32|l;3jN~@GVZS&&FFhmQ z;3+}7M(~((YJBz2&E+lH!NrsEgq4!yC50LlYi_#?GIm^&K|bfJWkfQvn|O}L>1R-J zTWx@|-t+1zZl+gmnJa2GJdArA4xko4qK}JWRv{aP#y}XuEn1hY)<_|ci_S6@&Muaq zWe-{Ml6uSBFCo!_Nwt2$9mksjW;zd2ud6Dn>1nY!jiZ$TbAr7-hJ{uLRI-shmS*W2 zYb#Xj!3&+AjW73gDL68w<$(w~y+<=Aw#(W)LOsIjCsh56nadL%Srdw@08M0$5l%Vp z>DojubLL61T{qtYF~;K0wW=3^E3u|n!pHlLY!Tej!p$rTvv7heEad`kP8(I`I+K#_ z)Qq8L>8oSQibAQK9QF`$7ul5Z)mP;K7MUt#Vr@0uX*GAY(J1tbq5-X`))MLEQak-; z4#xG?sg1I)tMbfDW94E=fO87Vu(I+An?85%lQp|7Wrzl)nX$ly4rZ0E54#c!%9o|v#yti7yn5eG#j5f?z#e-waqAJ|mUh7wa=|SypwjQOi4ZoDLQ(g@|F;%`^>aWJ|N3HHAG4?fM2imnm z*SzAs)cUwrYeG&EVAw?6RT{%xTz<6jqee?-W{d44FzX515XUHDv;-vP18(1+=D@QN zk@zxVv6@~*_u!-a;1#$=WfKR}>uF{8I_Z(qbl|0f@hd|Ltd^a%?5${X=IHE*_wJi8 zt6M5OUlZE_dbuQ3nhQVzpKUzem?lQ3lpA|C3H3ioFCP!`&rYu9@j>Omo-5*XFTyM zHXr2iJrBJf#SS$dBCilD{*S9h<~*3H=`wW&3(FqtgyZGaz7WBs_#V^uX}Sdn%5Jra zg@fwZVtAk!fWXyot4T)z*nAMH+8MQ)n_rslr`cgbFwlQzz}n#IadYJs~WGmZj`Aj`+(5-iKcE`pH2L?fGBN zmO=B3i?Z6Y`R4PX;?u7kij9W9ZKPT_@H)Y-U@{p+01A;1YRu3}nnn?p` zy7BrXrw#V``g4q?2{lzI{6#IQ567Y|D}4g-(`I%1D|2Vfn#mYV+!7;)U^Q9spwa7F zDQCBl0nl`Y_ziYfb0h(`Z{h0wp_2K(B^4YWpHiPs`MnqHNl~ItA#7!@t*t###TkrL zKvwty-4yoLZ;wG+b;a4Rw>y7dHv@C&kG{|uzt39A4GqRl9$3IrR#f@n)J*4A1!}a?wM`?Iv{O`ZlQ?ifLYvY z8()kt*i*u5IK)4X2|rfGM%cMBckLDOW#WnS`x|l%$&jG$*>Y_!p>~w|iJ)Wo;|eJM z@Q`Rpq}7Xq77}vA4s}lYJeSjlZ!R)EoZXyeMz^s#Q4Oz~vck;laeY;9YkI(oZhSk;gTC zTsfRk8x~fb-ce!^QqnT7MCPNQ8UN0LyK8~Fk^kuqT;ZJg zCqyE}NSRn5$&|22QXr~)BT1$soP*a~J50X$Ihum<^%r`gTfZizNv0U%K@lw)NAFFcbgZox4lwq;EnRfa+0;ASG)CZ-y=rxG>f- za)c=&FAfsCRQxJZd_5M@9feDhZU*^whX~4rI-$DumH3t&5Z~GgJq0`_(r&AzRlTaF zrKNTGspYAsx8&wubbohvn6pSRfKv4NK5sj4UwmiZ_!{WHz9-Ef&4GR~34LBBi6@LO z%H^^J@Ua12=gaT88HCLE^!K0%_S@S0SO#H05h@6LRwI6)*^EHd6Rw>Hs+3H#{SA)FC^}uQCFdhEZf*dGqSv(>T0a>t^Xcx$OYy zUZU=%5t`_SHF=z8lU$%eQ-=+C_~;h*&O{S1*qeFjSevmaDIym-x#zK3hI|3t&Udu= zy?pB_=#YFuVO0s*ozX_+TQF$HV)gI!UF(mQTQL|1M8&FGyS=E-ZV>^7gi>iEdLg^b zT1SAy?^dU-ydnSP&rRxk_ai4x+`^?2|844-a41wYE{uG6O%yr4Jf9a9E7=fKkoB>c zc}*7Pid%*dAFxGImxE18*f+7c39t{XUSWZ{_%>P~r3RHRIx2I8TtmA3vP83}umTeV zE{?{Eo%MEmQ9*^xHBYGzFOc4Bnv#j!Yi(0+ht7{*$4 zMyPKYPmg*V$jp@E5nXSDD3M?O&?38x0}~3yf>te#ty8X}W!YQ`8~a4~Xlfd_Jm)^U zF{+c8#1ogwnp9GtxKTZ4%u}(i0}Fsu_5lB$d8=}*xd2)vvazh$-3B&|&Q4A|gF;;N zF|_(uNZl`whg17fAZ7FYCUaH47VZ)?rz$s7Y``9e3Z!(DIAwbEJ~Lwp?Ymy5F<7bglj| zn+4_mlizAJOngd@IdMZ;s|zrZz>n_txaB=M9sFW0b*5>hP!12O62YVY8@>gBwnEHS z;e>o&s!62nF1zme@f1ImpjF}n8B$r1{tzL|R;?$~YFaGb7T1o`K{U>YXjCX^#o86f zMr(C$qQ{h38YNXq;ab&znBO=YdEv%tO@;z$8a!`lofTq65`_GhcNH)@gzHLwc{m)5 z9!psRhh(>0bzrXAMCTL88Ho3jhyUu&sFt{%!w7j-tuzjD7|Ih{CYyU;^eL%hF9WLY z1S?U!1{<({UiPW~WlaTCosgQaBRH0o?wm~kO^Q&9TX)`XnuzM6U7LS;6!6}6Y`noSm{TEE!Z@@bOwu@agQmn zl{h?Sp17QO8Ej=uT_&Pr9}g#^<|0V~BXgV=T{e4!waF^ste%k1htd;q|JtV;k7+Pf zoiVjLx_8~DC79rcn1jZ@%l)dx8&=gj&&=8^ajySq<7La{MFKGH_-(G^dj0YGkddj^ zR{i(OeY}FI%%PVJwpfd6(mJ5tc?W-?TKBn2Rw;?1SrMv+%T0JqOd)f*5Osma$X;qe zo36Q1K4f`$4=7`L2SM5JqWWMhzf)+$AQLiiuj20E-drq2&ueC9=2Vq4jXzvf;kCpf zS8{Udm9kxCPz7KU3ZnUp_OG2+`FA68WnQq{72Z$2B|J?&{rD0lnyjzX5o?M zs`LVFyXM~Q!z-okgdYa*OQ5&>9^SWT++ZKKfuGQzq60Q~HBIdc27pduY7=g0ucx9B zLL#5b(Ku@zX-d5quy8{SV+}CHN@+}+R*>$M&#k^5@ zweOY4^ik_oU~4xxf;_dm1RaXvBr{1xUSeI#JWG7A4G~@o5w_HqGS;WUTR|<*+=MCk zXl5hDm^c1RH#csIkpZnjU@vvwjz>pyBZ&(8D_}dH@HHDa+5Kg`h&A-F(qa&4pF()} zXk1MCx7pZk^-RQ-rnMtnsYFiUF4J*w9#`X!v{S^>oly6rwU_tcJtp zY1#zmYzK4k7>$#r!k0&Aic5u>R9*9M1*MhnDP+>dXU$lN&WfSg*U>;;e5I(6E%eKF>4LN~ z6)8L95RHx*x{P!`S{^s3M|(2SQr0+jml2&gD>EJ{*|U%*bY1?4@cshkTk?qT0hi`G zcxPC%PUUCi2gbMRQQIs2Vt#E)oOItw9`%Py$_~2gN8pZ(j<;+~={@6~$ybV@1z^PT z|EudNprYE^_DF+-fOL0vmxv$?-H4ZzkPwiTbPxq3WPl;0yE~AHQ9!0%uMAb`nvh-$IBw?{_q~*%V*B}~yJ_Kt_9e%h z|Fp+Xi93}qYvmqMBG0vGN-|_iyr|>qvB-(al;yCsj`&^=slWGd^gZ1Q@C-TAJpCn7 zR%l$LOGlFaxZ zBq17z{t(d+F6Fc4Z&ljn$^*<3_+#uWpn-+YBSb2J^Bf!yvWP%BK8UyC$CvG2F^!_{ zM+w#}LIai*Vn%H{-|T|$#Cp~oJ*+OqPh-!cx|cTA1!rEi4?BiXJ)Mq8|mPFvQ0wLt^jed-#aDAYShXM|hxWau1(In^54xo4i;C|(nT z`*7+jrMW4m{*Mnb(zV8K(f%Ut6TfIXHZWEPB(7KLiu-GDE;0*bjx3{m?u&WYV5P@9 z71l~bh2QDi-H|~;SY>#w>!h(OZ&ZQ=_OyxGchxsG4=~ZeB(N~g4?hmpoWVIx8_ifq z9T5mWIAb7>->ORi5oEvXWtdT zw#n*TA=v|FUOoVXYWTcha#Peic>*~2->-S3%We4UXEQf%P_G=8H3|~P* z1~xmHw*!=QgR@dHe>#wYV*)E@Q(pOCyl`6P$sG&0bdZ|6r)117a3M~B9? zA~TOZNtdq;>|@vBm#++9o}tWo9VizZnJgRVzTMAD#}P{9@(JI-$fiu4pQMQ!)8PRQ z>xnBi;NM+k0omGx3t3P>b1+u02SPGuX?F}dFEvPd5AREL#h!z`bwwVQTc<8>R!L!u zvL+jZlxBJZQF9&kuKu3fR4*!q6a zX^6v$sKsj&J<5-}<#(^{1LJ_sLsK$+H(Y4e7C)HNKh1%t~{W|ihlu(uXZ9|yK*zbl+!dlT7p3+}ca05P~#pUI?*X<*l_RB1^_ zS#W#tyS!hiB#8D%&MFgBHQ&HRsAUT^sldxMGqSF>J}CK)p4XRp-$(o@fOn9Qx*U06 z8^Oy1luIc{jN+jvJ4{GMY|}*H``EF>5lcb={APA(Roj*g*#GRnYy-AQU`b5!M}GIh zbo8#4k)a4spmLT~>f)!EB`%=USaIP|J7GgwB{VqnaiMLEcA;%!$`h?zsCOjc-K1zY z@W9Z*$3#=HWd-i~xF5J+2yVEP%u?*VOa1qAAi(CFWv360H>=5>0$KzZ=+y)q3P?aK)%N5#<)XgVLGynV}7H`^OMkRPR$2QmFdG6P8{!eIw z_FR5>L5@UYXTFVh{(3Ez8znV|UqKsCwb_RpF;`4}1Z9t(S6172ezHQynyH67_DO19 z541}DJ_>tRBjw_?7?4R5SwdQ_^fjyfWxRs1NpY%67-{0qD$-M|BC#E8Q3`Ywk~EM2w~pq*DdGW%13x9=i1@=7$HVJ1)>dR` zF1Ea&3u*&yAQ`=8g-LVAUypk~K~nJhzge~j1S$8l~I)auG+ zxS#kn_%A?Rna#?S9A8XxOYoi}S}hSx8V)u1%RbLHTvQt(O`gfRXBVEvrRODU(_j)1 z&JeAPH^)lxqux(+EuOgFzfw28e5kY|-6rnCEDR9EX`ThoU-0OjahsT;*^6UPH=@p8 zV3**{9RU&=-ggkKKGwY;wUOi+?3u3)cs|7DlSVbIe;EuTMWwzQR1&aOw(i_$03 z7iv!6Dz3GZT6|cL@H9|)zQU2rFp7@|!RYO`D6DVT-G}7UTj9FRBgn0fg!is!F+m4- zx(y-5Zpe(D1T32Z^gm;)XzmlG623J+f8LCO6!*`4i3|M_;r7Ry1iRwJ+DPKc0>&1~;qZ>FwY+s|2 zTEod{y+r$qD!u5GkJ&rK>r6G4o}XxH3-y3(+*Pb}ZDP2l5^D*BfXeh~*5|<+V3!P+bx?E=>j<8$V#BMUlWx|!h}9X; zW3i9jmK!cgsrM?x&jJrj&*c*brXW)3A@x&vC5GfJ%yk&b%@3Fo*5uj6Ff1x;X z<((@@_|Mip1sZRpVE_QE#ISM`>=W~u2zFut)eHYC$(3Z7_m5NYFf7@3G-&h4I>hqt zm4OsfKFx^r?`hCQzO@pDJIjjl#EphK)7wrC#a1Z48g`DTh?)^bUsHF_1wq{c^$l5LVpxRJ(}2FgyC6s8 z;@zdF*Yyh9hJ}j))tz9^3%5ewuemv4x&&?w;`OTSWV^D+FE!M+eC7&Fm}Y6+8?`xK zLVBjOr@^n7-5xfJUAV;{HR!ct)XOz{Y8P~zYq57eMaId~WviJ62i&ip1LNf6w4-X9 zanm$0F8`pZ5#Q{Lqyp#cE~(dmlt9fQ1mLAs)(5`eyc6OFMT_`ukD8eXycF66#d8;j zPeQ1Yqxh5em-aClsU@43agrkfj3Ppkek}Dw3_kgJlIL42ueTlD^Yx-y`to%v_+{P+ zVPoOE*lVvRcp%mG<2}ThpK9&kT~h+dW>tcpO6`ExoNDFy#gz^DOS{G(xjE3nOv4OC zfafum^U)C+Qf=rO(}BH`YKZ@Np&38VB(2)mb4HEmq!RxF-N}1s1Yw_EVOF@hx>Q)4 zYSl2Gql$^4lnpGGry$F;Po)RuR7x8^Gq?!zDTb1#RsB)dc20 z#bqWPWgS=F8^(55+Uw07TO{Q2E8Kh$%O=(#Er`-PUyv&9orCB4%`WfCIo+93iyGkQ%y*~5yE`h2$* zDf?|iZFy1_zQhpXLY75h4}D_?olkvjZj+9m=|@8|(o4f1(3!||7P7}dA3W)Sx)7;A z5cZ4Xhz9jVQjeyd3m==yH~ZN}APDFOZ}5jK>R^4Ee~#5@&zC<4^5cx~H=4JqWt~e5 zA-&QT%^(|Yn-=cK7}!<(snA>u`#z?Lq0iw>+R|E%RI=@@*3B+G= ziAyOj_HLz~>IavNCDO~FCaV*%%TyXaF@b~*J^|fo#b!x?pLeeabypS|Ri4I}@)!z( zTV40fXrHgs72N6T0?A|bw{HyvU&U@!Sp|953XH`mkT~d!WVD@g5!C`JDZe}^&&p)C zGxIv*m=V-LEA`2Zj;G}Rnrair5*)Gh=ZlC5odrov^nywe0W*{V zH;*~WnY5?f%etPnn_r!i^}c#;;A7g9_pHiV!R!DO(vaD@coDSP+yzYxN4+NY$lL; zs!v1c-#Hi~Jj!iwN2JlS60isdJ-lDi<5I ze$fo%E}k%}0-3vC6b@|6N`FuDns{d*$z)ob#cgmRp=vSersrcat}}2TZFsuC(y}I& zWMSyt9PL#4-7H!)Z0}^lYy}_nRR8}&*F0nW|`9y)gQAWJX~Gd=H>halm^%V ze+?0X*BqJUv)oDw?F^qCkWN{Dms8khd!Axj<{&IMBnk>H^dU%@ah~OPk@Zq9s8mt5 zaCpIsJjg&q$bSj-wA<02>%jm_>e6W2zl$`=);?i@~1834UnFUVRSu^S#QZ4Wyf9xWqK3g_XshLip)!DT({*V(Iq!O zIc{wC0XGn`V<~E(cfcl6Sx18XApz#{p`r74k`eE|fvSqWeSHPCM3#o^({B=zI}_bc z+;>gsX?ZjS1N>{8oL#AZ)agkPSlExxWQiqaPZ2}5lJbn+zp5fCN~U5=Hgx`Yo=jwz zzFG8iXPk4mo=2ijc!Z*Ws>Rx-0~_!FiRT?6xqmTe!S0SiHC5k4{xntZM2rK7*}_N# zgNBM*znF<0Q$!c>F&6$koJr<@8p5g1QPpqqSEwI$;$B8m`{J5}>n5aDYqU@%xA_)z z$g^**EN;X;8r($+iuaZ>Lg{{!QoO2u5y}TriXRXaN$zqu^{c<;Zpt_O2AhFOW>=WeRAC-q*3bpvJ6~p3_?A zt##}DXdG0@0N%GCURqpea`NMlO#i!22U*)Ajn$)%n+2>M?Kp&M3K95dQr zQhsA((ozDl5;Em+)og>e$_G$F;&(|c=G9nJAbZrfJzASi68%6Y%Svyd?UMjExvhDL z7KJQmGN%lPKkiY5nd$;XaOP#(-d9pFE&>O>3+;mCIorS4qjiSAd-SxB{6Xh@ zc159ALT1+%=Aq~tNJuA(Ug$%irc)26R&ttRYFA&PA z8G6!2+w)5a`iv2;Y%%$fTS)YI-zcAM);f)knoaCQZI{)7iy$65xh*T0Rc0juZx#8f zZFVl0H{x2V7CO-N9YT5I5IIO}nurt`xIy-rJL;RnhT{X0f%%NPAx=fSh4|HH1swSi zjWyGwW(?+li+5PKqCVD`ye`<>fkg{j5+4r@1*Bcck{+KaFha}s$XhOcXm75c@k{Hr z&C#rrTK1%Pzih>4E<>R@tr%z?>asoJvL}Ev#m{+e8g(W?513A1M|OL30oEUZ`5%K`#P)qS zu>EM*=&Szn+2r=KmTmJg1u`<`)bQw8sVVah*6sVdUM){>&kz_(sh_h*>^>5cWtm=^ zZ0J`pI4h-5i)e22RNJCw6FTQxg*4;@FFM;ns>=p|ibA5FI$I&C1Zr)fpY zv*$p!l)NSTLA81asR#vJ)yUbX?>9 z8TyDc*h<`N;K){TcT-2G#30~ViG$^9UaU?GP)H&4FdNfv_AF>k4>L0-+f>vxU0xuY zE(FnVU_1d zS^e?zeEiw1?bt-y;qud`^!Uwhw)jR!i@pj@Ce_T9hV&=7d)c^msC;{3@I8HI+k?@9 z1~lz8g)zoiU$0i!^|JrmQM1&eG@v{>Q+;rlHG7G(D0eeIE+FsfC{I?dF2X`)0yp=Q z#RA>yIgL;)Diuk&z8wjfD9h@c_tL{#9-d=&<9A+bRn9-XB*h}Y95ght<17|fuhWB` zt!(Fi5OTqK`-KlP;Wf=A+n&Jvu&-*1S-qeS{&%n*&k7$V8$}g~8ZF9h3{2kTzH=D> z(0IQWc)$H*E0qh)=zb%;m&gI4aYFJYccLqE{}=Fv z&qY0junbJzbflU>6!~syr;OMgM2&mY5QVS;%(4`unsk(|Zfdaneg+Ou-A9QuMex!>NEU0 ztbScBk4v6FxLwamScj|kx%496ZdVS-xZMt!He9^joZ-2D=XTxQuN$t;Rj313_f9MR zC;7yUIbn|ch`0IYfvI@6>q-{HXt(RbWnFOcE~-M{_=4F#Z<|}5>fMKWoBze=1g;%i zBnoFwR)sQLd$-9VTwOeG4X$2g9s*~N-AiIPd(`#cAmINU8*uF}&Q*qTAe>K4+?*0vi-I3pc3^oz`%HxfH_m)49I}OCJ_%{}e8$dP^&L2|Y(p%(KHo|3UffII@>;?}@+ya@X zr?}1eosI(l;D+PaP~3208)$Z0BGPixV*pg zph1i^Q2rqPK4u00P{R=|C2xpV@~DvHrn|Sjh5Psnj?=1f!-@G!4(GA@&8#XkxM}ol zpt>y#Zi50ROw0HN|DX{L5C2}cP2e_#y(L(Izk2fev2)$}&jSGGHWUCh{d;--T5P5^ zR&WdMnheqZay?FsrV!OmI*3{aim;}$qm`Y--x+{zueNKn5zd35beJv{)c;QL)aMXz z4>Lsa3*J9{awEN={aSjI6-+ugka^L7ZCsug_DTj z0{Pw{bsNis1jHnPVJ)uRhr^D!-gsA&hV!TPhMV3Mbb}b_lRz@k=>J5h-Sp6o*NuJP zcDma-{W2?vEMQN<4pvyUT{xW_J}^8j;r|{bh)>(K&*Kp{GMn0H;D)52`?~Qg4zf@t z2DebI$3wOX?N|cV8{M!si5Q$lXaa12AKkVNl2}hr59^?@qCQm2qO$P6gRXU8r{Ad3twO*Smm4D+)a4Yp~3#11LSJq+Hdcoc?;&2v77v11L z7m@wpA_sw`FDlIJI+$2qI8s0vgsVs7wu1TsW!~$*E8fCflz_v|R@^9nEf~moD;Zn| z`*dAf-2LfaKzkQFfaYd+8fswxa>%?n5yZX?Zc&iGAS{K#v`(P_077tDHS7Ns%H2+I z+tRQv2hrj%jwZ}f9ypFm6KwMF{m~8oZdPDm_~$R61(I3|`~L#JHVpslR&MV>VBaX* Yy3|`>dlzyDSuY00^$sPk<+|n+a delta 23706 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%0A2n*MWuozM^9|(MV=+bPjjGJc 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 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 27b9490..d808d05 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Wed Apr 19 10:00:05 BRT 2017 +#Mon Mar 12 21:08:16 EDT 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip diff --git a/gradlew b/gradlew index 91a7e26..4453cce 100755 --- a/gradlew +++ b/gradlew @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh ############################################################################## ## @@ -6,12 +6,30 @@ ## ############################################################################## -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS="" +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null APP_NAME="Gradle" APP_BASE_NAME=`basename "$0"` +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" @@ -30,6 +48,7 @@ die ( ) { cygwin=false msys=false darwin=false +nonstop=false case "`uname`" in CYGWIN* ) cygwin=true @@ -40,31 +59,11 @@ case "`uname`" in MINGW* ) msys=true ;; + NONSTOP* ) + nonstop=true + ;; esac -# For Cygwin, ensure paths are in UNIX format before anything is touched. -if $cygwin ; then - [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` -fi - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >&- -APP_HOME="`pwd -P`" -cd "$SAVED" >&- - CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar # Determine the Java command to use to start the JVM. @@ -90,7 +89,7 @@ location of your Java installation." fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then MAX_FD_LIMIT=`ulimit -H -n` if [ $? -eq 0 ] ; then if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then @@ -114,6 +113,7 @@ fi if $cygwin ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` # We build the pattern for arguments to be converted via cygpath ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` @@ -154,11 +154,19 @@ if $cygwin ; then esac fi -# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules -function splitJvmOpts() { - JVM_OPTS=("$@") +# Escape application args +save ( ) { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " } -eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS -JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi -exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat index 8a0b282..f955316 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -8,14 +8,14 @@ @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS= - set DIRNAME=%~dp0 if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome @@ -46,10 +46,9 @@ echo location of your Java installation. goto fail :init -@rem Get command-line arguments, handling Windowz variants +@rem Get command-line arguments, handling Windows variants if not "%OS%" == "Windows_NT" goto win9xME_args -if "%@eval[2+2]" == "4" goto 4NT_args :win9xME_args @rem Slurp the command line arguments. @@ -60,11 +59,6 @@ set _SKIP=2 if "x%~1" == "x" goto execute set CMD_LINE_ARGS=%* -goto execute - -:4NT_args -@rem Get arguments from the 4NT Shell from JP Software -set CMD_LINE_ARGS=%$ :execute @rem Setup the command line diff --git a/src/main/java/com/rafacost3d/bbs_mod/BBSMod.java b/src/main/java/com/rafacost3d/bbs_mod/BBSMod.java index b41ce82..32d537c 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/BBSMod.java +++ b/src/main/java/com/rafacost3d/bbs_mod/BBSMod.java @@ -1,57 +1,45 @@ package com.rafacost3d.bbs_mod; -import com.rafacost3d.bbs_mod.init.BBSGuiHandler; import com.rafacost3d.bbs_mod.proxy.CommonProxy; -import net.minecraftforge.fluids.FluidRegistry; +import com.rafacost3d.bbs_mod.util.Reference; import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; -import net.minecraftforge.fml.common.network.NetworkRegistry; import org.apache.logging.log4j.Logger; -@Mod(modid = BBSMod.MODID, name = BBSMod.MODNAME, version = BBSMod.VERSION, useMetadata = true, updateJSON = "https://github.com/rafacost/bbs_mod/version.json") - +@Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION) public class BBSMod { - public static final String MODID = "bbs_mod"; - public static final String MODNAME = "Beer Brewery Simulator"; - public static final String VERSION = "${version}"; public static Logger logger; - - @Mod.Instance(MODID) + @Mod.Instance public static BBSMod instance; - static { - FluidRegistry.enableUniversalBucket(); - } - - @SidedProxy(clientSide = "com.rafacost3d.bbs_mod.proxy.ClientProxy", serverSide = "com.rafacost3d.bbs_mod.proxy.ServerProxy") + @SidedProxy(clientSide = Reference.CLIENT, serverSide = Reference.COMMON) public static CommonProxy proxy; - - @Mod.EventHandler + @EventHandler public void preInit(FMLPreInitializationEvent e) { logger = e.getModLog(); - logger.info("<<" + MODNAME + " is PreInitializing! >>"); - NetworkRegistry.INSTANCE.registerGuiHandler(this, new BBSGuiHandler()); + logger.info("<<" + Reference.NAME + " is PreInitializing! >>"); proxy.preInit(e); } - @Mod.EventHandler + @EventHandler public void init(FMLInitializationEvent e) { + logger.info("<<" + Reference.NAME + " is Initializing! >>"); proxy.init(e); - logger.info("<<" + MODNAME + " is Initializing! >>"); } - @Mod.EventHandler + @EventHandler public void postInit(FMLPostInitializationEvent e) { + logger.info("<<" + Reference.NAME + " is PostInitializing! >>"); proxy.postInit(e); - logger.info("<<" + MODNAME + " is PostInitializing! >>"); } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java b/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java index c4788e5..eb5b4df 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java +++ b/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java @@ -1,8 +1,9 @@ package com.rafacost3d.bbs_mod.creativetabs; -import com.rafacost3d.bbs_mod.*; -import com.rafacost3d.bbs_mod.fluids.FluidBeer; -import com.rafacost3d.bbs_mod.init.*; +import com.rafacost3d.bbs_mod.init.BlocksInit; +import com.rafacost3d.bbs_mod.init.ItemInit; +import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; +import com.rafacost3d.bbs_mod.util.Reference; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; @@ -12,46 +13,38 @@ public class CreativeTabsBBS { - public static final CreativeTabs BBSTabsHops = new CreativeTabs(BBSMod.MODID + ".hops") { + public static final CreativeTabs BBSTabsHops = new CreativeTabs(Reference.MODID + ".hops") { @Override @SideOnly(Side.CLIENT) - public ItemStack getTabIconItem() { - return BBSCropRegistry.getFood(BBSCropRegistry.HORIZON).getDefaultInstance(); - } + public ItemStack getTabIconItem() { return CropRegistry.getFood(CropRegistry.HORIZON).getDefaultInstance(); } }; - public static final CreativeTabs BBSTabsPellets = new CreativeTabs(BBSMod.MODID + ".pellets") { + public static final CreativeTabs BBSTabsPellets = new CreativeTabs(Reference.MODID + ".pellets") { @Override @SideOnly(Side.CLIENT) - public ItemStack getTabIconItem() { - return BBSCropRegistry.getPellet(BBSCropRegistry.HORIZON).getDefaultInstance(); - } + public ItemStack getTabIconItem() { return CropRegistry.getPellet(CropRegistry.HORIZON).getDefaultInstance(); } }; - public static final CreativeTabs BBSTabsSeeds = new CreativeTabs(BBSMod.MODID + ".seeds") { + public static final CreativeTabs BBSTabsSeeds = new CreativeTabs(Reference.MODID + ".seeds") { @Override @SideOnly(Side.CLIENT) - public ItemStack getTabIconItem() { - return BBSCropRegistry.getSeed(BBSCropRegistry.HORIZON).getDefaultInstance(); - } + public ItemStack getTabIconItem() { return CropRegistry.getFood(CropRegistry.HORIZON).getDefaultInstance(); } }; - public static final CreativeTabs BBSTabsMachines = new CreativeTabs(BBSMod.MODID + ".machines") { + public static final CreativeTabs BBSTabsMachines = new CreativeTabs(Reference.MODID + ".machines") { @Override @SideOnly(Side.CLIENT) - public ItemStack getTabIconItem() { - return Item.getItemFromBlock(BBSBlocks.pelleterBlock).getDefaultInstance(); - } + public ItemStack getTabIconItem() { return Item.getItemFromBlock(BlocksInit.microBrewerBlock).getDefaultInstance(); } }; - public static final CreativeTabs BBSTabsItems = new CreativeTabs(BBSMod.MODID + ".item") { + public static final CreativeTabs BBSTabsItems = new CreativeTabs(Reference.MODID + ".item") { @Override @SideOnly(Side.CLIENT) public ItemStack getTabIconItem() { - return BBSItems.sanitizer.getDefaultInstance(); + return ItemInit.SANITIZER.getDefaultInstance(); } }; - +/* public static final CreativeTabs BBSTabsFluids = new CreativeTabs(BBSMod.MODID + ".fluid") { @Override @SideOnly(Side.CLIENT) @@ -59,5 +52,5 @@ public ItemStack getTabIconItem() { return Item.getItemFromBlock(FluidBeer.instance.getBlock()).getDefaultInstance(); } }; - +*/ } diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java b/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java new file mode 100644 index 0000000..cc152cc --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java @@ -0,0 +1,25 @@ +package com.rafacost3d.bbs_mod.init; + +import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackBlock; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerBlock; +import com.rafacost3d.bbs_mod.objects.blocks.ModelBlock; +import net.minecraftforge.fml.common.registry.GameRegistry; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +public class BlocksInit { + @GameRegistry.ObjectHolder("bbs_mod:modelblock") + public static ModelBlock modelBlock; + @GameRegistry.ObjectHolder("bbs_mod:microbrewer") + public static MicroBrewerBlock microBrewerBlock; + @GameRegistry.ObjectHolder("bbs_mod:micropack") + public static MicroPackBlock microPackBlock; + + @SideOnly(Side.CLIENT) + public static void initModels() { + modelBlock.initModel(); + microBrewerBlock.initModel(); + microPackBlock.initModel(); + } + +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java b/src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java new file mode 100644 index 0000000..6815a9f --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java @@ -0,0 +1,33 @@ +package com.rafacost3d.bbs_mod.init; + + +import com.rafacost3d.bbs_mod.objects.items.ItemBase; +import net.minecraft.item.Item; + +import java.util.ArrayList; +import java.util.List; + +public class ItemInit { + public static final List ITEMS = new ArrayList(); + + public static final Item SPOON = new ItemBase("spoon"); + public static final Item SANITIZER = new ItemBase("sanitizer"); + public static final Item WATERGALLON = new ItemBase("watergallon"); + public static final Item LME_PILSEN = new ItemBase("lme_pilsen"); + public static final Item LME_EXTRALIGHT = new ItemBase("lme_extralight"); + public static final Item LME_WHEAT = new ItemBase("lme_wheat"); + public static final Item LME_LIGHT = new ItemBase("lme_light"); + public static final Item LME_MUNICH = new ItemBase("lme_munich"); + public static final Item LME_AMBER = new ItemBase("lme_amber"); + public static final Item LME_DARK = new ItemBase("lme_dark"); + public static final Item PRIMING_SUGAR = new ItemBase("priming_sugar"); + public static final Item YEAST = new ItemBase("yeast"); + public static final Item THERMOMETER = new ItemBase("thermometer"); + public static final Item WATER_KEG = new ItemBase("waterkeg"); + public static final Item MASH_KEG = new ItemBase("mashkeg"); + public static final Item WORT_KEG = new ItemBase("wortkeg"); + public static final Item HOTWORT_KEG = new ItemBase("hotwortkeg"); + public static final Item BEER_KEG = new ItemBase("beerkeg"); + public static final Item KEG = new ItemBase("keg"); + +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/ModelBlock.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/ModelBlock.java new file mode 100644 index 0000000..ac98b60 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/ModelBlock.java @@ -0,0 +1,25 @@ +package com.rafacost3d.bbs_mod.objects.blocks; + +import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.block.Block; +import net.minecraft.block.material.Material; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.item.Item; +import net.minecraftforge.client.model.ModelLoader; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +public class ModelBlock extends Block { + public ModelBlock() { + super(Material.ROCK); + setUnlocalizedName(Reference.MODID + ".modelblock"); + setRegistryName("modelblock"); + setCreativeTab(CreativeTabsBBS.BBSTabsMachines); + } + + @SideOnly(Side.CLIENT) + public void initModel() { + ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory")); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.java new file mode 100644 index 0000000..b9588a1 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.java @@ -0,0 +1,165 @@ +package com.rafacost3d.bbs_mod.objects.blocks.containers; + +import com.rafacost3d.bbs_mod.BBSMod; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.block.Block; +import net.minecraft.block.SoundType; +import net.minecraft.block.material.Material; +import net.minecraft.block.state.IBlockState; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.util.ITooltipFlag; +import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.BlockRenderLayer; +import net.minecraft.util.EnumBlockRenderType; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.EnumHand; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.RayTraceResult; +import net.minecraft.world.IBlockAccess; +import net.minecraft.world.World; +import net.minecraftforge.client.model.ModelLoader; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; +import net.minecraftforge.items.ItemStackHandler; + +import javax.annotation.Nullable; +import java.util.List; +import java.util.Random; + +public class MicroPackBlock extends Block { + public MicroPackBlock(){ + super(Material.GLASS); + setUnlocalizedName(Reference.MODID + ".micropack"); + setSoundType(SoundType.GLASS); + setRegistryName("micropack"); + } + + @Override + public int quantityDropped(Random random) { + return 0; + } + + @SideOnly(Side.CLIENT) + public void initModel(){ + ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory")); + } + + @Override + @Nullable + public TileEntity createTileEntity(World world, IBlockState state) { + return new MicroPackTileEntity(); + } + + @Override + public boolean hasTileEntity(IBlockState state) { + return true; + } + + @Override + public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + if(worldIn.isRemote){ + return true; + } + TileEntity te = worldIn.getTileEntity(pos); + if (!(te instanceof MicroPackTileEntity)) { + return false; + } + playerIn.openGui(BBSMod.instance, Reference.GUI_MICROPACK, worldIn,pos.getX(), pos.getY(), pos.getZ()); + + return true; + } + + @Override + public EnumBlockRenderType getRenderType(IBlockState state) { + return EnumBlockRenderType.MODEL; + } + + @SideOnly(Side.CLIENT) + public BlockRenderLayer getBlockLayer() { + return BlockRenderLayer.TRANSLUCENT; + } + + @Override + public boolean isFullCube(IBlockState state) { + return false; + } + + @Override + public boolean isOpaqueCube(IBlockState state) { + return false; + } + + @SideOnly(Side.CLIENT) + @Override + public boolean shouldSideBeRendered(final IBlockState bs, final IBlockAccess world, final BlockPos coord, final EnumFacing face) { + return true; + } + + @SideOnly(Side.CLIENT) + public void addInformation(ItemStack stack, @Nullable World worldIn, List tooltip, ITooltipFlag flagIn) { + tooltip.add("Keeps inventory when broken"); + } + + + @Override + public void breakBlock(World worldIn, BlockPos pos, IBlockState state) { + TileEntity tee = worldIn.getTileEntity(pos); + MicroPackTileEntity tileEntity = (MicroPackTileEntity)tee; + ItemStack itemStack = new ItemStack(Item.getItemFromBlock(this)); + NBTTagCompound nbtTagCompound = new NBTTagCompound(); + nbtTagCompound.setTag("items", tileEntity.itemStackHandler.serializeNBT()); + itemStack.setTagCompound(nbtTagCompound); + spawnAsEntity(worldIn,pos,itemStack); + //BBSMod.logger.info(itemStack.getTagCompound().getTag("items")); + super.breakBlock(worldIn,pos,state); + } + + @Override + public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) { + MicroPackTileEntity te = (MicroPackTileEntity) world.getTileEntity(pos); + ItemStack itemStack = new ItemStack(Item.getItemFromBlock(this)); + NBTTagCompound tag = new NBTTagCompound(); + tag.setTag("items", te.itemStackHandler.serializeNBT()); + itemStack.setTagCompound(tag); + return itemStack; + } + + + @Override + public boolean removedByPlayer(IBlockState state, World world, BlockPos pos, EntityPlayer player, + boolean willHarvest) { + if (willHarvest) + return true; + return super.removedByPlayer(state, world, pos, player, willHarvest); + } + + @Override + public void harvestBlock(World world, EntityPlayer player, BlockPos pos, IBlockState state, @Nullable TileEntity te, + ItemStack tool) { + super.harvestBlock(world, player, pos, state, te, tool); + world.setBlockToAir(pos); + } + + @Override + public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { + MicroPackTileEntity te = (MicroPackTileEntity)worldIn.getTileEntity(pos); + if(!stack.hasTagCompound()){ + //NBTTagCompound tag = new NBTTagCompound(); + //tag.setTag("items", " "); + //stack.setTagCompound(tag); + } else { + NBTTagCompound data = (NBTTagCompound) stack.getTagCompound().getTag("items"); + ItemStackHandler handler = new ItemStackHandler(9); + handler.deserializeNBT(data); + for (int i = 0; i < 9; i++) { + te.itemStackHandler.setStackInSlot(i, handler.getStackInSlot(i)); + } + } + super.onBlockPlacedBy(worldIn, pos, state, placer, stack); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.java new file mode 100644 index 0000000..db4c170 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.java @@ -0,0 +1,84 @@ +package com.rafacost3d.bbs_mod.objects.blocks.containers; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.inventory.Container; +import net.minecraft.inventory.IInventory; +import net.minecraft.inventory.Slot; +import net.minecraft.item.ItemStack; +import net.minecraftforge.items.CapabilityItemHandler; +import net.minecraftforge.items.IItemHandler; +import net.minecraftforge.items.SlotItemHandler; + +import javax.annotation.Nullable; + +public class MicroPackContainer extends Container { + private MicroPackTileEntity te; + public MicroPackContainer(IInventory playerInventory, MicroPackTileEntity te){ + this.te = te; + addOwnSlots(); + addPlayerSlots(playerInventory); + } + + private void addPlayerSlots(IInventory playerInventory) { + // Slots for the main inventory + for (int row = 0; row < 3; ++row) { + for (int col = 0; col < 9; ++col) { + int x = 9 + col * 18; + int y = row * 18 + 70; + this.addSlotToContainer(new Slot(playerInventory, col + row * 9 + 10, x, y)); + } + } + // Slots for the hotbar + for (int row = 0; row < 9; ++row) { + int x = 9 + row * 18; + int y = 58 + 70; + this.addSlotToContainer(new Slot(playerInventory, row, x, y)); + } + } + + private void addOwnSlots(){ + IItemHandler itemHandler = this.te.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null); + int x = 9; + int y = 6; + // Add our own slots + int slotIndex = 0; + for (int i = 0; i < itemHandler.getSlots(); i++) { + addSlotToContainer(new SlotItemHandler(itemHandler, slotIndex, x, y)); + slotIndex++; + x += 18; + } + } + + @Nullable + @Override + public ItemStack transferStackInSlot(EntityPlayer playerIn, int index) { + ItemStack itemstack = null; + Slot slot = this.inventorySlots.get(index); + + if (slot != null && slot.getHasStack()) { + ItemStack itemstack1 = slot.getStack(); + itemstack = itemstack1.copy(); + + if (index < MicroPackTileEntity.SIZE) { + if (!this.mergeItemStack(itemstack1, MicroPackTileEntity.SIZE, this.inventorySlots.size(), true)) { + return null; + } + } else if (!this.mergeItemStack(itemstack1, 0, MicroPackTileEntity.SIZE, false)) { + return null; + } + + if (itemstack1.isEmpty()) { + slot.putStack(ItemStack.EMPTY); + } else { + slot.onSlotChanged(); + } + } + + return itemstack; + } + + @Override + public boolean canInteractWith(EntityPlayer playerIn) { + return te.canInteractWith(playerIn); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.java new file mode 100644 index 0000000..eec083f --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.java @@ -0,0 +1,24 @@ +package com.rafacost3d.bbs_mod.objects.blocks.containers; + +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.util.ResourceLocation; + +public class MicroPackGui extends GuiContainer { + public static final int WIDTH = 180; + public static final int HEIGHT = 152; + + private static final ResourceLocation background = new ResourceLocation(Reference.MODID, "textures/gui/micropackgui.png"); + + public MicroPackGui(MicroPackTileEntity tileEntity, MicroPackContainer container) { + super(container); + xSize = WIDTH; + ySize = HEIGHT; + } + + @Override + protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { + mc.getTextureManager().bindTexture(background); + drawTexturedModalRect(guiLeft, guiTop, 0, 0, xSize, ySize); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity.java new file mode 100644 index 0000000..fc694ec --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity.java @@ -0,0 +1,61 @@ +package com.rafacost3d.bbs_mod.objects.blocks.containers; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.inventory.IInventory; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.EnumFacing; +import net.minecraftforge.common.capabilities.Capability; +import net.minecraftforge.items.CapabilityItemHandler; +import net.minecraftforge.items.ItemStackHandler; + +import javax.annotation.Nullable; + +public class MicroPackTileEntity extends TileEntity { + public static final int SIZE = 9; + + public ItemStackHandler itemStackHandler = new ItemStackHandler(SIZE){ + @Override + protected void onContentsChanged(int slot) { + MicroPackTileEntity.this.markDirty(); + } + }; + + @Override + public void readFromNBT(NBTTagCompound compound) { + super.readFromNBT(compound); + if(compound.hasKey("items")) { + itemStackHandler.deserializeNBT((NBTTagCompound)compound.getTag("items")); + } + } + + @Override + public NBTTagCompound writeToNBT(NBTTagCompound compound) { + super.writeToNBT(compound); + compound.setTag("items", itemStackHandler.serializeNBT()); + return compound; + } + + public boolean canInteractWith(EntityPlayer playerIn){ + return !isInvalid() && playerIn.getDistanceSq(pos.add(0.5D, 0.5D, 0.5D)) <=64D; + } + + @Override + public boolean hasCapability(Capability capability, @Nullable EnumFacing facing) { + if(capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY){ + return true; + } + return super.hasCapability(capability, facing); + } + + @Nullable + @Override + public T getCapability(Capability capability, @Nullable EnumFacing facing) { + if(capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY){ + return CapabilityItemHandler.ITEM_HANDLER_CAPABILITY.cast(itemStackHandler); + } + return super.getCapability(capability, facing); + } + +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.java new file mode 100644 index 0000000..92bbb3e --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.java @@ -0,0 +1,205 @@ +package com.rafacost3d.bbs_mod.objects.blocks.machines; + +import com.rafacost3d.bbs_mod.BBSMod; +import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; +import com.rafacost3d.bbs_mod.init.BlocksInit; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.block.*; +import net.minecraft.block.material.Material; +import net.minecraft.block.properties.IProperty; +import net.minecraft.block.properties.PropertyBool; +import net.minecraft.block.properties.PropertyDirection; +import net.minecraft.block.properties.PropertyInteger; +import net.minecraft.block.state.BlockStateContainer; +import net.minecraft.block.state.IBlockState; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.inventory.InventoryHelper; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.*; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.IBlockAccess; +import net.minecraft.world.World; +import net.minecraftforge.client.model.ModelLoader; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +import javax.annotation.Nullable; +import java.util.Random; + +public class MicroBrewerBlock extends BlockContainer implements ITileEntityProvider { + + public static final PropertyBool WORKING = PropertyBool.create("working"); + public static final PropertyDirection FACING = BlockHorizontal.FACING; + private static boolean keepInventory; + + public MicroBrewerBlock() { + super(Material.GRASS); + setSoundType(SoundType.METAL); + setUnlocalizedName(Reference.MODID + ".microbrewer"); + setRegistryName("microbrewer"); + setDefaultState(this.blockState.getBaseState().withProperty(WORKING, Boolean.FALSE).withProperty(FACING, EnumFacing.NORTH)); + setCreativeTab(CreativeTabsBBS.BBSTabsMachines); + } + + @SideOnly(Side.CLIENT) + public void initModel() { + ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory")); + } + + @SideOnly(Side.CLIENT) + public BlockRenderLayer getBlockLayer() { + return BlockRenderLayer.TRANSLUCENT; + } + + @Override + public boolean isFullCube(IBlockState state) { + return false; + } + + @Override + public boolean isOpaqueCube(IBlockState state) { + return false; + } + + @SideOnly(Side.CLIENT) + @Override + public boolean shouldSideBeRendered(final IBlockState bs, final IBlockAccess world, final BlockPos coord, final EnumFacing face) { + return false; + } + + @Override + public Item getItemDropped(IBlockState state, Random rand, int fortune) { + return Item.getItemFromBlock(BlocksInit.microBrewerBlock); + } + + @Override + public ItemStack getItem(World worldIn, BlockPos pos, IBlockState state) { + return new ItemStack(BlocksInit.microBrewerBlock); + } + + @Override + protected BlockStateContainer createBlockState() + { + return new BlockStateContainer(this, new IProperty[]{WORKING, FACING}); + } + + + @Override + public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state) { + this.setDefaultFacing(worldIn, pos, state); + } + + private void setDefaultFacing(World worldIn, BlockPos pos, IBlockState state) { + if (!worldIn.isRemote) { + IBlockState north = worldIn.getBlockState(pos.north()); + IBlockState south = worldIn.getBlockState(pos.south()); + IBlockState west = worldIn.getBlockState(pos.west()); + IBlockState east = worldIn.getBlockState(pos.east()); + EnumFacing face = (EnumFacing)state.getValue(FACING); + + if (face == EnumFacing.NORTH && north.isFullBlock() && !south.isFullBlock()) + face = EnumFacing.SOUTH; + else if (face == EnumFacing.SOUTH && south.isFullBlock() && !north.isFullBlock()) + face = EnumFacing.NORTH; + else if (face == EnumFacing.WEST && west.isFullBlock() && !east.isFullBlock()) + face = EnumFacing.EAST; + else if (face == EnumFacing.EAST && east.isFullBlock() && !west.isFullBlock()) + face = EnumFacing.WEST; + worldIn.setBlockState(pos, state.withProperty(FACING, face), 2); + } + } + + @Override + public IBlockState getStateForPlacement(World world, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer, EnumHand hand) { + return this.getDefaultState().withProperty(FACING, placer.getHorizontalFacing().getOpposite()); + } + + @Override + public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { + worldIn.setBlockState(pos, state.withProperty(FACING, placer.getHorizontalFacing().getOpposite()), 2); + } + + @Override + public void breakBlock(World worldIn, BlockPos pos, IBlockState state) { + if(!keepInventory){ + TileEntity tileEntity = worldIn.getTileEntity(pos); + + if(tileEntity instanceof TileEntityMicroBrewer){ + InventoryHelper.dropInventoryItems(worldIn,pos,(TileEntityMicroBrewer)tileEntity); + } + } + + super.breakBlock(worldIn,pos,state); + } + + public IBlockState getStateFromMeta(int meta) { + /* + return this.getDefaultState(); + */ + EnumFacing facing = EnumFacing.getFront(meta); + if(facing.getAxis() == EnumFacing.Axis.Y) facing = EnumFacing.NORTH; + return this.getDefaultState().withProperty(FACING, facing); + } + + public int getMetaFromState(IBlockState state) { + return ((EnumFacing)state.getValue(FACING)).getIndex(); + } + + + @Override + public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + if(world.isRemote){ + return true; + } + TileEntity te = world.getTileEntity(pos); + if (!(te instanceof TileEntityMicroBrewer)) { + return false; + } + player.openGui(BBSMod.instance, Reference.GUI_MICROBREWER, world, pos.getX(), pos.getY(), pos.getZ()); + + return true; + + } + + public static void setState(boolean active, World worldIn, BlockPos pos){ + IBlockState state = worldIn.getBlockState(pos); + TileEntity tileEntity = worldIn.getTileEntity(pos); + keepInventory = true; + + if(active) worldIn.setBlockState(pos, BlocksInit.microBrewerBlock.getDefaultState().withProperty(FACING, state.getValue(FACING)).withProperty(WORKING, true), 3); + else worldIn.setBlockState(pos, BlocksInit.microBrewerBlock.getDefaultState().withProperty(FACING, state.getValue(FACING)).withProperty(WORKING, false), 3); + + keepInventory=false; + + if(tileEntity != null) + { + tileEntity.validate(); + worldIn.setTileEntity(pos, tileEntity); + } + } + + @Nullable + @Override + public TileEntity createNewTileEntity(World worldIn, int meta) { + return new TileEntityMicroBrewer(); + } + + @Override + public EnumBlockRenderType getRenderType(IBlockState state) { + return EnumBlockRenderType.MODEL; + } + + @Override + public IBlockState withRotation(IBlockState state, Rotation rot) { + return state.withProperty(FACING, rot.rotate((EnumFacing)state.getValue(FACING))); + } + + @Override + public IBlockState withMirror(IBlockState state, Mirror mirrorIn) { + return state.withRotation(mirrorIn.toRotation((EnumFacing)state.getValue(FACING))); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.java new file mode 100644 index 0000000..baed7a0 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.java @@ -0,0 +1,149 @@ +package com.rafacost3d.bbs_mod.objects.blocks.machines; + +import com.rafacost3d.bbs_mod.objects.blocks.machines.slots.SlotMicroBrewerFuel; +import com.rafacost3d.bbs_mod.objects.blocks.machines.slots.SlotMicroBrewerOutput; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.inventory.Container; +import net.minecraft.inventory.IContainerListener; +import net.minecraft.inventory.Slot; +import net.minecraft.item.ItemStack; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +public class MicroBrewerContainer extends Container +{ + private final TileEntityMicroBrewer tileentity; + private int cookTime, totalCookTime, burnTime, currentBurnTime; + + public MicroBrewerContainer(InventoryPlayer player, TileEntityMicroBrewer tileentity) + { + this.tileentity = tileentity; + + this.addSlotToContainer(new Slot(tileentity, 0, 26, 11)); + this.addSlotToContainer(new Slot(tileentity, 1, 26, 59)); + this.addSlotToContainer(new SlotMicroBrewerFuel(tileentity, 2, 7, 35)); + this.addSlotToContainer(new SlotMicroBrewerOutput(player.player, tileentity, 3, 81, 36)); + + for(int y = 0; y < 3; y++) + { + for(int x = 0; x < 9; x++) + { + this.addSlotToContainer(new Slot(player, x + y*9 + 9, 8 + x*18, 84 + y*18)); + } + } + + for(int x = 0; x < 9; x++) + { + this.addSlotToContainer(new Slot(player, x, 8 + x * 18, 142)); + } + } + + @Override + public void addListener(IContainerListener listener) + { + super.addListener(listener); + listener.sendAllWindowProperties(this, this.tileentity); + } + + @Override + public void detectAndSendChanges() + { + super.detectAndSendChanges(); + + for(int i = 0; i < this.listeners.size(); ++i) + { + IContainerListener listener = (IContainerListener)this.listeners.get(i); + + if(this.cookTime != this.tileentity.getField(2)) listener.sendWindowProperty(this, 2, this.tileentity.getField(2)); + if(this.burnTime != this.tileentity.getField(0)) listener.sendWindowProperty(this, 0, this.tileentity.getField(0)); + if(this.currentBurnTime != this.tileentity.getField(1)) listener.sendWindowProperty(this, 1, this.tileentity.getField(1)); + if(this.totalCookTime != this.tileentity.getField(3)) listener.sendWindowProperty(this, 3, this.tileentity.getField(3)); + } + + this.cookTime = this.tileentity.getField(2); + this.burnTime = this.tileentity.getField(0); + this.currentBurnTime = this.tileentity.getField(1); + this.totalCookTime = this.tileentity.getField(3); + } + + @Override + @SideOnly(Side.CLIENT) + public void updateProgressBar(int id, int data) + { + this.tileentity.setField(id, data); + } + + @Override + public boolean canInteractWith(EntityPlayer playerIn) + { + return this.tileentity.isUsableByPlayer(playerIn); + } + + @Override + public ItemStack transferStackInSlot(EntityPlayer playerIn, int index) + { + ItemStack stack = ItemStack.EMPTY; + Slot slot = (Slot)this.inventorySlots.get(index); + + if(slot != null && slot.getHasStack()) + { + ItemStack stack1 = slot.getStack(); + stack = stack1.copy(); + + if(index == 3) + { + if(!this.mergeItemStack(stack1, 4, 40, true)) return ItemStack.EMPTY; + slot.onSlotChange(stack1, stack); + } + else if(index != 2 && index != 1 && index != 0) + { + Slot slot1 = (Slot)this.inventorySlots.get(index + 1); + + if(!MicroBrewerRecipes.getInstance().getMicroBrewerResult(stack1, slot1.getStack()).isEmpty()) + { + if(!this.mergeItemStack(stack1, 0, 2, false)) + { + return ItemStack.EMPTY; + } + else if(TileEntityMicroBrewer.isItemFuel(stack1)) + { + if(!this.mergeItemStack(stack1, 2, 3, false)) return ItemStack.EMPTY; + } + else if(TileEntityMicroBrewer.isItemFuel(stack1)) + { + if(!this.mergeItemStack(stack1, 2, 3, false)) return ItemStack.EMPTY; + } + else if(TileEntityMicroBrewer.isItemFuel(stack1)) + { + if(!this.mergeItemStack(stack1, 2, 3, false)) return ItemStack.EMPTY; + } + else if(index >= 4 && index < 31) + { + if(!this.mergeItemStack(stack1, 31, 40, false)) return ItemStack.EMPTY; + } + else if(index >= 31 && index < 40 && !this.mergeItemStack(stack1, 4, 31, false)) + { + return ItemStack.EMPTY; + } + } + } + else if(!this.mergeItemStack(stack1, 4, 40, false)) + { + return ItemStack.EMPTY; + } + if(stack1.isEmpty()) + { + slot.putStack(ItemStack.EMPTY); + } + else + { + slot.onSlotChanged(); + + } + if(stack1.getCount() == stack.getCount()) return ItemStack.EMPTY; + slot.onTake(playerIn, stack1); + } + return stack; + } +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.java new file mode 100644 index 0000000..44aebf3 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.java @@ -0,0 +1,60 @@ +package com.rafacost3d.bbs_mod.objects.blocks.machines; + +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.renderer.GlStateManager; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.util.ResourceLocation; + +public class MicroBrewerGui extends GuiContainer +{ + private static final ResourceLocation TEXTURES = new ResourceLocation(Reference.MODID + ":textures/gui/microbrewer_gui.png"); + private final InventoryPlayer player; + private final TileEntityMicroBrewer tileentity; + + public MicroBrewerGui(InventoryPlayer player, TileEntityMicroBrewer tileentity) + { + super(new MicroBrewerContainer(player, tileentity)); + this.player = player; + this.tileentity = tileentity; + } + + @Override + protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) + { + String tileName = "Micro Brewer"; + this.fontRenderer.drawString(tileName, (this.xSize / 2 - this.fontRenderer.getStringWidth(tileName) / 2) + 3, 8, 4210752); + this.fontRenderer.drawString(this.player.getDisplayName().getUnformattedText(), 122, this.ySize - 96 + 2, 4210752); + } + + @Override + protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) + { + GlStateManager.color(1.0f, 1.0f, 1.0f, 1.0f); + this.mc.getTextureManager().bindTexture(TEXTURES); + this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize); + + if(TileEntityMicroBrewer.isBurning(tileentity)) + { + int k = this.getBurnLeftScaled(13); + this.drawTexturedModalRect(this.guiLeft + 8, this.guiTop + 54 + 12 - k, 176, 12 - k, 14, k + 1); + } + + int l = this.getCookProgressScaled(24); + this.drawTexturedModalRect(this.guiLeft + 44, this.guiTop + 36, 176, 14, l + 1, 16); + } + + private int getBurnLeftScaled(int pixels) + { + int i = this.tileentity.getField(1); + if(i == 0) i = 200; + return this.tileentity.getField(0) * pixels / i; + } + + private int getCookProgressScaled(int pixels) + { + int i = this.tileentity.getField(2); + int j = this.tileentity.getField(3); + return j != 0 && i != 0 ? i * pixels / j : 0; + } +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java new file mode 100644 index 0000000..3843586 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java @@ -0,0 +1,95 @@ +package com.rafacost3d.bbs_mod.objects.blocks.machines; + +import com.google.common.collect.HashBasedTable; +import com.google.common.collect.Maps; +import com.google.common.collect.Table; +import com.rafacost3d.bbs_mod.init.ItemInit; +import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; +import net.minecraft.init.Items; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; + +import java.util.Map; + +public class MicroBrewerRecipes { + private static final MicroBrewerRecipes INSTANCE = new MicroBrewerRecipes(); + private final Table smeltingList = HashBasedTable.create(); + private final Map experienceList = Maps.newHashMap(); + private final Map cookTimeList = Maps.newHashMap(); + + public static MicroBrewerRecipes getInstance() + { + return INSTANCE; + } + + private MicroBrewerRecipes() + { + addMicroBrewerRecipe(new ItemStack(Items.WHEAT), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_WHEAT), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_WHEAT), new ItemStack(ItemInit.MASH_KEG), 5.0F, 720); + addMicroBrewerRecipe(new ItemStack(ItemInit.MASH_KEG), new ItemStack(CropRegistry.getFood("liberty")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.WORT_KEG), new ItemStack(ItemInit.YEAST), new ItemStack(ItemInit.BEER_KEG), 5.0F, 16000); + + } + + + public void addMicroBrewerRecipe(ItemStack input1, ItemStack input2, ItemStack result, float experience, int cookTime) + { + if(getMicroBrewerResult(input1, input2) != ItemStack.EMPTY) return; + this.smeltingList.put(input1, input2, result); + this.experienceList.put(result, Float.valueOf(experience)); + this.cookTimeList.put(result, cookTime); + + } + + public ItemStack getMicroBrewerResult(ItemStack input1, ItemStack input2) + { + for(Map.Entry> entry : this.smeltingList.columnMap().entrySet()) + { + if(this.compareItemStacks(input1, (ItemStack)entry.getKey())) + { + for(Map.Entry ent : entry.getValue().entrySet()) + { + if(this.compareItemStacks(input2, (ItemStack)ent.getKey())) + { + return (ItemStack)ent.getValue(); + } + } + } + } + return ItemStack.EMPTY; + } + + private boolean compareItemStacks(ItemStack stack1, ItemStack stack2) + { + return stack2.getItem() == stack1.getItem() && (stack2.getMetadata() == 32767 || stack2.getMetadata() == stack1.getMetadata()); + } + + public Table getDualSmeltingList() + { + return this.smeltingList; + } + + public float getMicroBrewerExperience(ItemStack stack) + { + for (Map.Entry entry : this.experienceList.entrySet()) + { + if(this.compareItemStacks(stack, (ItemStack)entry.getKey())) + { + return ((Float)entry.getValue()).floatValue(); + } + } + return 0.0F; + } + + public int getMicroBrewerCookTime(ItemStack stack) + { + for (Map.Entry entry : this.cookTimeList.entrySet()) + { + if(this.compareItemStacks(stack, (ItemStack)entry.getKey())) + { + return ((Integer)entry.getValue()).intValue(); + } + } + return 0; + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java new file mode 100644 index 0000000..15f3298 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java @@ -0,0 +1,373 @@ +package com.rafacost3d.bbs_mod.objects.blocks.machines; + +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerRecipes; +import net.minecraft.block.Block; +import net.minecraft.block.material.Material; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.init.Blocks; +import net.minecraft.init.Items; +import net.minecraft.inventory.IInventory; +import net.minecraft.inventory.ItemStackHelper; +import net.minecraft.item.*; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.ITickable; +import net.minecraft.util.NonNullList; +import net.minecraft.util.math.MathHelper; +import net.minecraft.util.text.ITextComponent; +import net.minecraft.util.text.TextComponentString; +import net.minecraftforge.fml.common.registry.GameRegistry; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + + +public class TileEntityMicroBrewer extends TileEntity implements IInventory, ITickable { + + private NonNullList inventory = NonNullList.withSize(4, ItemStack.EMPTY); + private String customName; + + private int burnTime; + private int currentBurnTime; + private int cookTime; + private int totalCookTime; + + @Override + public String getName() { + return this.hasCustomName() ? this.customName : "tile.bbs_mod.microbrewer.name"; + } + + @Override + public boolean hasCustomName() { + return this.customName !=null && !this.customName.isEmpty(); + } + + public void setCustomName(String customName) { + this.customName = customName; + } + + @Override + public ITextComponent getDisplayName() { + return this.hasCustomName() ? new TextComponentString(this.getName()) : new TextComponentString(this.getName()); + } + + @Override + public int getSizeInventory() { + return this.inventory.size(); + } + + @Override + public boolean isEmpty() { + for(ItemStack stack : this.inventory){ + if(!stack.isEmpty()) return false; + } + return true; + } + + @Override + public ItemStack getStackInSlot(int index) { + return (ItemStack)this.inventory.get(index); + } + + @Override + public ItemStack decrStackSize(int index, int count) { + return ItemStackHelper.getAndSplit(this.inventory, index, count); + } + + @Override + public ItemStack removeStackFromSlot(int index) { + return ItemStackHelper.getAndRemove(this.inventory, index); + } + + @Override + public void setInventorySlotContents(int index, ItemStack stack) { + ItemStack itemStack = (ItemStack)this.inventory.get(index); + boolean flag = !stack.isEmpty() && stack.isItemEqual(itemStack) && ItemStack.areItemStackShareTagsEqual(stack, itemStack); + this.inventory.set(index, stack); + + if(stack.getCount() > this.getInventoryStackLimit()) + stack.setCount(this.getInventoryStackLimit()); + if(index == 0 && index + 1 == 1 && !flag) { + ItemStack stack1 = (ItemStack)this.inventory.get(index + 1); + this.totalCookTime = this.getCookTime(stack); + this.cookTime = 0; + this.markDirty(); + } + } + + @Override + public void readFromNBT(NBTTagCompound compound) { + super.readFromNBT(compound); + this.inventory = NonNullList.withSize(this.getSizeInventory(), ItemStack.EMPTY); + ItemStackHelper.loadAllItems(compound, this.inventory); + this.burnTime = compound.getInteger("BurnTime"); + this.cookTime = compound.getInteger("CookTime"); + this.totalCookTime = compound.getInteger("CookTimeTotal"); + this.currentBurnTime = getItemBurnTime((ItemStack)this.inventory.get(2)); + + if(compound.hasKey("CustomName", 8)) this.setCustomName(compound.getString("CustomName")); + + + } + + @Override + public NBTTagCompound writeToNBT(NBTTagCompound compound) + { + super.writeToNBT(compound); + compound.setInteger("BurnTime", (short)this.burnTime); + compound.setInteger("CookTime", (short)this.cookTime); + compound.setInteger("CookTimeTotal", (short)this.totalCookTime); + ItemStackHelper.saveAllItems(compound, this.inventory); + + if(this.hasCustomName()) compound.setString("CustomName", this.customName); + this.markDirty(); + return compound; + } + + @Override + public int getInventoryStackLimit() + { + return 64; + } + + public boolean isBurning() + { + return this.burnTime > 0; + } + + @SideOnly(Side.CLIENT) + public static boolean isBurning(IInventory inventory) + { + return inventory.getField(0) > 0; + } + + public void update() + { + boolean flag = this.isBurning(); + boolean flag1 = false; + if(this.isBurning()) --this.burnTime; + if(!this.world.isRemote) + { + ItemStack stack = (ItemStack)this.inventory.get(2); + if(this.isBurning() || !stack.isEmpty() && !((((ItemStack)this.inventory.get(0)).isEmpty()) || ((ItemStack)this.inventory.get(1)).isEmpty())) + { + if(!this.isBurning() && this.canSmelt()) + { + this.burnTime = getItemBurnTime(stack); + this.currentBurnTime = this.burnTime; + if(this.isBurning()) + { + flag1 = true; + if(!stack.isEmpty()) + { + Item item = stack.getItem(); + stack.shrink(1); + if(stack.isEmpty()) + { + ItemStack item1 = item.getContainerItem(stack); + this.inventory.set(2, item1); + } + } + } + } + if(this.isBurning() && this.canSmelt()) + { + ++this.cookTime; + if(this.cookTime == this.totalCookTime) + { + this.cookTime = 0; + this.totalCookTime = this.getCookTime((ItemStack)this.inventory.get(1)); + this.smeltItem(); + flag1 = true; + } + } + else this.cookTime = 0; + } + else if(!this.isBurning() && this.cookTime > 0) + { + this.cookTime = MathHelper.clamp(this.cookTime - 2, 0, this.totalCookTime); + } + if(flag != this.isBurning()) + { + flag1 = true; + MicroBrewerBlock.setState(this.isBurning(), this.world, this.pos); + } + } + if(flag1) this.markDirty(); + } + + public int getCookTime(ItemStack input1) + { + String ItemName = input1.getItem().getUnlocalizedName(); + switch (ItemName){ + case "item.sugar": + return 240; + case "item.bbs_mod.lme_wheat": + return 720; + case "item.liberty.hop": + return 1800; + case "item.bbs_mod.yeast": + return 16000; + default: + return 200; + } + } + + private boolean canSmelt() + { + if(((ItemStack)this.inventory.get(0)).isEmpty() || ((ItemStack)this.inventory.get(1)).isEmpty()) return false; + //Check Recipe Item Quantity; + if((this.inventory.get(0).getItem()==Items.SUGAR && this.inventory.get(0).getCount()<64) && (this.inventory.get(1).getItem()==Items.WHEAT && this.inventory.get(1).getCount()<64)) return false; + else + { + ItemStack result = MicroBrewerRecipes.getInstance().getMicroBrewerResult((ItemStack)this.inventory.get(0), (ItemStack)this.inventory.get(1)); + if(result.isEmpty()) return false; + else + { + ItemStack output = (ItemStack)this.inventory.get(3); + if(output.isEmpty()) return true; + if(!output.isItemEqual(result)) return false; + int res = output.getCount() + result.getCount(); + return res <= getInventoryStackLimit() && res <= output.getMaxStackSize(); + } + } + } + + public void smeltItem() + { + if(this.canSmelt()) + { + ItemStack input1 = (ItemStack)this.inventory.get(0); + ItemStack input2 = (ItemStack)this.inventory.get(1); + + //Shrink Recipe Quantity + if(input1.getItem()==Items.SUGAR && input2.getItem()==Items.WHEAT) { + if(input1.getCount()==64 && input2.getCount() == 64){ + ItemStack result = MicroBrewerRecipes.getInstance().getMicroBrewerResult(input1, input2); + ItemStack output = (ItemStack) this.inventory.get(3); + if (output.isEmpty()) this.inventory.set(3, result.copy()); + else if (output.getItem() == result.getItem()) output.grow(result.getCount()); + input1.shrink(64); + input2.shrink(64); + } + } + else { + ItemStack result = MicroBrewerRecipes.getInstance().getMicroBrewerResult(input1, input2); + ItemStack output = (ItemStack) this.inventory.get(3); + if (output.isEmpty()) this.inventory.set(3, result.copy()); + else if (output.getItem() == result.getItem()) output.grow(result.getCount()); + input1.shrink(1); + input2.shrink(1); + } + } + } + + public static int getItemBurnTime(ItemStack fuel) + { + if(fuel.isEmpty()) return 0; + else + { + Item item = fuel.getItem(); + + if (item instanceof ItemBlock && Block.getBlockFromItem(item) != Blocks.AIR) + { + Block block = Block.getBlockFromItem(item); + if (block == Blocks.WOODEN_SLAB) return 150; + if (block.getDefaultState().getMaterial() == Material.WOOD) return 300; + if (block == Blocks.COAL_BLOCK) return 16000; + } + if (item instanceof ItemTool && "WOOD".equals(((ItemTool)item).getToolMaterialName())) return 200; + if (item instanceof ItemSword && "WOOD".equals(((ItemSword)item).getToolMaterialName())) return 200; + if (item instanceof ItemHoe && "WOOD".equals(((ItemHoe)item).getMaterialName())) return 200; + if (item == Items.STICK) return 100; + if (item == Items.COAL) return 1600; + if (item == Items.LAVA_BUCKET) return 20000; + if (item == Item.getItemFromBlock(Blocks.SAPLING)) return 100; + if (item == Items.BLAZE_ROD) return 2400; + + return GameRegistry.getFuelValue(fuel); + } + } + + public static boolean isItemFuel(ItemStack fuel) + { + return getItemBurnTime(fuel) > 0; + } + + @Override + public boolean isUsableByPlayer(EntityPlayer player) + { + return this.world.getTileEntity(this.pos) != this ? false : player.getDistanceSq((double)this.pos.getX() + 0.5D, (double)this.pos.getY() + 0.5D, (double)this.pos.getZ() + 0.5D) <= 64.0D; + } + + @Override + public void openInventory(EntityPlayer player) {} + + @Override + public void closeInventory(EntityPlayer player) {} + + @Override + public boolean isItemValidForSlot(int index, ItemStack stack) + { + + if(index == 3) return false; + else if(index != 2) return true; + else + { + return isItemFuel(stack); + } + } + + public String getGuiID() + { + return "textures/gui/microbrewer_gui.png"; + } + + @Override + public int getField(int id) + { + switch(id) + { + case 0: + return this.burnTime; + case 1: + return this.currentBurnTime; + case 2: + return this.cookTime; + case 3: + return this.totalCookTime; + default: + return 0; + } + } + + @Override + public void setField(int id, int value) + { + switch(id) + { + case 0: + this.burnTime = value; + break; + case 1: + this.currentBurnTime = value; + break; + case 2: + this.cookTime = value; + break; + case 3: + this.totalCookTime = value; + } + } + + @Override + public int getFieldCount() + { + return 4; + } + + @Override + public void clear() + { + this.inventory.clear(); + } +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.java new file mode 100644 index 0000000..68b0405 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.java @@ -0,0 +1,25 @@ +package com.rafacost3d.bbs_mod.objects.blocks.machines.slots; + +import com.rafacost3d.bbs_mod.objects.blocks.machines.TileEntityMicroBrewer; +import net.minecraft.inventory.IInventory; +import net.minecraft.inventory.Slot; +import net.minecraft.item.ItemStack; + +public class SlotMicroBrewerFuel extends Slot { + public SlotMicroBrewerFuel(IInventory inventory, int index, int x, int y) + { + super(inventory, index, x, y); + } + + @Override + public boolean isItemValid(ItemStack stack) + { + return TileEntityMicroBrewer.isItemFuel(stack); + } + + @Override + public int getItemStackLimit(ItemStack stack) + { + return super.getItemStackLimit(stack); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.java new file mode 100644 index 0000000..d2d0753 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.java @@ -0,0 +1,38 @@ +package com.rafacost3d.bbs_mod.objects.blocks.machines.slots; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.inventory.IInventory; +import net.minecraft.inventory.Slot; +import net.minecraft.item.ItemStack; + +public class SlotMicroBrewerOutput extends Slot { + private final EntityPlayer player; + private int removeCount; + + public SlotMicroBrewerOutput(EntityPlayer player, IInventory inventory, int index, int x, int y) + { + super(inventory, index, x, y); + this.player = player; + } + + @Override + public boolean isItemValid(ItemStack stack) + { + return false; + } + + @Override + public ItemStack onTake(EntityPlayer thePlayer, ItemStack stack) + { + this.onCrafting(stack); + super.onTake(thePlayer, stack); + return stack; + } + + @Override + public ItemStack decrStackSize(int amount) + { + if(this.getHasStack()) this.removeCount += Math.min(amount, this.getStack().getCount()); + return super.decrStackSize(amount); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java new file mode 100644 index 0000000..a0730ff --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java @@ -0,0 +1,290 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import net.minecraft.block.Block; +import net.minecraft.block.BlockCrops; +import net.minecraft.block.properties.PropertyInteger; +import net.minecraft.block.state.BlockStateContainer; +import net.minecraft.block.state.IBlockState; +import net.minecraft.entity.item.EntityItem; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.init.Blocks; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.EnumHand; +import net.minecraft.util.math.AxisAlignedBB; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.MathHelper; +import net.minecraft.world.IBlockAccess; +import net.minecraft.world.World; +import net.minecraftforge.common.EnumPlantType; +import net.minecraftforge.common.IPlantable; +import net.minecraftforge.event.ForgeEventFactory; +import net.minecraftforge.fml.common.FMLLog; + +import java.util.List; +import java.util.Random; + +public class BlockBBSCrop extends BlockCrops implements IPlantable { + + private static final int MATURE_AGE = 7; + + private static final PropertyInteger AGE = PropertyInteger.create("age", 0, MATURE_AGE); + + private static final AxisAlignedBB[] CROPS_AABB = new AxisAlignedBB[]{new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.125D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.25D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.375D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.5D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.625D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.75D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.875D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 1.0D, 1.0D)}; + + private final String registerName; + public final String name; + private String BASE_STAGE_ID = null; + + private Item seed; + private Item food; + + public void setSeed(Item seed) { + this.seed = seed; + } + + public void setFood(Item food) { + this.food = food; + } + + public BlockBBSCrop(String registerName, String name) { + super(); + this.registerName = registerName; + this.name = name; + this.setDefaultState(blockState.getBaseState().withProperty(getAgeProperty(), 0)); + } + + public String getStageId(int stage) { + if (BASE_STAGE_ID == null) { + BASE_STAGE_ID = registerName.replaceFirst("hop", "").replace("Crop", "") + "_stage"; + } + return BASE_STAGE_ID + stage; + } + + + @Override + public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + // CROPS_AABB is based on an age range from 0 to 7. Times two should fix that issue. + return CROPS_AABB[state.getValue(AGE)]; + } + + private boolean isSuitableSoilBlock(Block soilBlock) { + return soilBlock == Blocks.FARMLAND; + } + + @Override + public PropertyInteger getAgeProperty() { + return AGE; + } + + public int getMatureAge() { + return MATURE_AGE; + } + + public boolean isMature(IBlockState state) { + return state.getValue(getAgeProperty()) >= MATURE_AGE; + } + + @Override + public Item getSeed() { + if (seed == null) { + FMLLog.bigWarning("No seed have been set up for %s.", getUnlocalizedName()); + return new Item(); + } + return seed; + } + + @Override + public ItemStack getItem(World worldIn, BlockPos pos, IBlockState state) { + return new ItemStack(getSeed()); + } + + @Override + public boolean canGrow(World worldIn, BlockPos pos, IBlockState state, boolean isClient) { + return !isMature(state); + } + + @Override + public Item getCrop() { + if (food == null) { + FMLLog.bigWarning("No food has been set up for %s.", getUnlocalizedName()); + return new Item(); + } + + return food; + } + + @Override + public IBlockState getStateFromMeta(int meta) { + return getDefaultState().withProperty(getAgeProperty(), meta); + } + + @Override + public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand) { + this.checkAndDropBlock(worldIn, pos, state); + + if (worldIn.getLightFromNeighbors(pos.up()) >= 9) { + int currentGrowthLevel = getMetaFromState(state); + + if (currentGrowthLevel < getMatureAge()) { + float f = getGrowthChance(this, worldIn, pos); + + if (rand.nextInt((int) (50.0F / f) + 1) == 0) { + worldIn.setBlockState(pos, this.getStateFromMeta(currentGrowthLevel + 1), 2); + } + } + } + } + + @Override + public Item getItemDropped(IBlockState state, Random rand, int fortune) { + if (!isMature(state)) { + return getSeed(); + } else { + return getCrop(); + } + } + + public int getMetaFromState(IBlockState state) { + return state.getValue(getAgeProperty()); + } + + @Override + public boolean canPlaceBlockAt(World world, BlockPos pos) { + Block soilBlock = world.getBlockState(pos.down()).getBlock(); + + return isSuitableSoilBlock(soilBlock); + } + + @Override + public void dropBlockAsItemWithChance(World worldIn, BlockPos pos, IBlockState state, float chance, int fortune) { + if (!worldIn.isRemote && !worldIn.restoringBlockSnapshots) { + final List items = getDrops(worldIn, pos, state, fortune); + chance = ForgeEventFactory.fireBlockHarvesting(items, worldIn, pos, state, fortune, chance, false, harvesters.get()); + + for (ItemStack item : items) { + if (worldIn.rand.nextFloat() <= chance) { + spawnAsEntity(worldIn, pos, item); + } + } + } + } + + @Override + public EnumPlantType getPlantType(IBlockAccess world, BlockPos pos) { + return EnumPlantType.Plains; + } + + @Override + public BlockStateContainer createBlockState() { + return new BlockStateContainer(this, AGE); + } + + private int getRandomInt(World world) { + return MathHelper.getInt(world.rand, 1, 3); + } + + @Override + public void grow(World worldIn, BlockPos pos, IBlockState state) { + int newGrowth = getMetaFromState(state) + getRandomInt(worldIn); + + if (newGrowth > MATURE_AGE) { + newGrowth = MATURE_AGE; + } + + worldIn.setBlockState(pos, getStateFromMeta(newGrowth), 2); + } + + @Override + public void grow(World worldIn, Random rand, BlockPos pos, IBlockState state) { + grow(worldIn, pos, state); + } + + @Override + public int hashCode() { + return registerName.hashCode(); + } + + @Override + public boolean equals(Object obj) { + return (obj instanceof BlockBBSCrop && registerName.equals(((BlockBBSCrop) obj).registerName)); + } + + @Override + public List getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune) { + + final List ret = new java.util.ArrayList(); + + final Random rand = world instanceof World ? ((World) world).rand : new Random(); + + final int age = getMetaFromState(state); + + final int count = quantityDropped(state, fortune, rand); + + for (int i = 0; i < count; i++) { + final Item item = this.getItemDropped(state, rand, fortune); + if (item != null) { + ret.add(new ItemStack(item, 1, this.damageDropped(state))); + } + } + + if (age >= getMatureAge()) { + for (int i = 0; i < 3 + fortune; ++i) { + if (rand.nextInt(2 * getMatureAge()) <= age) { + ret.add(new ItemStack(getSeed(), 1, 0)); + } + } + } + + return ret; + } + + @Override + protected boolean canSustainBush(IBlockState state) { + return isSuitableSoilBlock(state.getBlock()); + } + + @Override + public int getMaxAge() { + return getMatureAge(); + } + + @Override + protected int getAge(IBlockState state) { + return getMetaFromState(state); + } + + @Override + public IBlockState withAge(int age) { + return getDefaultState().withProperty(AGE, age); + } + + @Override + public boolean isMaxAge(IBlockState state) { + return getAge(state) >= getMaxAge(); + } + + @Override + public boolean canUseBonemeal(World worldIn, Random rand, BlockPos pos, IBlockState state) { + return getAge(state) < getMaxAge(); + } + + @Override + public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ){ + if(!world.isRemote) { + if (this.isMaxAge(state)) { + Random r = new Random(); + int Low = 1; + int High = 6; + int Result = r.nextInt(High-Low) + Low; + EntityItem item = new EntityItem(world,pos.getX(), pos.getY(), pos.getZ(), new ItemStack(getCrop(), Result)); + world.spawnEntity((item)); + world.setBlockState(pos, this.withAge(6)); + return true; + } + } + return false; + } + +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java new file mode 100644 index 0000000..a73955e --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java @@ -0,0 +1,47 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import net.minecraft.block.Block; +import net.minecraft.item.ItemBlock; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.registries.IForgeRegistry; + +import java.util.ArrayList; +import java.util.List; + +public class BlockRegistry { + + public static final List blocks = new ArrayList(); + + private static boolean initialized = false; + + public static void initBlockRegistry() { + initialized = true; + } + + + public static void registerBlock(String registerName, ItemBlock itemBlock, Block block) { + block.setRegistryName(registerName); + block.setUnlocalizedName(registerName); + blocks.add(block); + + if (itemBlock != null) + { + itemBlock.setRegistryName(registerName); + itemBlock.setUnlocalizedName(registerName); + ItemRegistry.itemlist.add(itemBlock); + } + return; + } + + public static void registerBlock(String registerName, Block block) { + final ItemBlock itemBlock = new ItemBlock(block); + registerBlock(registerName, itemBlock, block); + } + @SubscribeEvent + public void onBlockRegistry(RegistryEvent.Register e) { + IForgeRegistry reg = e.getRegistry(); + reg.registerAll(blocks.toArray(new Block[0])); + //reg.register(BlockRegistry.pamfossilItemBlock); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java new file mode 100644 index 0000000..4de34aa --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java @@ -0,0 +1,431 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import net.minecraft.init.Blocks; +import net.minecraft.item.Item; +import net.minecraft.item.ItemSeedFood; +import net.minecraft.item.ItemSeeds; +import net.minecraftforge.fml.common.FMLLog; + +import java.text.MessageFormat; +import java.util.HashMap; + +public class CropRegistry { + public static final String CROP_BLOCK_NAME = "hop{0}.crop"; + public static final String ITEM_NAME = "{0}.hop"; + public static final String SEED_ITEM_NAME = "{0}.rhizome"; + public static final String PELLET_ITEM_NAME = "{0}.pellet"; + + public static final String ADMIRAL = "admiral"; + public static final String AHTANUM = "ahtanum"; + public static final String AMARILLO = "amarillo"; + public static final String AQUILA = "aquila"; + public static final String ARAMIS = "aramis"; + public static final String AURORA = "aurora"; + public static final String BANNER = "banner"; + public static final String BCGOLDING = "bcgolding"; + public static final String BITTERGOLD = "bittergold"; + public static final String BLANC = "blanc"; + public static final String BOBEK = "bobek"; + public static final String BRAMLINGCROSS = "bramlingcross"; + public static final String BRAVO = "bravo"; + public static final String BREWERSGOLDGERMANY = "brewersgoldgermany"; + public static final String BREWERSGOLDUSA = "brewersgoldusa"; + public static final String BULLION = "bullion"; + public static final String CASCADE = "cascade"; + public static final String CELEIA = "celeia"; + public static final String CENTENNIAL = "centennial"; + public static final String CHALLENGER = "challenger"; + public static final String CHELAN = "chelan"; + public static final String CHINOOK = "chinook"; + public static final String CITRA = "citra"; + public static final String CLUSTER = "cluster"; + public static final String COLUMBUS = "columbus"; + public static final String COMET = "comet"; + public static final String CRYSTAL = "crystal"; + public static final String DRRUDI = "drrudi"; + public static final String EASTKENTGOLDING = "eastkentgolding"; + public static final String EKUANOT = "ekuanot"; + public static final String ELLA = "ella"; + public static final String EROICA = "eroica"; + public static final String FALCONERSFLIGHT = "falconersflight"; + public static final String FIRSTGOLD = "firstgold"; + public static final String FUGGLEUK = "fuggleuk"; + public static final String GALAXY = "galaxy"; + public static final String GALENA = "galena"; + public static final String GLACIER = "glacier"; + public static final String GOLD = "gold"; + public static final String GOLDINGUK = "goldinguk"; + public static final String GOLDINGUSA = "goldingusa"; + public static final String GREENBULLET = "greenbullet"; + public static final String HALLERTAUMITTELFRUH = "hallertaumittelfruh"; + public static final String HALLERTAUUSA = "hallertauusa"; + public static final String HBC431EXPERIMENTAL = "hbc431experimental"; + public static final String HBC438EXPERIMENTAL = "hbc438experimental"; + public static final String HBC472EXPERIMENTAL = "hbc472experimental"; + public static final String HBC682EXPERIMENTAL = "hbc682experimental"; + public static final String HELGA = "helga"; + public static final String HERALD = "herald"; + public static final String HERKULES = "herkules"; + public static final String HERSBRUCKER = "hersbrucker"; + public static final String HORIZON = "horizon"; + public static final String HUELLMELON = "huellmelon"; + public static final String HULLERBITTERER = "hullerbitterer"; + public static final String KOHATU = "kohatu"; + public static final String LIBERTY = "liberty"; + public static final String LORAL = "loral"; + public static final String LUBELSKA = "lubelska"; + public static final String MAGNUM = "magnum"; + public static final String MANDARINABAVARIA = "mandarinabavaria"; + public static final String MERKUR = "merkur"; + public static final String MILLENIUM = "millenium"; + public static final String MOSAIC = "mosaic"; + public static final String MOTUEKA = "motueka"; + public static final String MOUNTHOOD = "mounthood"; + public static final String MOUNTRAINIER = "mountrainier"; + public static final String NELSONSAUVIN = "nelsonsauvin"; + public static final String NEWPORT = "newport"; + public static final String NORTHDOWN = "northdown"; + public static final String NORTHERNBREWER = "northernbrewer"; + public static final String NUGGET = "nugget"; + public static final String OLYMPIC = "olympic"; + public static final String OMEGA = "omega"; + public static final String OPAL = "opal"; + public static final String ORION = "orion"; + public static final String PACIFICA = "pacifica"; + public static final String PACIFICGEM = "pacificgem"; + public static final String PACIFICJADE = "pacificjade"; + public static final String PALISADE = "palisade"; + public static final String PERLEGERMANY = "perlegermany"; + public static final String PERLEUSA = "perleusa"; + public static final String PHOENIX = "phoenix"; + public static final String PILGRIM = "pilgrim"; + public static final String PIONEER = "pioneer"; + public static final String POLARIS = "polaris"; + public static final String PREMIANT = "premiant"; + public static final String PRIDEOFRINGWOOD = "prideofringwood"; + public static final String PROGRESS = "progress"; + public static final String RAKAU = "rakau"; + public static final String RECORD = "record"; + public static final String RIWAKA = "riwaka"; + public static final String SAAZ = "saaz"; + public static final String SANTIAM = "santiam"; + public static final String SAPHIR = "saphir"; + public static final String SATUS = "satus"; + public static final String SAVINJSKIGOLDING = "savinjskigolding"; + public static final String SELECT = "select"; + public static final String SIMCOE = "simcoe"; + public static final String SMARAGD = "smaragd"; + public static final String SORACHIACE = "sorachiace"; + public static final String SOUTHERNCROSS = "southerncross"; + public static final String SOVEREIGN = "sovereign"; + public static final String SPALT = "spalt"; + public static final String STERLING = "sterling"; + public static final String STICKLEBRACT = "sticklebract"; + public static final String STRISSELSPALT = "strisselspalt"; + public static final String STYRIANGOLDING = "styriangolding"; + public static final String SUMMER = "summer"; + public static final String SUMMIT = "summit"; + public static final String SUPERALPHA = "superalpha"; + public static final String SUPERPRIDE = "superpride"; + public static final String SUSSEX = "sussex"; + public static final String SYLVA = "sylva"; + public static final String TAHOMA = "tahoma"; + public static final String TALISMAN = "talisman"; + public static final String TARGET = "target"; + public static final String TETTNANGERGERMANY = "tettnangergermany"; + public static final String TETTNANGERUSA = "tettnangerusa"; + public static final String TOMAHAWK = "tomahawk"; + public static final String TRADITION = "tradition"; + public static final String TRIPLEPEARL = "triplepearl"; + public static final String TRISKEL = "triskel"; + public static final String ULTRA = "ultra"; + public static final String VANGUARD = "vanguard"; + public static final String WAIITI = "waiiti"; + public static final String WAIMEA = "waimea"; + public static final String WAKATU = "wakatu"; + public static final String WARRIOR = "warrior"; + public static final String WHITBREADGOLDING = "whitbreadgolding"; + public static final String WILLAMETTE = "willamette"; + public static final String YAKIMACLUSTER = "yakimacluster"; + public static final String YAMHILLGOLDING = "yamhillgolding"; + public static final String YEOMAN = "yeoman"; + public static final String ZENITH = "zenith"; + public static final String ZEUS = "zeus"; + public static final String ZYTHOS = "zythos"; + + + public static final String[] cropNames = new String[] { + ADMIRAL, + AHTANUM, + AMARILLO, + AQUILA, + ARAMIS, + AURORA, + BANNER, + BCGOLDING, + BITTERGOLD, + BLANC, + BOBEK, + BRAMLINGCROSS, + BRAVO, + BREWERSGOLDGERMANY, + BREWERSGOLDUSA, + BULLION, + CASCADE, + CELEIA, + CENTENNIAL, + CHALLENGER, + CHELAN, + CHINOOK, + CITRA, + CLUSTER, + COLUMBUS, + COMET, + CRYSTAL, + DRRUDI, + EASTKENTGOLDING, + EKUANOT, + ELLA, + EROICA, + FALCONERSFLIGHT, + FIRSTGOLD, + FUGGLEUK, + GALAXY, + GALENA, + GLACIER, + GOLD, + GOLDINGUK, + GOLDINGUSA, + GREENBULLET, + HALLERTAUMITTELFRUH, + HALLERTAUUSA, + HBC431EXPERIMENTAL, + HBC438EXPERIMENTAL, + HBC472EXPERIMENTAL, + HBC682EXPERIMENTAL, + HELGA, + HERALD, + HERKULES, + HERSBRUCKER, + HORIZON, + HUELLMELON, + HULLERBITTERER, + KOHATU, + LIBERTY, + LORAL, + LUBELSKA, + MAGNUM, + MANDARINABAVARIA, + MERKUR, + MILLENIUM, + MOSAIC, + MOTUEKA, + MOUNTHOOD, + MOUNTRAINIER, + NELSONSAUVIN, + NEWPORT, + NORTHDOWN, + NORTHERNBREWER, + NUGGET, + OLYMPIC, + OMEGA, + OPAL, + ORION, + PACIFICA, + PACIFICGEM, + PACIFICJADE, + PALISADE, + PERLEGERMANY, + PERLEUSA, + PHOENIX, + PILGRIM, + PIONEER, + POLARIS, + PREMIANT, + PRIDEOFRINGWOOD, + PROGRESS, + RAKAU, + RECORD, + RIWAKA, + SAAZ, + SANTIAM, + SAPHIR, + SATUS, + SAVINJSKIGOLDING, + SELECT, + SIMCOE, + SMARAGD, + SORACHIACE, + SOUTHERNCROSS, + SOVEREIGN, + SPALT, + STERLING, + STICKLEBRACT, + STRISSELSPALT, + STYRIANGOLDING, + SUMMER, + SUMMIT, + SUPERALPHA, + SUPERPRIDE, + SUSSEX, + SYLVA, + TAHOMA, + TALISMAN, + TARGET, + TETTNANGERGERMANY, + TETTNANGERUSA, + TOMAHAWK, + TRADITION, + TRIPLEPEARL, + TRISKEL, + ULTRA, + VANGUARD, + WAIITI, + WAIMEA, + WAKATU, + WARRIOR, + WHITBREADGOLDING, + WILLAMETTE, + YAKIMACLUSTER, + YAMHILLGOLDING, + YEOMAN, + ZENITH, + ZEUS, + ZYTHOS + }; + + private static boolean isInitialized = false; + + private static final HashMap seeds = new HashMap(); + private static final HashMap foods = new HashMap(); + private static final HashMap pellets = new HashMap(); + private static final HashMap crops = new HashMap(); + + public static HashMap getSeeds() { + return seeds; + } + + public static HashMap getFoods() { + return foods; + } + + public static HashMap getPellets() { + return pellets; + } + + public static HashMap getCrops() { + if(!isInitialized) { + FMLLog.bigWarning("Crop registry is not initialized."); + return new HashMap(); + } + return crops; + } + + public static boolean isInitialized() { + return isInitialized; + } + + public static Item getSeed(String cropName) { + if(!isInitialized()) { + FMLLog.bigWarning("Crop registry has not been initialized yet."); + return null; + } + + if(!seeds.containsKey(cropName)) { + FMLLog.bigWarning("No seed for key %s", cropName); + return null; + } + + return seeds.get(cropName); + } + + public static ItemSeedFood getFood(String cropName) { + if(!isInitialized()) { + FMLLog.bigWarning("Crop registry has not been initialized yet."); + return null; + } + + if(!foods.containsKey(cropName)) { + FMLLog.bigWarning("No food for key %s", cropName); + return null; + } + + return foods.get(cropName); + } + + public static ItemSeedFood getPellet(String cropName) { + if (!isInitialized()) { + FMLLog.bigWarning("Crop registry has not been initialized yet."); + return null; + } + + if (!pellets.containsKey(cropName)) { + FMLLog.bigWarning("No pellet for key %s", cropName); + return null; + } + + + return pellets.get(cropName); + } + public static BlockBBSCrop getCrop(String cropName) { + if(!isInitialized()) { + FMLLog.bigWarning("Crop registry has not been initialized yet."); + return null; + } + + if(!crops.containsKey(cropName)) { + FMLLog.bigWarning("No crop for key %s", cropName); + return null; + } + + return crops.get(cropName); + } + + public static void registerCrops() { + if(isInitialized) + return; + + for(String cropName : cropNames) { + registerCrop(cropName); + } + + isInitialized = true; + } + + private static void registerCrop(String cropName) { + final String registryName = MessageFormat.format(CROP_BLOCK_NAME, cropName); + final BlockBBSCrop cropBlock = new BlockBBSCrop(registryName, cropName); + + BlockRegistry.registerBlock(registryName, null, cropBlock); + + final ItemSeedFood item = createItem(cropBlock); + ItemRegistry.registerItem(item, MessageFormat.format(ITEM_NAME, cropName)); + cropBlock.setFood(item); + + final ItemSeedFood itemPellet = createItem(cropBlock); + ItemRegistry.registerItem(itemPellet, MessageFormat.format(PELLET_ITEM_NAME, cropName)); + + + final Item seedItem = createSeed(cropBlock); + ItemRegistry.registerItem(seedItem, getSeedName(cropName)); + cropBlock.setSeed(seedItem); + + seeds.put(cropName, seedItem); + foods.put(cropName, item); + pellets.put(cropName, itemPellet); + crops.put(cropName, cropBlock); + } + + private static String getSeedName(String cropName) { + return MessageFormat.format(SEED_ITEM_NAME, cropName); + } + + + private static ItemSeedFood createItem(BlockBBSCrop cropBlock) { + return new ItemSeedFood(1, 0.6F, cropBlock, Blocks.FARMLAND); + } + + private static Item createSeed(BlockBBSCrop cropBlock) { + return new ItemSeeds(cropBlock, Blocks.FARMLAND); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java new file mode 100644 index 0000000..e944b51 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java @@ -0,0 +1,34 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import com.rafacost3d.bbs_mod.util.Reference; + +import java.util.HashMap; + +public class ItemModelList { + private final HashMap registrations = new HashMap(); + + private final String rootDirectory; + + public ItemModelList(String resourceRoot) { + /* + if (resourceRoot.charAt(resourceRoot.length() - 1) != '/') { + throw new RuntimeException("Resource root path must be relative! (end with '/')"); + } +*/ + this.rootDirectory = getResourcePath(resourceRoot); + } + + public ItemModelList add(int meta, String path) { + this.registrations.put(meta, this.rootDirectory != null ? this.rootDirectory + path : getResourcePath(path)); + + return this; + } + + HashMap getRegistrations() { + return this.registrations; + } + + private static String getResourcePath(String resource) { + return (Reference.MODID + ":") + resource; + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java new file mode 100644 index 0000000..ce10251 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java @@ -0,0 +1,81 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import net.minecraft.block.Block; +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.block.model.ModelBakery; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.item.Item; +import net.minecraft.util.ResourceLocation; +import net.minecraftforge.fml.common.FMLLog; + +import java.util.Collection; +import java.util.HashMap; +import java.util.Map; + +public class ItemModels { + private static final HashMap models = new HashMap(); + + public static void preInit() { + defineItemModels(); + prepareModels(); + } + + public static void init() { + registerModels(); + } + + private static void defineItemModels() { + + for (BlockBBSCrop crop : CropRegistry.getCrops().values()) { + registerItemModels(getItem(crop), new ItemModelList("") + .add(0, crop.getStageId(0)) + .add(1, crop.getStageId(1)) + .add(2, crop.getStageId(2)) + .add(3, crop.getStageId(3)) + .add(4, crop.getStageId(4)) + .add(5, crop.getStageId(5)) + .add(6, crop.getStageId(6)) + .add(7, crop.getStageId(7)) + ); + } + } + + private static void registerItemModels(Item item, ItemModelList list) { + models.put(item, list); + } + + private static void prepareModels() { + for (Map.Entry entry : models.entrySet()) { + Item item = entry.getKey(); + + Collection registrations = entry.getValue().getRegistrations().values(); + + for (String registration : registrations) { + if (item == null || registration == null) continue; + + ModelBakery.registerItemVariants(item, new ResourceLocation(registration)); + } + } + } + + private static void registerModels() { + for (HashMap.Entry entry : models.entrySet()) { + Item item = entry.getKey(); + + HashMap registrations = entry.getValue().getRegistrations(); + + for (Map.Entry registration : registrations.entrySet()) { + int meta = registration.getKey(); + String path = registration.getValue(); + + ModelResourceLocation resource = new ModelResourceLocation(path, "inventory"); + + Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, meta, resource); + } + } + } + + private static Item getItem(Block block) { + return Item.getItemFromBlock(block); + } +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java new file mode 100644 index 0000000..5daad06 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java @@ -0,0 +1,49 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; +import net.minecraft.item.Item; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.registries.IForgeRegistry; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; + +public class ItemRegistry { + public static final List itemlist = new ArrayList(); + public static final HashMap items = new HashMap(); + + public static boolean initialized = false; + + public static void registerItems() { + initialized = true; + } + + private static Item registerGenericItem(String registryName) { + final Item item = new Item(); + + return registerItem(item, registryName); + } + + public static Item registerItem(Item item, String registryName) { + String name[] = registryName.split("[.]"); + if (name[1].equals("rhizome")) { + item.setCreativeTab(CreativeTabsBBS.BBSTabsSeeds); + } else if (name[1].equals("pellet")) { + item.setCreativeTab(CreativeTabsBBS.BBSTabsPellets); + } else { + item.setCreativeTab(CreativeTabsBBS.BBSTabsHops); + } + item.setRegistryName(registryName); + item.setUnlocalizedName(registryName); + itemlist.add(item); + return item; + } + @SubscribeEvent + public void onItemRegistry(RegistryEvent.Register e) { + IForgeRegistry reg = e.getRegistry(); + reg.registerAll(itemlist.toArray(new Item[0])); + //GeneralOreRegistry.initOreRegistry(); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java new file mode 100644 index 0000000..f26324e --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java @@ -0,0 +1,25 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.item.Item; + +public class ItemRenderRegister { + public static void registerItemRenderer() { + for (Item item : ItemRegistry.items.values()) { + register(item); + } + for (Item item : ItemRegistry.itemlist) { + register(item); + } + } + + private static void register(final Item item) { + final String resName = item.getRegistryName().toString(); + + final ModelResourceLocation res = + new ModelResourceLocation(resName, "inventory"); + Minecraft.getMinecraft().getRenderItem(). + getItemModelMesher().register(item, 0, res); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java b/src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java new file mode 100644 index 0000000..5ccae53 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java @@ -0,0 +1,25 @@ +package com.rafacost3d.bbs_mod.objects.items; + + +import com.rafacost3d.bbs_mod.BBSMod; +import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; +import com.rafacost3d.bbs_mod.init.ItemInit; +import com.rafacost3d.bbs_mod.util.IHasModel; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.item.Item; + +public class ItemBase extends Item implements IHasModel { + + public ItemBase(String name){ + setUnlocalizedName(Reference.MODID + "." + name); + setRegistryName(name); + setCreativeTab(CreativeTabsBBS.BBSTabsItems); + + ItemInit.ITEMS.add(this); + } + + @Override + public void registerModels(){ + BBSMod.proxy.registerItemRenderer(this, 0, "inventory"); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java index 2dc0205..78fa9aa 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java +++ b/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java @@ -1,36 +1,37 @@ package com.rafacost3d.bbs_mod.proxy; - -import com.rafacost3d.bbs_mod.blocks.crops.CropsModels; -import com.rafacost3d.bbs_mod.init.*; -import com.rafacost3d.bbs_mod.BBSMod; -import net.minecraft.client.Minecraft; -import net.minecraft.util.text.translation.I18n; -import net.minecraftforge.client.model.obj.OBJLoader; -import net.minecraftforge.common.MinecraftForge; +import com.rafacost3d.bbs_mod.init.BlocksInit; +import com.rafacost3d.bbs_mod.objects.crops.ItemModels; +import com.rafacost3d.bbs_mod.objects.crops.ItemRenderRegister; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.item.Item; +import net.minecraftforge.client.event.ModelRegistryEvent; +import net.minecraftforge.client.model.ModelLoader; +import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.fml.relauncher.Side; +@Mod.EventBusSubscriber(Side.CLIENT) public class ClientProxy extends CommonProxy { + @Override + public void registerItemRenderer(Item item, int meta, String id){ + ModelLoader.setCustomModelResourceLocation(item, meta, new ModelResourceLocation(item.getRegistryName(), id)); + } @Override public void preInit(FMLPreInitializationEvent e) { super.preInit(e); - OBJLoader.INSTANCE.addDomain(BBSMod.MODID); - BBSFluids.initModels(); - BBSBlocks.initModels(); - BBSItems.initModels(); - CropsModels.preInit(); + ItemModels.preInit(); } @Override public void init(FMLInitializationEvent e) { super.init(e); - CropsModels.init(); - BBSItemRenderRegister.registerItemRenderer(); - MinecraftForge.EVENT_BUS.register(new BBSTooltipHandler()); - + ItemModels.init(); + ItemRenderRegister.registerItemRenderer(); } @Override @@ -38,4 +39,8 @@ public void postInit(FMLPostInitializationEvent e) { super.postInit(e); } + @SubscribeEvent + public static void registerModels(ModelRegistryEvent event) { + BlocksInit.initModels(); + } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java index 6d9edb6..1d3a99e 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java +++ b/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java @@ -1,39 +1,60 @@ package com.rafacost3d.bbs_mod.proxy; -import com.rafacost3d.bbs_mod.init.*; -import com.rafacost3d.bbs_mod.compat.MainCompatHandler; -import net.minecraftforge.common.config.Configuration; -import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; + +import com.rafacost3d.bbs_mod.BBSMod; +import com.rafacost3d.bbs_mod.init.BlocksInit; +import com.rafacost3d.bbs_mod.objects.blocks.*; +import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackBlock; +import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackTileEntity; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerBlock; +import com.rafacost3d.bbs_mod.objects.blocks.machines.TileEntityMicroBrewer; +import com.rafacost3d.bbs_mod.objects.crops.BlockRegistry; +import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; +import com.rafacost3d.bbs_mod.objects.crops.ItemRegistry; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.block.Block; +import net.minecraft.item.Item; +import net.minecraft.item.ItemBlock; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; +import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.fml.common.network.NetworkRegistry; +import net.minecraftforge.fml.common.registry.GameRegistry; -import java.io.File; - -public abstract class CommonProxy { - - public static Configuration config; +@Mod.EventBusSubscriber +public class CommonProxy { + public void registerItemRenderer(Item item, int meta, String id) {} public void preInit(FMLPreInitializationEvent e) { - File directory = e.getModConfigurationDirectory(); - config = new Configuration(new File(directory.getPath(), "bbs_mod.cfg")); - BBSConfig.readConfig(); - BBSConstants.preint(); - MainCompatHandler.registerTOP(); - BBSFluids.preinit(); - BBSBlocks.preinit(); - BBSItems.preinit(); - BBSCropRegistry.registerCrops(); - BBSCropBlockRegistry.initBlockRegistry(); - BBSCropItemRegistry.registerItems(); - new BBSGetMarketDataFireBase(); + CropRegistry.registerCrops(); + BlockRegistry.initBlockRegistry(); + MinecraftForge.EVENT_BUS.register(new BlockRegistry()); + ItemRegistry.registerItems(); + MinecraftForge.EVENT_BUS.register(new ItemRegistry()); } + public void init(FMLInitializationEvent e) { - BBSRecipes.init(); - } + NetworkRegistry.INSTANCE.registerGuiHandler(BBSMod.instance, new GuiProxy()); + } public void postInit(FMLPostInitializationEvent e) { - if (config.hasChanged()) { - config.addCustomCategoryComment("general","Selected below the Unit System you prefer. Metric (true) or US/Imperial (false)"); - config.save(); - } + } + + @SubscribeEvent + public static void registerBlocks(RegistryEvent.Register event) { + event.getRegistry().register(new ModelBlock()); + event.getRegistry().register(new MicroBrewerBlock()); + GameRegistry.registerTileEntity(TileEntityMicroBrewer.class, Reference.MODID + "_microbrewer"); + event.getRegistry().register(new MicroPackBlock()); + GameRegistry.registerTileEntity(MicroPackTileEntity.class, Reference.MODID + "_micropack"); + } + @SubscribeEvent + public static void registerItems(RegistryEvent.Register event) { + event.getRegistry().register(new ItemBlock(BlocksInit.modelBlock).setRegistryName(BlocksInit.modelBlock.getRegistryName())); + event.getRegistry().register(new ItemBlock(BlocksInit.microBrewerBlock).setRegistryName(BlocksInit.microBrewerBlock.getRegistryName())); + event.getRegistry().register(new ItemBlock(BlocksInit.microPackBlock).setRegistryName(BlocksInit.microPackBlock.getRegistryName())); } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java new file mode 100644 index 0000000..13e4899 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java @@ -0,0 +1,42 @@ +package com.rafacost3d.bbs_mod.proxy; + +import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackContainer; +import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackGui; +import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackTileEntity; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerContainer; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerGui; +import com.rafacost3d.bbs_mod.objects.blocks.machines.TileEntityMicroBrewer; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; +import net.minecraftforge.fml.common.network.IGuiHandler; + +public class GuiProxy implements IGuiHandler{ + @Override + public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { + BlockPos pos = new BlockPos(x, y, z); + TileEntity te = world.getTileEntity(pos); + if (te instanceof MicroPackTileEntity) { + return new MicroPackContainer(player.inventory, (MicroPackTileEntity) te); + } + { + if(ID == Reference.GUI_MICROBREWER) return new MicroBrewerContainer(player.inventory, (TileEntityMicroBrewer) world.getTileEntity(new BlockPos(x,y,z))); + } + return null; + } + + @Override + public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { + BlockPos pos = new BlockPos(x, y, z); + TileEntity te = world.getTileEntity(pos); + if (te instanceof MicroPackTileEntity) { + MicroPackTileEntity containerTileEntity = (MicroPackTileEntity) te; + return new MicroPackGui(containerTileEntity, new MicroPackContainer(player.inventory, containerTileEntity)); + } + if(ID == Reference.GUI_MICROBREWER) return new MicroBrewerGui(player.inventory, (TileEntityMicroBrewer)world.getTileEntity(new BlockPos(x,y,z))); + + return null; + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/util/IHasModel.java b/src/main/java/com/rafacost3d/bbs_mod/util/IHasModel.java new file mode 100644 index 0000000..3015844 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/util/IHasModel.java @@ -0,0 +1,5 @@ +package com.rafacost3d.bbs_mod.util; + +public interface IHasModel { + public void registerModels(); +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/util/Reference.java b/src/main/java/com/rafacost3d/bbs_mod/util/Reference.java new file mode 100644 index 0000000..14b62be --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/util/Reference.java @@ -0,0 +1,13 @@ +package com.rafacost3d.bbs_mod.util; + + +public class Reference { + public static final String MODID = "bbs_mod"; + public static final String NAME = "Beer Brewery Simulator"; + public static final String VERSION = "${version}"; + public final static String CLIENT = "com.rafacost3d.bbs_mod.proxy.ClientProxy"; + public final static String COMMON = "com.rafacost3d.bbs_mod.proxy.CommonProxy"; + + public static final int GUI_MICROBREWER = 0; + public static final int GUI_MICROPACK = 1; +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.java b/src/main/java/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.java new file mode 100644 index 0000000..18f1048 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.java @@ -0,0 +1,29 @@ +package com.rafacost3d.bbs_mod.util.handlers; + +import com.rafacost3d.bbs_mod.init.ItemInit; +import com.rafacost3d.bbs_mod.util.IHasModel; +import net.minecraft.item.Item; +import net.minecraftforge.client.event.ModelRegistryEvent; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; + +@Mod.EventBusSubscriber +public class RegistryHandler { + + @SubscribeEvent + public static void onItemRegister(RegistryEvent.Register event){ + event.getRegistry().registerAll(ItemInit.ITEMS.toArray(new Item[0])); + } + + @SubscribeEvent + public static void onModelRegister(ModelRegistryEvent event){ + for(Item item : ItemInit.ITEMS) + { + if(item instanceof IHasModel) + { + ((IHasModel)item).registerModels(); + } + } + } +} diff --git a/src/main/resources/assets/bbs_mod/blockstates/microbrewer.json b/src/main/resources/assets/bbs_mod/blockstates/microbrewer.json new file mode 100644 index 0000000..aff8f8b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/microbrewer.json @@ -0,0 +1,26 @@ +{ + "forge_marker": 1, + "defaults": + { + "textures": + { + "all": "bbs_mod:block/microbrewer" + }, + "custom": { "flip-v": true }, + "model": "bbs_mod:microbrewer_empty", + "uvlock": false + }, + "variants": + { + "facing=east,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 270}, + "facing=east,working=true": {"model": "bbs_mod:microbrewer", "y": 270}, + "facing=north,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 180}, + "facing=north,working=true": {"model": "bbs_mod:microbrewer", "y": 180}, + "facing=south,working=false": {"model": "bbs_mod:microbrewer_empty"}, + "facing=south,working=true": {"model": "bbs_mod:microbrewer"}, + "facing=west,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 90}, + "facing=west,working=true": {"model": "bbs_mod:microbrewer", "y": 90}, + "inventory": {"model": "bbs_mod:microbrewer"}, + "normal": {"model": "bbs_mod:microbrewer_empty"} + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/blockstates/micropack.json b/src/main/resources/assets/bbs_mod/blockstates/micropack.json new file mode 100644 index 0000000..fbcb328 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/micropack.json @@ -0,0 +1,10 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "bbs_mod:micropack" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/blockstates/modelblock.json b/src/main/resources/assets/bbs_mod/blockstates/modelblock.json new file mode 100644 index 0000000..5da8147 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/modelblock.json @@ -0,0 +1,10 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "bbs_mod:modelblock" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/lang/en_US.lang b/src/main/resources/assets/bbs_mod/lang/en_US.lang index 5f7797d..a91e680 100644 --- a/src/main/resources/assets/bbs_mod/lang/en_US.lang +++ b/src/main/resources/assets/bbs_mod/lang/en_US.lang @@ -1,10 +1,15 @@ +language.name=English +language.region=United States +language.code=en_us + itemGroup.bbs_mod.hops=Beer Brewing Simulator Hops itemGroup.bbs_mod.pellets=Beer Brewing Simulator Pellets itemGroup.bbs_mod.seeds=Beer Brewing Simulator Rhizomes itemGroup.bbs_mod.machines=Beer Brewing Simulator Machines itemGroup.bbs_mod.item=Beer Brewing Simulator Items itemGroup.bbs_mod.fluid=Beer Brewing Simulator Fluids -item.bbs_mod.stirringspoon.name=Stirring Spoon + +item.bbs_mod.spoon.name=Spoon item.bbs_mod.sanitizer.name=Sanitizer item.bbs_mod.watergallon.name=Water Gallon item.bbs_mod.lme_pilsen.name=Liquid Malt Extract - Pilsen 3.3lb @@ -17,10 +22,17 @@ item.bbs_mod.lme_dark.name=Liquid Malt Extract - Dark 3.3lb item.bbs_mod.priming_sugar.name=Priming Sugar item.bbs_mod.yeast.name=Yeast item.bbs_mod.thermometer.name=Thermometer -item.bbs_mod.wortbucket.name=Wort Bucket -tile.bbs_mod.pelleter.name=Hops Pelleting Machine -tile.bbs_mod.aluminiumpot.name=Aluminium Boiling Kettle -tile.bbs_mod.fermentorbucket.name=Fermentor Bucket 6.5gl +item.bbs_mod.waterkeg.name=Water Keg +item.bbs_mod.mashkeg.name=Mash Keg +item.bbs_mod.hotwortkeg.name=Hot Wort Keg +item.bbs_mod.wortkeg.name=Wort Keg +item.bbs_mod.beerkeg.name=Beer Keg +item.bbs_mod.keg.name=Empty Keg + +tile.bbs_mod.microbrewer.name=Micro Brewer +tile.bbs_mod.micropack.name=Micro Pack +tile.bbs_mod.modelblock.name=Basic Block + tile.bbs_mod.beer.name=Beer tile.bbs_mod.wort.name=Wort fluid.beer=Beer diff --git a/src/main/resources/assets/bbs_mod/models/block/microbrewer.json b/src/main/resources/assets/bbs_mod/models/block/microbrewer.json new file mode 100644 index 0000000..9a81357 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/block/microbrewer.json @@ -0,0 +1,204 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "particle": "bbs_mod:block/microbrewer", + "0": "bbs_mod:block/microbrewer" + }, + "elements": [ + { + "name": "back", + "from": [ 1.0, 0.0, 2.0 ], + "to": [ 15.0, 16.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base", + "from": [ 1.0, 0.0, 3.0 ], + "to": [ 15.0, 1.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "front_lower", + "from": [ 1.0, 0.0, 13.0 ], + "to": [ 15.0, 4.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "top", + "from": [ 1.0, 15.0, 3.0 ], + "to": [ 15.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "cover_right", + "from": [ 1.0, 1.0, 3.0 ], + "to": [ 2.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "cover_left", + "from": [ 14.0, 1.0, 3.0 ], + "to": [ 15.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "front_top", + "from": [ 1.0, 12.0, 13.0 ], + "to": [ 15.0, 16.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 3.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base_upper", + "from": [ 2.0, 4.0, 4.0 ], + "to": [ 14.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "base_endleft", + "from": [ 1.0, 4.0, 13.0 ], + "to": [ 2.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 0.0, 10.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "base_endright", + "from": [ 14.0, 4.0, 13.0 ], + "to": [ 15.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "case_base", + "from": [ 3.0, 5.0, 5.0 ], + "to": [ 13.0, 6.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_back", + "from": [ 3.0, 6.0, 5.0 ], + "to": [ 13.0, 11.0, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_front", + "from": [ 3.0, 6.0, 11.0 ], + "to": [ 13.0, 11.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_left", + "from": [ 3.0, 6.0, 6.0 ], + "to": [ 4.0, 11.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_right", + "from": [ 12.0, 6.0, 6.0 ], + "to": [ 13.0, 11.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/block/microbrewer_empty.json b/src/main/resources/assets/bbs_mod/models/block/microbrewer_empty.json new file mode 100644 index 0000000..25d35d4 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/block/microbrewer_empty.json @@ -0,0 +1,139 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "particle": "bbs_mod:block/microbrewer", + "0": "bbs_mod:block/microbrewer" + }, + "elements": [ + { + "name": "back", + "from": [ 1.0, 0.0, 2.0 ], + "to": [ 15.0, 16.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base", + "from": [ 1.0, 0.0, 3.0 ], + "to": [ 15.0, 1.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "front_lower", + "from": [ 1.0, 0.0, 13.0 ], + "to": [ 15.0, 4.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "top", + "from": [ 1.0, 15.0, 3.0 ], + "to": [ 15.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "cover_right", + "from": [ 1.0, 1.0, 3.0 ], + "to": [ 2.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "cover_left", + "from": [ 14.0, 1.0, 3.0 ], + "to": [ 15.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "front_top", + "from": [ 1.0, 12.0, 13.0 ], + "to": [ 15.0, 16.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 3.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base_upper", + "from": [ 2.0, 4.0, 4.0 ], + "to": [ 14.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "base_endleft", + "from": [ 1.0, 4.0, 13.0 ], + "to": [ 2.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 0.0, 10.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "base_endright", + "from": [ 14.0, 4.0, 13.0 ], + "to": [ 15.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/block/micropack.json b/src/main/resources/assets/bbs_mod/models/block/micropack.json new file mode 100644 index 0000000..7cf44b9 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/block/micropack.json @@ -0,0 +1,74 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "particle": "bbs_mod:block/microbrewer", + "0": "bbs_mod:block/microbrewer" + }, + "elements": [ + { + "name": "case_base", + "from": [ 3.0, 0.0, 5.0 ], + "to": [ 13.0, 1.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_back", + "from": [ 3.0, 1.0, 5.0 ], + "to": [ 13.0, 6.0, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_front", + "from": [ 3.0, 1.0, 11.0 ], + "to": [ 13.0, 6.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_left", + "from": [ 3.0, 1.0, 6.0 ], + "to": [ 4.0, 6.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_right", + "from": [ 12.0, 1.0, 6.0 ], + "to": [ 13.0, 6.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/block/modelblock.json b/src/main/resources/assets/bbs_mod/models/block/modelblock.json new file mode 100644 index 0000000..820f869 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/block/modelblock.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "bbs_mod:block/modeltexture" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/aluminiumpot.json b/src/main/resources/assets/bbs_mod/models/item/aluminiumpot.json new file mode 100644 index 0000000..8ede004 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/aluminiumpot.json @@ -0,0 +1,43 @@ +{ + "forge_marker": 1, + "defaults": { + "custom": { "flip-v": true }, + "model": "bbs_mod:boilingpot.obj" + }, + "variants": { + "normal": [{}], + "inventory": [{ + "transform": { + "gui": { + "rotation": [ + { + "x": 20 + }, + { + "y": 0 + }, + { + "z": 0 + } + ], + "translation": [ + 0, + 0.5, + 0 + ], + "scale": 2.0 + } + } + + } + ], + "facing": { + "north": {"y": 90}, + "south": {"y": 270}, + "west": {"y": 0}, + "east": {"y": 180}, + "up": {"x": 0}, + "down": {"x": 0} + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg.json new file mode 100644 index 0000000..70a5c9c --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerkeg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/hotwortkeg.json b/src/main/resources/assets/bbs_mod/models/item/hotwortkeg.json new file mode 100644 index 0000000..013f419 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/hotwortkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/wortkeg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/keg.json b/src/main/resources/assets/bbs_mod/models/item/keg.json new file mode 100644 index 0000000..5ed0b58 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/keg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_amber.json b/src/main/resources/assets/bbs_mod/models/item/lme_amber.json index 4d78755..0c4999f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_amber.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_amber.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme_amber" + "layer0": "bbs_mod:item/lme" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_dark.json b/src/main/resources/assets/bbs_mod/models/item/lme_dark.json index de0d93c..0c4999f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_dark.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_dark.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme_dark" + "layer0": "bbs_mod:item/lme" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json b/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json index 7e0af03..0c4999f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme_extralight" + "layer0": "bbs_mod:item/lme" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_light.json b/src/main/resources/assets/bbs_mod/models/item/lme_light.json index 3757c84..0c4999f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_light.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_light.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme_light" + "layer0": "bbs_mod:item/lme" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_munich.json b/src/main/resources/assets/bbs_mod/models/item/lme_munich.json index a53b475..0c4999f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_munich.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_munich.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme_munich" + "layer0": "bbs_mod:item/lme" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json b/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json index 7ac6d90..0c4999f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme_pilsen" + "layer0": "bbs_mod:item/lme" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json b/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json index 3bc49c0..0c4999f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme_wheat" + "layer0": "bbs_mod:item/lme" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg.json new file mode 100644 index 0000000..013f419 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/wortkeg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/spoon.json b/src/main/resources/assets/bbs_mod/models/item/spoon.json new file mode 100644 index 0000000..0f33566 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/spoon.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/spoon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/waterkeg.json b/src/main/resources/assets/bbs_mod/models/item/waterkeg.json new file mode 100644 index 0000000..d72c13a --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/waterkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/waterkeg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/wortkeg.json b/src/main/resources/assets/bbs_mod/models/item/wortkeg.json new file mode 100644 index 0000000..013f419 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/wortkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/wortkeg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/keg.json b/src/main/resources/assets/bbs_mod/recipes/keg.json new file mode 100644 index 0000000..c788179 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/keg.json @@ -0,0 +1,20 @@ +{ + "result": { + "item": "bbs_mod:keg", + "count": 1 + }, + "pattern": [ + "iii", + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:iron_ingot" + }, + "r": { + "item": "bbs_mod:sanitizer" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/microbrewer.json b/src/main/resources/assets/bbs_mod/recipes/microbrewer.json new file mode 100644 index 0000000..1caf359 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/microbrewer.json @@ -0,0 +1,22 @@ +{ + "result": { + "item": "bbs_mod:microbrewer" + }, + "pattern": [ + "iri", + "ici", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "c": { + "item": "minecraft:cauldron" + }, + "i": { + "item": "minecraft:iron_ingot" + }, + "r": { + "item": "bbs_mod:admiral.rhizome" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/micropack.json b/src/main/resources/assets/bbs_mod/recipes/micropack.json new file mode 100644 index 0000000..77c8925 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/micropack.json @@ -0,0 +1,19 @@ +{ + "result": { + "item": "bbs_mod:micropack", + "count": 4 + }, + "pattern": [ + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:glass_pane" + }, + "r": { + "item": "bbs_mod:admiral.hop" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/sanitizer.json b/src/main/resources/assets/bbs_mod/recipes/sanitizer.json new file mode 100644 index 0000000..07c96ee --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/sanitizer.json @@ -0,0 +1,20 @@ +{ + "result": { + "item": "bbs_mod:sanitizer", + "count": 8 + }, + "pattern": [ + "iii", + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:glass_pane" + }, + "r": { + "item": "minecraft:water_bucket" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/watergallon.json b/src/main/resources/assets/bbs_mod/recipes/watergallon.json new file mode 100644 index 0000000..33bea16 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/watergallon.json @@ -0,0 +1,15 @@ +{ + "result": { + "item": "bbs_mod:watergallon", + "count": 1 + }, + "pattern": [ + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:water_bucket" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/waterkeg.json b/src/main/resources/assets/bbs_mod/recipes/waterkeg.json new file mode 100644 index 0000000..9223dd7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/waterkeg.json @@ -0,0 +1,18 @@ +{ + "result": { + "item": "bbs_mod:waterkeg", + "count": 1 + }, + "pattern": [ + "ir" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "bbs_mod:keg" + }, + "r": { + "item": "bbs_mod:watergallon" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/wortkeg.json b/src/main/resources/assets/bbs_mod/recipes/wortkeg.json new file mode 100644 index 0000000..40dd2b5 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/wortkeg.json @@ -0,0 +1,18 @@ +{ + "result": { + "item": "bbs_mod:wortkeg", + "count": 1 + }, + "pattern": [ + "ir" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "bbs_mod:hotwortkeg" + }, + "r": { + "item": "minecraft:ice" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/yeast.json b/src/main/resources/assets/bbs_mod/recipes/yeast.json new file mode 100644 index 0000000..c6d9045 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/yeast.json @@ -0,0 +1,20 @@ +{ + "result": { + "item": "bbs_mod:yeast", + "count": 8 + }, + "pattern": [ + "iii", + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:wheat" + }, + "r": { + "item": "minecraft:water_bucket" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/textures/block/microbrewer.png b/src/main/resources/assets/bbs_mod/textures/block/microbrewer.png new file mode 100644 index 0000000000000000000000000000000000000000..b81a8fe8b08d9772c275f020701beacb1d7be685 GIT binary patch literal 1047 zcmaJ=PiWIn7!M4c3<`oCoEIP2MbRdCX`8l>X8)4b70ei2arI`Jysn{3UY5MtY^Sk- zB6{=aK`(-MP`n8uf(SAcR1kzAp7bW@PJ*EL(zTrjyO6v;Uw*&e_r34?-t~p~^NF#O zV;sjN%5!>!&C~IBZE@JE0Eb^cWp)Hl)3#w);0F49~WQ0`Gk{|?% zBEWP;QQ$csOHdXi_9{u3Mi~XkSn6xt~)@7w1W5J{jYFXUGuS6!69h}7Ast1B6j5?Ex;xvL6wk|eij#+gp#mH ze4s5V;PjH?*`yPm>EaComA#Ofo`uW0$}+($Y*Zmy)xyvk(?@IXSE4i%J%1 zxtyMsr9M|DR@=oM?Q`vYZh9y;ZUxt8o^>2JSFl|Qhzq($M$Yh9;849D*B%~=Jd`W4 zV8pnv{}j4!V%-xj2W`tXgT}`m>-K=P_3iC+hFyspWqqa^?R?vTi4E!K)%R!XC&qWL z-9*z`LOS;1<;97+o1fnO9DnlV>#0X?UjHi9e@~{~zB;}&+PzQ*45j-Yp56O1TKM?* g(gCR6uOF>D+z8jcHMZd$+TDtc<>I{laQ5=%U)t^fc4 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/block/modeltexture.png b/src/main/resources/assets/bbs_mod/textures/block/modeltexture.png new file mode 100644 index 0000000000000000000000000000000000000000..cfadbb25f503952afa6d07b3caa6c8de8737b495 GIT binary patch literal 537 zcmV+!0_OdRP)TuuN003B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00DhTL_t(2&vjBwO9D|8 zJ-!*|h!$CQi(fcz)(EWgulGNprsnlW%p8E1+m0bsws>zHyf zoU=R`&Izr{R;S-2G)x1Q1c2$&JE373u%PKphI5i}Ov%lHtE222z`@a;XZcAU5&apz zG3XB3p5;%5^Egw2^IWq6;O^=HfNi)OR&yHUGroS+6olqSsAj^=YZ%=`LK^S&&3;PGXQEzSw@%BFb&o} bEbaOQZgR*If^der00000NkvXXu0mjfdgtTk literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/gui/microbrewer_gui.png b/src/main/resources/assets/bbs_mod/textures/gui/microbrewer_gui.png new file mode 100644 index 0000000000000000000000000000000000000000..ad5598d56a99bd24e9d194ef5714232126ad8b6a GIT binary patch literal 2196 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K58911MRQ8&P5Fo{p?&#~tz_78O`%fY(0|PTd zfKP}kP~6kBO~L6kL&+!4FCVjcXxLmJ9g~<|NlVQQ7{?;!#D({o@d_;$|xm4 ze!;*5Kav4M@OO4qU{rG!ctjR6Fz_7$VMb96uLhu?WQl7;NpOBzNqJ&XDnmhHW?qS2 zUTTSgiJpO;kwKe!B(R`i{^{xB7*Y}U_D*l!DhCnQ#GI+~zt<C_U>=-n`vqvz}Ml^zXdUCCmQ$Szgw10SSH2gvyvUAqL&G^-{YlW%M`x zc)eJ{VNaBFZEfk}o$|*v_6IB2Zs}rHW!PKAtlHqs)uIJ(e za?Uc&`5jUH=S#bV=(#?I=`U@1o`1RQFA{aMaTasLx`rPQj~8oXh_Yw#CCqxX_q`Es zA!i7igkSkm^ZVk{?=fGxxql8@Z43`kc^$h2Z~5MXGldu)i*&zVZnv)C#sw|DD>4UC zz2q4(KW===VQ_5Xk*_P&!7jM7O>WAy&jn|hpDeyqCAY4YL3SFDE6-41tGD*~Lp#O< zO9K$iq#!#JDE^i)W_rzZ+XGMdKIF1|s11(W|9y7Cn)^};Ywt@YMAox5nD13wv^FLV z$SQwh&k(g=*CB4d?txiAt*(q^`O-Us^5q#9Jk|>fY`Dwr{%%RWg%rb8hEp}qOnCyH zZI?4|xEqH?_ zkKtBa5zB>Vrp^qxn)VF2Pu?(?T$f_ouwOAqjbY2ZSYL)5^}oT(>$w=#mWNAEcZe#l zvk8A(FJZ|Suy@z=1DifnTzYSw|Lb|7Z287I_8YMme)?1k*pKNcpiZ_tTjIKAJOaZ}S<)d}-?&NuvKxUlOw!v*m;31CVCdP$6d;SXCvx$}}% zAfEwfB9Lrgb(sG(`nP@Y-U|O*hQGVEo9(?V2a*N>hvTt25EhVZQ2aYT#C-4Vd8Zh5 zz26l2@m}AvYxBQdVY@JMTiC~xx;%cEN{CHRp2J>i%cb8!*e=vgU)%M)%w+q&Ez8Xs z&TZM+rT)3N8m0y67%2DE-IJPImm4`qgDP9AcS)%XcdPHNs;Cbye(hhK#r)!O+S*6# zw{Yt|s|(fLV16K+w_&IE`rAID4A1=5-*q~AeLlk@ql{&*9jC83gTe~DWM4fL+sha literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/gui/microbrewergui.png b/src/main/resources/assets/bbs_mod/textures/gui/microbrewergui.png new file mode 100644 index 0000000000000000000000000000000000000000..b76098d3015de40e07415d690b479988b105593d GIT binary patch literal 1997 zcmbVNe@qi+82(zALlh;NMRWmgWf4i%Uau_&y|i#`uO~REq%_!w7>@RkleSl{S6g+- z>Tq*7gIh*0`@z6}tV@g`%c9#bvCcU%XB4xcYzpH1JE)-OO0U&j;k*eQBE7hD+?b)x7eP&5<@sX|&6FRVi`y;xHlH+>=r2&*Ah3LI<-(8q*B4_G` zD!!zJcgfp(8kS!7H(gylBjm+rzcWPd=x?x}Ad`-dboBkcvfv*qt3B<~aC>Iv!Aj4S zx@_*6wCoLDXo+9F63siN{-UPuPU=7 zHv{gyy!e=*{RfaS^WdqG-nK(?V)x|D;rs7Z|JgP2`AG{oIsGKP$ohpdD`Jp%_RX91 zAD=ABI84r}**Sc_*6EdM}Em{my=zGlYUf!?!RA%RkY1{t+Q{x zt2KJ=ZpFZYe!1uF%~+i5XbOH()phIbX)Q_zm9RYV#9RU&8_O9kkd~zYLZhV@W@g?_e=A)?k|5x z3_}cz0B+IhrZ@nNN zb@Wbi&-Tb(d1dsiU{+K`R2d;3>I-MP`eG0fDiM?kMU9kg2{@`GUSu1{mSE=TpD z(N>Y6-H$xkMai?@-;gomqgk!-2Y@xSo!+=@$(83L@xQ9Fs>`z?dilX^ElpLjr5C6d zQ>N+eGkuD{X?g0rJd+}{OO8Bk0v}U!T(d-Epyit-*Dv*-NQeKgpu}pU4w$Ro_!rlT BRM7wc literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/gui/micropackgui.png b/src/main/resources/assets/bbs_mod/textures/gui/micropackgui.png new file mode 100644 index 0000000000000000000000000000000000000000..b2211b750571fb9fae827b3dda12b1374ffeaeed GIT binary patch literal 1237 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K58911MRQ8&P5C#Tjh5(-sS0EP%%+1Y1Lqof} zyN?|^_W%EXh~OwW8Un*U1d^tF&INjsu_VYZn8D%MjWiG^$=lt9p@UV{1IXbl@Q5sC zVBk9l!i+m6X1@grvX^-Jy0SmuVc|DoDAT)P0o3E?>EaktaqI1EL$1RHJPv^?H`e}F z-X8mSkOY49nMl$bBY5M6eysf zb3*5Ya1REN@%{6>U`B^055L!Q jz6ti2q~eJey}U6`@aw;#s}mnJf{gWa^>bP0l+XkKcPV?{ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/gui/micropackgui_old.png b/src/main/resources/assets/bbs_mod/textures/gui/micropackgui_old.png new file mode 100644 index 0000000000000000000000000000000000000000..b54a010632f216463ecf509b4aadb09b3d3aaa43 GIT binary patch literal 1161 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G$6&6|H(?D8gCb z5n0T@z_%5I8IucVoB#^4mw5WRvOnP9i>u zX4#vNw;z@;xVS8tvMMe^#@)JXRoR{MyIC1n7z7v`Kz>7GK*e61SooR2OEZ4|^;qSl zB9`gaWfg*l-$oR)>lUPawsChk^0i9#-M+HIvUSs=89wmfFbvapB1ISrIME&V!}MO? zpQV|zR>iNFl62hfDxW`>gNuvT%2%z&3b!OL&q|LCzrQh$5vK)E?^YGQuxSW7b^U$m zbq`I~b2s~B=2KW7^*4JMj z_hUI_d3=*j*&CZ9oeuLD8JHM27!(+Q0gk}{i|E`~vZ=UBR-I|&~NqD&r;SqU`e6jy|mu+)6a}P%)WP7uhF03 zz{IG$+xz($s_mD7(o)R#ImLVS@4vnA^M^ip)osS-H~TX@5QD{g)rZCVd1nN5&Dkt# zy{F@_JzLI4wTNj)`{uS!398v{R`T2M!R_*YirG)*Bu9!_m&qCRE&k8`KoXC09|(cN z@Cz`c$qz%z5(N(z6HCF2*laN;2Y!+w2+JjMgY!0>EXCu1eD<><--OGQ8m zDuNi47M)zVuI$Z~Hx&VI;od{bBfvBU$u|p>{aCjZuado0pk=_(0M7^wemv7p9}Q)g e&p-$?RM#`Ah}iZ``p%gMQtRpJ=d#Wzp$P!#BxUFT literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/beerkeg.png b/src/main/resources/assets/bbs_mod/textures/item/beerkeg.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8a5156ed46cb37346d2b704216ec65c9256c34 GIT binary patch literal 741 zcmV(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;Ye_^wRCwC#o4ZaMK@^5Ro5d(1($e4*6i5*w7F8r#THb*-LE?dUjnru~~m6@9-(VW>i(iC3r+UNiFTy}PMsH%$kFxVk*4m<%>B;!f>bf|ND zsa8h-UxE9GgxANt^6{Sl*a5C17C#@?%GaO(J^&X2#Lvft@;MlQGeP3#e0rl&xTfLsG|7jT~pO)%U~6J!%$-DNWLF(L8uE8b0)6qu5p&0JGpirsSq zDdN|bY1K`J{-{()VKOxG=>j9$FcM&103ICoPY%E+p#qozG`$8qgaR;WdJ!y|o&w2r zf#N?D!I?^(Vj+bJ4bYhyGeD`8+oF3H!CfC%`lDuNZw+zS?PZTs?jaeCPGaacsh;%C}>ell?LP XrW}G5hU!BU00000NkvXXu0mjfq;fc! literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg.png b/src/main/resources/assets/bbs_mod/textures/item/keg.png new file mode 100644 index 0000000000000000000000000000000000000000..bf56bd2700dcd26279b6338e24bdd5eee1a7b37c GIT binary patch literal 1386 zcmV-w1(o`VP)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ=@JU2LRCwCFSxs-;L>PYF8Gr0{n`~%Aqf&aHDzxH4q#{mSD>(Pme}KdhK`Z(P z%AtP%PMrE1%1`K}632dAsDgk7qNK?-S=%!Y2e0k*+T+?V>G-hYo$!@a;YpmMq-qDX|%hxaQOZ`jLSmE=ca|dxqNXt_ZbB|SX z&P~2%bM>MHjW0f4#wPI4WZJU2n*-P2xe2Usuf7UE<4P$#>kERas9b^W25=csiCp;t zV3V>N;c_>CYc&P-#esOkDPkvpZvhc+dhpe70HIe!R89baQv{`#loiL~)^_(i+7iPX z09-AXlRjix6pr~MYn2j^X$FacC567avR=&10Pl0 z*IsqN)T!*cl<+*>Mmz7;foYR<8fFQu>2*=~`7|<>5m@76R0xAB@ z@kt3Y2dtwg0*-ocV1aE7O3>5Z`mOan4t>TJ0E0^{S!fq{#KwM0bod2Y9)&$EDJ>v7%BlQ1xoTV zLjg!B0JO-WSSU6zXMi+l=RiFeWza+98bOeOu)~t43}JgPIy;0s!2cR615EPzXjKUf z-d3|N5g5EN6ONF!FkBBoZ=qfJz-uh3xbHzGGn)cBT4B81dGdPU*3V2f-wQ{hbpdnV zLDHH(o*(X)8Qy2X$fP2oME_8j)y!=LvjV{0ubZEY&bDvh%BS5M{9wCoqG1dWv}grT zXL%X0W(U4JU|C6LOWSk;D2L|WU9nV=y$^uNmj8IjApqj3f7@e2&>aA*_Dz0v)JF%7 zmJHi-d$~7A3D?$r1Gw~lJAlBU1JTKRZ&v`(I!&Mdwn*sDUASN}Ype6JC=Nr~G$l+1 z2?J5!B6xx%;!!*z_xA+T%|QU}0Wm7fm;R>>ZnjhD5W%Uo4gkAv1;DOb1W$a`!o?v+ ze$;mi>!eZ#@U-gQCQSwbd6cY=lt^9z2|(KX5Fjs!ird^-iL80d#O6i~Swa5uxtOfpYjK&BR|4dLM&D0AzdKIFJbX zir`rlwi9n@x-qJf#{`1v~B9k0%iGo_3i(0}aG&G|v>vr~y zYrC7nuHqDB$o!kDRGYVEG5*3Sq@)0V18n6LZP%^Y9Cu((g}lX`mV&zV?)VlG@3*E2 sZnaW%+@9aSBN%VQ4IbsH-30LO0Pn6a?^Sx|aR2}S07*qoM6N<$f>M)q3jhEB literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/spoon.png b/src/main/resources/assets/bbs_mod/textures/item/spoon.png new file mode 100644 index 0000000000000000000000000000000000000000..5f2ed26de572ea32c513e358a3756cefe71fecff GIT binary patch literal 5016 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 y0(Sz;-)XIM4FKQ(_~B_b8cBfw literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/wortkeg.png b/src/main/resources/assets/bbs_mod/textures/item/wortkeg.png new file mode 100644 index 0000000000000000000000000000000000000000..5d714e4e9627a41f64e2d88f8717d8edc515e139 GIT binary patch literal 907 zcmV;619bd}P)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ<5lKWrRCwC#n=xZ=0 zVCkN)Rb`-ATD2i{QriqZM^$j)rn&b0e}3=o-kpyqir8#9b_9F{?trKv z?N0f0l;yZqYe4{SfSU#h-)uL^$65fq1TGpZK4}-q*Gd6A0nQu{pR_aOb7cTd9TK0k zQxgC}Cs+uv{^L{NH{fl4@5{RZO|TE&7P^nGRVvKZ0c@Hy`1^00EMEDd3tLb5o@u54 z8Y?~t+7zEE0dR=Bc31^~k;4E+WdZbneTM<;D-G5FUI7D#0SuG|YXB~XzmbN*02(+0 zgP) zY2Oh-#I?5&tG3=J`JJwAugHcr0EYFh0Yq(&`_m7B@B2m%QJ_Ka`w~8n3NJJ zb*F6YELPQY~LAXkxB$9MMlX0df?3{kp07!WqEq8@m^Y=~q z?WRE+0Mix$nA)VkxJe46l&ejX^&_@b{T>8an<`@)02AGZ&3#2iW{p!5n-sVNu38ZO zS7f~BkhioOw*bI6KW+-9fnzo)1EBK}Fs^7Zv=#gK{l42Nkg};-Dg}NKUq5lxBBj9^ zz#KStMXly7mUB|J!%YD=l?Ix37;=3#0Wi*??CcB>CrSRbxf5!<-X`KYzOHtXr`6=z z++*Mm?j4t311|u79e_;=_`qjyYC|woKKoUqKw|HK1 Date: Sun, 18 Mar 2018 22:26:01 -0400 Subject: [PATCH 02/23] Porting from Idea to 1.12.2 --- .../assets/bbs_mod/blockstates/beer.json | 21 + .../bbs_mod/blockstates/fermentorbucket.json | 43 ++ .../bbs_mod/blockstates/hopadmiral.crop.json | 12 + .../bbs_mod/blockstates/hopahtanum.crop.json | 12 + .../bbs_mod/blockstates/hopamarillo.crop.json | 12 + .../bbs_mod/blockstates/hopaquila.crop.json | 12 + .../bbs_mod/blockstates/hoparamis.crop.json | 12 + .../bbs_mod/blockstates/hopaurora.crop.json | 12 + .../bbs_mod/blockstates/hopbanner.crop.json | 12 + .../blockstates/hopbcgolding.crop.json | 12 + .../blockstates/hopbittergold.crop.json | 12 + .../bbs_mod/blockstates/hopblanc.crop.json | 12 + .../bbs_mod/blockstates/hopbobek.crop.json | 12 + .../blockstates/hopbramlingcross.crop.json | 12 + .../bbs_mod/blockstates/hopbravo.crop.json | 12 + .../hopbrewersgoldgermany.crop.json | 12 + .../blockstates/hopbrewersgoldusa.crop.json | 12 + .../bbs_mod/blockstates/hopbullion.crop.json | 12 + .../bbs_mod/blockstates/hopcascade.crop.json | 12 + .../bbs_mod/blockstates/hopceleia.crop.json | 12 + .../blockstates/hopcentennial.crop.json | 12 + .../blockstates/hopchallenger.crop.json | 12 + .../bbs_mod/blockstates/hopchelan.crop.json | 12 + .../bbs_mod/blockstates/hopchinook.crop.json | 12 + .../bbs_mod/blockstates/hopcitra.crop.json | 12 + .../bbs_mod/blockstates/hopcluster.crop.json | 12 + .../bbs_mod/blockstates/hopcolumbus.crop.json | 12 + .../bbs_mod/blockstates/hopcomet.crop.json | 12 + .../bbs_mod/blockstates/hopcrystal.crop.json | 12 + .../bbs_mod/blockstates/hopdrrudi.crop.json | 12 + .../blockstates/hopeastkentgolding.crop.json | 12 + .../bbs_mod/blockstates/hopekuanot.crop.json | 12 + .../bbs_mod/blockstates/hopella.crop.json | 12 + .../bbs_mod/blockstates/hoperoica.crop.json | 12 + .../blockstates/hopfalconersflight.crop.json | 12 + .../blockstates/hopfirstgold.crop.json | 12 + .../bbs_mod/blockstates/hopfuggleuk.crop.json | 12 + .../bbs_mod/blockstates/hopgalaxy.crop.json | 12 + .../bbs_mod/blockstates/hopgalena.crop.json | 12 + .../bbs_mod/blockstates/hopglacier.crop.json | 12 + .../bbs_mod/blockstates/hopgold.crop.json | 12 + .../blockstates/hopgoldinguk.crop.json | 12 + .../blockstates/hopgoldingusa.crop.json | 12 + .../blockstates/hopgreenbullet.crop.json | 12 + .../hophallertaumittelfruh.crop.json | 12 + .../blockstates/hophallertauusa.crop.json | 12 + .../hophbc431experimental.crop.json | 12 + .../hophbc438experimental.crop.json | 12 + .../hophbc472experimental.crop.json | 12 + .../hophbc682experimental.crop.json | 12 + .../bbs_mod/blockstates/hophelga.crop.json | 12 + .../bbs_mod/blockstates/hopherald.crop.json | 12 + .../bbs_mod/blockstates/hopherkules.crop.json | 12 + .../blockstates/hophersbrucker.crop.json | 12 + .../bbs_mod/blockstates/hophorizon.crop.json | 12 + .../blockstates/hophuellmelon.crop.json | 12 + .../blockstates/hophullerbitterer.crop.json | 12 + .../bbs_mod/blockstates/hopkohatu.crop.json | 12 + .../bbs_mod/blockstates/hopliberty.crop.json | 12 + .../bbs_mod/blockstates/hoploral.crop.json | 12 + .../bbs_mod/blockstates/hoplubelska.crop.json | 12 + .../bbs_mod/blockstates/hopmagnum.crop.json | 12 + .../blockstates/hopmandarinabavaria.crop.json | 12 + .../bbs_mod/blockstates/hopmerkur.crop.json | 12 + .../blockstates/hopmillenium.crop.json | 12 + .../bbs_mod/blockstates/hopmosaic.crop.json | 12 + .../bbs_mod/blockstates/hopmotueka.crop.json | 12 + .../blockstates/hopmounthood.crop.json | 12 + .../blockstates/hopmountrainier.crop.json | 12 + .../blockstates/hopnelsonsauvin.crop.json | 12 + .../bbs_mod/blockstates/hopnewport.crop.json | 12 + .../blockstates/hopnorthdown.crop.json | 12 + .../blockstates/hopnorthernbrewer.crop.json | 12 + .../bbs_mod/blockstates/hopnugget.crop.json | 12 + .../bbs_mod/blockstates/hopolympic.crop.json | 12 + .../bbs_mod/blockstates/hopomega.crop.json | 12 + .../bbs_mod/blockstates/hopopal.crop.json | 12 + .../bbs_mod/blockstates/hoporion.crop.json | 12 + .../bbs_mod/blockstates/hoppacifica.crop.json | 12 + .../blockstates/hoppacificgem.crop.json | 12 + .../blockstates/hoppacificjade.crop.json | 12 + .../bbs_mod/blockstates/hoppalisade.crop.json | 12 + .../blockstates/hopperlegermany.crop.json | 12 + .../bbs_mod/blockstates/hopperleusa.crop.json | 12 + .../bbs_mod/blockstates/hopphoenix.crop.json | 12 + .../bbs_mod/blockstates/hoppilgrim.crop.json | 12 + .../bbs_mod/blockstates/hoppioneer.crop.json | 12 + .../bbs_mod/blockstates/hoppolaris.crop.json | 12 + .../bbs_mod/blockstates/hoppremiant.crop.json | 12 + .../blockstates/hopprideofringwood.crop.json | 12 + .../bbs_mod/blockstates/hopprogress.crop.json | 12 + .../bbs_mod/blockstates/hoprakau.crop.json | 12 + .../bbs_mod/blockstates/hoprecord.crop.json | 12 + .../bbs_mod/blockstates/hopriwaka.crop.json | 12 + .../bbs_mod/blockstates/hopsaaz.crop.json | 12 + .../bbs_mod/blockstates/hopsantiam.crop.json | 12 + .../bbs_mod/blockstates/hopsaphir.crop.json | 12 + .../bbs_mod/blockstates/hopsatus.crop.json | 12 + .../blockstates/hopsavinjskigolding.crop.json | 12 + .../bbs_mod/blockstates/hopselect.crop.json | 12 + .../bbs_mod/blockstates/hopsimcoe.crop.json | 12 + .../bbs_mod/blockstates/hopsmaragd.crop.json | 12 + .../blockstates/hopsorachiace.crop.json | 12 + .../blockstates/hopsoutherncross.crop.json | 12 + .../blockstates/hopsovereign.crop.json | 12 + .../bbs_mod/blockstates/hopspalt.crop.json | 12 + .../bbs_mod/blockstates/hopsterling.crop.json | 12 + .../blockstates/hopsticklebract.crop.json | 12 + .../blockstates/hopstrisselspalt.crop.json | 12 + .../blockstates/hopstyriangolding.crop.json | 12 + .../bbs_mod/blockstates/hopsummer.crop.json | 12 + .../bbs_mod/blockstates/hopsummit.crop.json | 12 + .../blockstates/hopsuperalpha.crop.json | 12 + .../blockstates/hopsuperpride.crop.json | 12 + .../bbs_mod/blockstates/hopsussex.crop.json | 12 + .../bbs_mod/blockstates/hopsylva.crop.json | 12 + .../bbs_mod/blockstates/hoptahoma.crop.json | 12 + .../bbs_mod/blockstates/hoptalisman.crop.json | 12 + .../bbs_mod/blockstates/hoptarget.crop.json | 12 + .../hoptettnangergermany.crop.json | 12 + .../blockstates/hoptettnangerusa.crop.json | 12 + .../bbs_mod/blockstates/hoptomahawk.crop.json | 12 + .../blockstates/hoptradition.crop.json | 12 + .../blockstates/hoptriplepearl.crop.json | 12 + .../bbs_mod/blockstates/hoptriskel.crop.json | 12 + .../bbs_mod/blockstates/hopultra.crop.json | 12 + .../bbs_mod/blockstates/hopvanguard.crop.json | 12 + .../bbs_mod/blockstates/hopwaiiti.crop.json | 12 + .../bbs_mod/blockstates/hopwaimea.crop.json | 12 + .../bbs_mod/blockstates/hopwakatu.crop.json | 12 + .../bbs_mod/blockstates/hopwarrior.crop.json | 12 + .../blockstates/hopwhitbreadgolding.crop.json | 12 + .../blockstates/hopwillamette.crop.json | 12 + .../blockstates/hopyakimacluster.crop.json | 12 + .../blockstates/hopyamhillgolding.crop.json | 12 + .../bbs_mod/blockstates/hopyeoman.crop.json | 12 + .../bbs_mod/blockstates/hopzenith.crop.json | 12 + .../bbs_mod/blockstates/hopzeus.crop.json | 12 + .../bbs_mod/blockstates/hopzythos.crop.json | 12 + .../bbs_mod/blockstates/microbrewer.json | 26 + .../assets/bbs_mod/blockstates/micropack.json | 10 + .../bbs_mod/blockstates/modelblock.json | 10 + .../assets/bbs_mod/blockstates/pelleter.json | 43 ++ .../assets/bbs_mod/blockstates/wort.json | 22 + .../assets/bbs_mod/lang/en_us.lang | 595 ++++++++++++++++++ .../bbs_mod/models/block/hops_stage0.json | 6 + .../bbs_mod/models/block/hops_stage1.json | 6 + .../bbs_mod/models/block/hops_stage2.json | 6 + .../bbs_mod/models/block/hops_stage3.json | 6 + .../bbs_mod/models/block/hops_stage4.json | 6 + .../bbs_mod/models/block/hops_stage5.json | 6 + .../bbs_mod/models/block/hops_stage6.json | 6 + .../bbs_mod/models/block/hops_stage7.json | 6 + .../bbs_mod/models/block/microbrewer.json | 204 ++++++ .../models/block/microbrewer_empty.json | 139 ++++ .../bbs_mod/models/block/micropack.json | 74 +++ .../bbs_mod/models/block/modelblock.json | 6 + .../models/item/admiral.crop_stage0.json | 18 + .../models/item/admiral.crop_stage1.json | 18 + .../models/item/admiral.crop_stage2.json | 18 + .../models/item/admiral.crop_stage3.json | 18 + .../models/item/admiral.crop_stage4.json | 18 + .../models/item/admiral.crop_stage5.json | 18 + .../models/item/admiral.crop_stage6.json | 18 + .../models/item/admiral.crop_stage7.json | 18 + .../bbs_mod/models/item/admiral.hop.json | 6 + .../bbs_mod/models/item/admiral.pellet.json | 6 + .../bbs_mod/models/item/admiral.rhizome.json | 6 + .../models/item/ahtanum.crop_stage0.json | 18 + .../models/item/ahtanum.crop_stage1.json | 18 + .../models/item/ahtanum.crop_stage2.json | 18 + .../models/item/ahtanum.crop_stage3.json | 18 + .../models/item/ahtanum.crop_stage4.json | 18 + .../models/item/ahtanum.crop_stage5.json | 18 + .../models/item/ahtanum.crop_stage6.json | 18 + .../models/item/ahtanum.crop_stage7.json | 18 + .../bbs_mod/models/item/ahtanum.hop.json | 6 + .../bbs_mod/models/item/ahtanum.pellet.json | 6 + .../bbs_mod/models/item/ahtanum.rhizome.json | 6 + .../bbs_mod/models/item/aluminiumpot.json | 43 ++ .../models/item/amarillo.crop_stage0.json | 18 + .../models/item/amarillo.crop_stage1.json | 18 + .../models/item/amarillo.crop_stage2.json | 18 + .../models/item/amarillo.crop_stage3.json | 18 + .../models/item/amarillo.crop_stage4.json | 18 + .../models/item/amarillo.crop_stage5.json | 18 + .../models/item/amarillo.crop_stage6.json | 18 + .../models/item/amarillo.crop_stage7.json | 18 + .../bbs_mod/models/item/amarillo.hop.json | 6 + .../bbs_mod/models/item/amarillo.pellet.json | 6 + .../bbs_mod/models/item/amarillo.rhizome.json | 6 + .../models/item/aquila.crop_stage0.json | 18 + .../models/item/aquila.crop_stage1.json | 18 + .../models/item/aquila.crop_stage2.json | 18 + .../models/item/aquila.crop_stage3.json | 18 + .../models/item/aquila.crop_stage4.json | 18 + .../models/item/aquila.crop_stage5.json | 18 + .../models/item/aquila.crop_stage6.json | 18 + .../models/item/aquila.crop_stage7.json | 18 + .../bbs_mod/models/item/aquila.hop.json | 6 + .../bbs_mod/models/item/aquila.pellet.json | 6 + .../bbs_mod/models/item/aquila.rhizome.json | 6 + .../models/item/aramis.crop_stage0.json | 18 + .../models/item/aramis.crop_stage1.json | 18 + .../models/item/aramis.crop_stage2.json | 18 + .../models/item/aramis.crop_stage3.json | 18 + .../models/item/aramis.crop_stage4.json | 18 + .../models/item/aramis.crop_stage5.json | 18 + .../models/item/aramis.crop_stage6.json | 18 + .../models/item/aramis.crop_stage7.json | 18 + .../bbs_mod/models/item/aramis.hop.json | 6 + .../bbs_mod/models/item/aramis.pellet.json | 6 + .../bbs_mod/models/item/aramis.rhizome.json | 6 + .../models/item/aurora.crop_stage0.json | 18 + .../models/item/aurora.crop_stage1.json | 18 + .../models/item/aurora.crop_stage2.json | 18 + .../models/item/aurora.crop_stage3.json | 18 + .../models/item/aurora.crop_stage4.json | 18 + .../models/item/aurora.crop_stage5.json | 18 + .../models/item/aurora.crop_stage6.json | 18 + .../models/item/aurora.crop_stage7.json | 18 + .../bbs_mod/models/item/aurora.hop.json | 6 + .../bbs_mod/models/item/aurora.pellet.json | 6 + .../bbs_mod/models/item/aurora.rhizome.json | 6 + .../models/item/banner.crop_stage0.json | 18 + .../models/item/banner.crop_stage1.json | 18 + .../models/item/banner.crop_stage2.json | 18 + .../models/item/banner.crop_stage3.json | 18 + .../models/item/banner.crop_stage4.json | 18 + .../models/item/banner.crop_stage5.json | 18 + .../models/item/banner.crop_stage6.json | 18 + .../models/item/banner.crop_stage7.json | 18 + .../bbs_mod/models/item/banner.hop.json | 6 + .../bbs_mod/models/item/banner.pellet.json | 6 + .../bbs_mod/models/item/banner.rhizome.json | 6 + .../models/item/bcgolding.crop_stage0.json | 18 + .../models/item/bcgolding.crop_stage1.json | 18 + .../models/item/bcgolding.crop_stage2.json | 18 + .../models/item/bcgolding.crop_stage3.json | 18 + .../models/item/bcgolding.crop_stage4.json | 18 + .../models/item/bcgolding.crop_stage5.json | 18 + .../models/item/bcgolding.crop_stage6.json | 18 + .../models/item/bcgolding.crop_stage7.json | 18 + .../bbs_mod/models/item/bcgolding.hop.json | 6 + .../bbs_mod/models/item/bcgolding.pellet.json | 6 + .../models/item/bcgolding.rhizome.json | 6 + .../bbs_mod/models/item/beerbucket_srm0.json | 18 + .../bbs_mod/models/item/beerbucket_srm1.json | 18 + .../bbs_mod/models/item/beerbucket_srm10.json | 18 + .../bbs_mod/models/item/beerbucket_srm2.json | 18 + .../bbs_mod/models/item/beerbucket_srm3.json | 18 + .../bbs_mod/models/item/beerbucket_srm4.json | 18 + .../bbs_mod/models/item/beerbucket_srm5.json | 18 + .../bbs_mod/models/item/beerbucket_srm6.json | 18 + .../bbs_mod/models/item/beerbucket_srm7.json | 18 + .../bbs_mod/models/item/beerbucket_srm8.json | 18 + .../bbs_mod/models/item/beerbucket_srm9.json | 18 + .../assets/bbs_mod/models/item/beerkeg.json | 6 + .../models/item/bittergold.crop_stage0.json | 18 + .../models/item/bittergold.crop_stage1.json | 18 + .../models/item/bittergold.crop_stage2.json | 18 + .../models/item/bittergold.crop_stage3.json | 18 + .../models/item/bittergold.crop_stage4.json | 18 + .../models/item/bittergold.crop_stage5.json | 18 + .../models/item/bittergold.crop_stage6.json | 18 + .../models/item/bittergold.crop_stage7.json | 18 + .../bbs_mod/models/item/bittergold.hop.json | 6 + .../models/item/bittergold.pellet.json | 6 + .../models/item/bittergold.rhizome.json | 6 + .../models/item/blanc.crop_stage0.json | 18 + .../models/item/blanc.crop_stage1.json | 18 + .../models/item/blanc.crop_stage2.json | 18 + .../models/item/blanc.crop_stage3.json | 18 + .../models/item/blanc.crop_stage4.json | 18 + .../models/item/blanc.crop_stage5.json | 18 + .../models/item/blanc.crop_stage6.json | 18 + .../models/item/blanc.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/blanc.hop.json | 6 + .../bbs_mod/models/item/blanc.pellet.json | 6 + .../bbs_mod/models/item/blanc.rhizome.json | 6 + .../models/item/bobek.crop_stage0.json | 18 + .../models/item/bobek.crop_stage1.json | 18 + .../models/item/bobek.crop_stage2.json | 18 + .../models/item/bobek.crop_stage3.json | 18 + .../models/item/bobek.crop_stage4.json | 18 + .../models/item/bobek.crop_stage5.json | 18 + .../models/item/bobek.crop_stage6.json | 18 + .../models/item/bobek.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/bobek.hop.json | 6 + .../bbs_mod/models/item/bobek.pellet.json | 6 + .../bbs_mod/models/item/bobek.rhizome.json | 6 + .../item/bramlingcross.crop_stage0.json | 18 + .../item/bramlingcross.crop_stage1.json | 18 + .../item/bramlingcross.crop_stage2.json | 18 + .../item/bramlingcross.crop_stage3.json | 18 + .../item/bramlingcross.crop_stage4.json | 18 + .../item/bramlingcross.crop_stage5.json | 18 + .../item/bramlingcross.crop_stage6.json | 18 + .../item/bramlingcross.crop_stage7.json | 18 + .../models/item/bramlingcross.hop.json | 6 + .../models/item/bramlingcross.pellet.json | 6 + .../models/item/bramlingcross.rhizome.json | 6 + .../models/item/bravo.crop_stage0.json | 18 + .../models/item/bravo.crop_stage1.json | 18 + .../models/item/bravo.crop_stage2.json | 18 + .../models/item/bravo.crop_stage3.json | 18 + .../models/item/bravo.crop_stage4.json | 18 + .../models/item/bravo.crop_stage5.json | 18 + .../models/item/bravo.crop_stage6.json | 18 + .../models/item/bravo.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/bravo.hop.json | 6 + .../bbs_mod/models/item/bravo.pellet.json | 6 + .../bbs_mod/models/item/bravo.rhizome.json | 6 + .../item/brewersgoldgermany.crop_stage0.json | 18 + .../item/brewersgoldgermany.crop_stage1.json | 18 + .../item/brewersgoldgermany.crop_stage2.json | 18 + .../item/brewersgoldgermany.crop_stage3.json | 18 + .../item/brewersgoldgermany.crop_stage4.json | 18 + .../item/brewersgoldgermany.crop_stage5.json | 18 + .../item/brewersgoldgermany.crop_stage6.json | 18 + .../item/brewersgoldgermany.crop_stage7.json | 18 + .../models/item/brewersgoldgermany.hop.json | 6 + .../item/brewersgoldgermany.pellet.json | 6 + .../item/brewersgoldgermany.rhizome.json | 6 + .../item/brewersgoldusa.crop_stage0.json | 18 + .../item/brewersgoldusa.crop_stage1.json | 18 + .../item/brewersgoldusa.crop_stage2.json | 18 + .../item/brewersgoldusa.crop_stage3.json | 18 + .../item/brewersgoldusa.crop_stage4.json | 18 + .../item/brewersgoldusa.crop_stage5.json | 18 + .../item/brewersgoldusa.crop_stage6.json | 18 + .../item/brewersgoldusa.crop_stage7.json | 18 + .../models/item/brewersgoldusa.hop.json | 6 + .../models/item/brewersgoldusa.pellet.json | 6 + .../models/item/brewersgoldusa.rhizome.json | 6 + .../models/item/bullion.crop_stage0.json | 18 + .../models/item/bullion.crop_stage1.json | 18 + .../models/item/bullion.crop_stage2.json | 18 + .../models/item/bullion.crop_stage3.json | 18 + .../models/item/bullion.crop_stage4.json | 18 + .../models/item/bullion.crop_stage5.json | 18 + .../models/item/bullion.crop_stage6.json | 18 + .../models/item/bullion.crop_stage7.json | 18 + .../bbs_mod/models/item/bullion.hop.json | 6 + .../bbs_mod/models/item/bullion.pellet.json | 6 + .../bbs_mod/models/item/bullion.rhizome.json | 6 + .../models/item/cascade.crop_stage0.json | 18 + .../models/item/cascade.crop_stage1.json | 18 + .../models/item/cascade.crop_stage2.json | 18 + .../models/item/cascade.crop_stage3.json | 18 + .../models/item/cascade.crop_stage4.json | 18 + .../models/item/cascade.crop_stage5.json | 18 + .../models/item/cascade.crop_stage6.json | 18 + .../models/item/cascade.crop_stage7.json | 18 + .../bbs_mod/models/item/cascade.hop.json | 6 + .../bbs_mod/models/item/cascade.pellet.json | 6 + .../bbs_mod/models/item/cascade.rhizome.json | 6 + .../models/item/celeia.crop_stage0.json | 18 + .../models/item/celeia.crop_stage1.json | 18 + .../models/item/celeia.crop_stage2.json | 18 + .../models/item/celeia.crop_stage3.json | 18 + .../models/item/celeia.crop_stage4.json | 18 + .../models/item/celeia.crop_stage5.json | 18 + .../models/item/celeia.crop_stage6.json | 18 + .../models/item/celeia.crop_stage7.json | 18 + .../bbs_mod/models/item/celeia.hop.json | 6 + .../bbs_mod/models/item/celeia.pellet.json | 6 + .../bbs_mod/models/item/celeia.rhizome.json | 6 + .../models/item/centennial.crop_stage0.json | 18 + .../models/item/centennial.crop_stage1.json | 18 + .../models/item/centennial.crop_stage2.json | 18 + .../models/item/centennial.crop_stage3.json | 18 + .../models/item/centennial.crop_stage4.json | 18 + .../models/item/centennial.crop_stage5.json | 18 + .../models/item/centennial.crop_stage6.json | 18 + .../models/item/centennial.crop_stage7.json | 18 + .../bbs_mod/models/item/centennial.hop.json | 6 + .../models/item/centennial.pellet.json | 6 + .../models/item/centennial.rhizome.json | 6 + .../models/item/challenger.crop_stage0.json | 18 + .../models/item/challenger.crop_stage1.json | 18 + .../models/item/challenger.crop_stage2.json | 18 + .../models/item/challenger.crop_stage3.json | 18 + .../models/item/challenger.crop_stage4.json | 18 + .../models/item/challenger.crop_stage5.json | 18 + .../models/item/challenger.crop_stage6.json | 18 + .../models/item/challenger.crop_stage7.json | 18 + .../bbs_mod/models/item/challenger.hop.json | 6 + .../models/item/challenger.pellet.json | 6 + .../models/item/challenger.rhizome.json | 6 + .../models/item/chelan.crop_stage0.json | 18 + .../models/item/chelan.crop_stage1.json | 18 + .../models/item/chelan.crop_stage2.json | 18 + .../models/item/chelan.crop_stage3.json | 18 + .../models/item/chelan.crop_stage4.json | 18 + .../models/item/chelan.crop_stage5.json | 18 + .../models/item/chelan.crop_stage6.json | 18 + .../models/item/chelan.crop_stage7.json | 18 + .../bbs_mod/models/item/chelan.hop.json | 6 + .../bbs_mod/models/item/chelan.pellet.json | 6 + .../bbs_mod/models/item/chelan.rhizome.json | 6 + .../models/item/chinook.crop_stage0.json | 18 + .../models/item/chinook.crop_stage1.json | 18 + .../models/item/chinook.crop_stage2.json | 18 + .../models/item/chinook.crop_stage3.json | 18 + .../models/item/chinook.crop_stage4.json | 18 + .../models/item/chinook.crop_stage5.json | 18 + .../models/item/chinook.crop_stage6.json | 18 + .../models/item/chinook.crop_stage7.json | 18 + .../bbs_mod/models/item/chinook.hop.json | 6 + .../bbs_mod/models/item/chinook.pellet.json | 6 + .../bbs_mod/models/item/chinook.rhizome.json | 6 + .../models/item/citra.crop_stage0.json | 18 + .../models/item/citra.crop_stage1.json | 18 + .../models/item/citra.crop_stage2.json | 18 + .../models/item/citra.crop_stage3.json | 18 + .../models/item/citra.crop_stage4.json | 18 + .../models/item/citra.crop_stage5.json | 18 + .../models/item/citra.crop_stage6.json | 18 + .../models/item/citra.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/citra.hop.json | 6 + .../bbs_mod/models/item/citra.pellet.json | 6 + .../bbs_mod/models/item/citra.rhizome.json | 6 + .../models/item/cluster.crop_stage0.json | 18 + .../models/item/cluster.crop_stage1.json | 18 + .../models/item/cluster.crop_stage2.json | 18 + .../models/item/cluster.crop_stage3.json | 18 + .../models/item/cluster.crop_stage4.json | 18 + .../models/item/cluster.crop_stage5.json | 18 + .../models/item/cluster.crop_stage6.json | 18 + .../models/item/cluster.crop_stage7.json | 18 + .../bbs_mod/models/item/cluster.hop.json | 6 + .../bbs_mod/models/item/cluster.pellet.json | 6 + .../bbs_mod/models/item/cluster.rhizome.json | 6 + .../models/item/columbus.crop_stage0.json | 18 + .../models/item/columbus.crop_stage1.json | 18 + .../models/item/columbus.crop_stage2.json | 18 + .../models/item/columbus.crop_stage3.json | 18 + .../models/item/columbus.crop_stage4.json | 18 + .../models/item/columbus.crop_stage5.json | 18 + .../models/item/columbus.crop_stage6.json | 18 + .../models/item/columbus.crop_stage7.json | 18 + .../bbs_mod/models/item/columbus.hop.json | 6 + .../bbs_mod/models/item/columbus.pellet.json | 6 + .../bbs_mod/models/item/columbus.rhizome.json | 6 + .../models/item/comet.crop_stage0.json | 18 + .../models/item/comet.crop_stage1.json | 18 + .../models/item/comet.crop_stage2.json | 18 + .../models/item/comet.crop_stage3.json | 18 + .../models/item/comet.crop_stage4.json | 18 + .../models/item/comet.crop_stage5.json | 18 + .../models/item/comet.crop_stage6.json | 18 + .../models/item/comet.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/comet.hop.json | 6 + .../bbs_mod/models/item/comet.pellet.json | 6 + .../bbs_mod/models/item/comet.rhizome.json | 6 + .../models/item/crystal.crop_stage0.json | 18 + .../models/item/crystal.crop_stage1.json | 18 + .../models/item/crystal.crop_stage2.json | 18 + .../models/item/crystal.crop_stage3.json | 18 + .../models/item/crystal.crop_stage4.json | 18 + .../models/item/crystal.crop_stage5.json | 18 + .../models/item/crystal.crop_stage6.json | 18 + .../models/item/crystal.crop_stage7.json | 18 + .../bbs_mod/models/item/crystal.hop.json | 6 + .../bbs_mod/models/item/crystal.pellet.json | 6 + .../bbs_mod/models/item/crystal.rhizome.json | 6 + .../models/item/drrudi.crop_stage0.json | 18 + .../models/item/drrudi.crop_stage1.json | 18 + .../models/item/drrudi.crop_stage2.json | 18 + .../models/item/drrudi.crop_stage3.json | 18 + .../models/item/drrudi.crop_stage4.json | 18 + .../models/item/drrudi.crop_stage5.json | 18 + .../models/item/drrudi.crop_stage6.json | 18 + .../models/item/drrudi.crop_stage7.json | 18 + .../bbs_mod/models/item/drrudi.hop.json | 6 + .../bbs_mod/models/item/drrudi.pellet.json | 6 + .../bbs_mod/models/item/drrudi.rhizome.json | 6 + .../item/eastkentgolding.crop_stage0.json | 18 + .../item/eastkentgolding.crop_stage1.json | 18 + .../item/eastkentgolding.crop_stage2.json | 18 + .../item/eastkentgolding.crop_stage3.json | 18 + .../item/eastkentgolding.crop_stage4.json | 18 + .../item/eastkentgolding.crop_stage5.json | 18 + .../item/eastkentgolding.crop_stage6.json | 18 + .../item/eastkentgolding.crop_stage7.json | 18 + .../models/item/eastkentgolding.hop.json | 6 + .../models/item/eastkentgolding.pellet.json | 6 + .../models/item/eastkentgolding.rhizome.json | 6 + .../models/item/ekuanot.crop_stage0.json | 18 + .../models/item/ekuanot.crop_stage1.json | 18 + .../models/item/ekuanot.crop_stage2.json | 18 + .../models/item/ekuanot.crop_stage3.json | 18 + .../models/item/ekuanot.crop_stage4.json | 18 + .../models/item/ekuanot.crop_stage5.json | 18 + .../models/item/ekuanot.crop_stage6.json | 18 + .../models/item/ekuanot.crop_stage7.json | 18 + .../bbs_mod/models/item/ekuanot.hop.json | 6 + .../bbs_mod/models/item/ekuanot.pellet.json | 6 + .../bbs_mod/models/item/ekuanot.rhizome.json | 6 + .../bbs_mod/models/item/ella.crop_stage0.json | 18 + .../bbs_mod/models/item/ella.crop_stage1.json | 18 + .../bbs_mod/models/item/ella.crop_stage2.json | 18 + .../bbs_mod/models/item/ella.crop_stage3.json | 18 + .../bbs_mod/models/item/ella.crop_stage4.json | 18 + .../bbs_mod/models/item/ella.crop_stage5.json | 18 + .../bbs_mod/models/item/ella.crop_stage6.json | 18 + .../bbs_mod/models/item/ella.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/ella.hop.json | 6 + .../bbs_mod/models/item/ella.pellet.json | 6 + .../bbs_mod/models/item/ella.rhizome.json | 6 + .../models/item/eroica.crop_stage0.json | 18 + .../models/item/eroica.crop_stage1.json | 18 + .../models/item/eroica.crop_stage2.json | 18 + .../models/item/eroica.crop_stage3.json | 18 + .../models/item/eroica.crop_stage4.json | 18 + .../models/item/eroica.crop_stage5.json | 18 + .../models/item/eroica.crop_stage6.json | 18 + .../models/item/eroica.crop_stage7.json | 18 + .../bbs_mod/models/item/eroica.hop.json | 6 + .../bbs_mod/models/item/eroica.pellet.json | 6 + .../bbs_mod/models/item/eroica.rhizome.json | 6 + .../item/falconersflight.crop_stage0.json | 18 + .../item/falconersflight.crop_stage1.json | 18 + .../item/falconersflight.crop_stage2.json | 18 + .../item/falconersflight.crop_stage3.json | 18 + .../item/falconersflight.crop_stage4.json | 18 + .../item/falconersflight.crop_stage5.json | 18 + .../item/falconersflight.crop_stage6.json | 18 + .../item/falconersflight.crop_stage7.json | 18 + .../models/item/falconersflight.hop.json | 6 + .../models/item/falconersflight.pellet.json | 6 + .../models/item/falconersflight.rhizome.json | 6 + .../models/item/firstgold.crop_stage0.json | 18 + .../models/item/firstgold.crop_stage1.json | 18 + .../models/item/firstgold.crop_stage2.json | 18 + .../models/item/firstgold.crop_stage3.json | 18 + .../models/item/firstgold.crop_stage4.json | 18 + .../models/item/firstgold.crop_stage5.json | 18 + .../models/item/firstgold.crop_stage6.json | 18 + .../models/item/firstgold.crop_stage7.json | 18 + .../bbs_mod/models/item/firstgold.hop.json | 6 + .../bbs_mod/models/item/firstgold.pellet.json | 6 + .../models/item/firstgold.rhizome.json | 6 + .../models/item/fuggleuk.crop_stage0.json | 18 + .../models/item/fuggleuk.crop_stage1.json | 18 + .../models/item/fuggleuk.crop_stage2.json | 18 + .../models/item/fuggleuk.crop_stage3.json | 18 + .../models/item/fuggleuk.crop_stage4.json | 18 + .../models/item/fuggleuk.crop_stage5.json | 18 + .../models/item/fuggleuk.crop_stage6.json | 18 + .../models/item/fuggleuk.crop_stage7.json | 18 + .../bbs_mod/models/item/fuggleuk.hop.json | 6 + .../bbs_mod/models/item/fuggleuk.pellet.json | 6 + .../bbs_mod/models/item/fuggleuk.rhizome.json | 6 + .../models/item/galaxy.crop_stage0.json | 18 + .../models/item/galaxy.crop_stage1.json | 18 + .../models/item/galaxy.crop_stage2.json | 18 + .../models/item/galaxy.crop_stage3.json | 18 + .../models/item/galaxy.crop_stage4.json | 18 + .../models/item/galaxy.crop_stage5.json | 18 + .../models/item/galaxy.crop_stage6.json | 18 + .../models/item/galaxy.crop_stage7.json | 18 + .../bbs_mod/models/item/galaxy.hop.json | 6 + .../bbs_mod/models/item/galaxy.pellet.json | 6 + .../bbs_mod/models/item/galaxy.rhizome.json | 6 + .../models/item/galena.crop_stage0.json | 18 + .../models/item/galena.crop_stage1.json | 18 + .../models/item/galena.crop_stage2.json | 18 + .../models/item/galena.crop_stage3.json | 18 + .../models/item/galena.crop_stage4.json | 18 + .../models/item/galena.crop_stage5.json | 18 + .../models/item/galena.crop_stage6.json | 18 + .../models/item/galena.crop_stage7.json | 18 + .../bbs_mod/models/item/galena.hop.json | 6 + .../bbs_mod/models/item/galena.pellet.json | 6 + .../bbs_mod/models/item/galena.rhizome.json | 6 + .../models/item/glacier.crop_stage0.json | 18 + .../models/item/glacier.crop_stage1.json | 18 + .../models/item/glacier.crop_stage2.json | 18 + .../models/item/glacier.crop_stage3.json | 18 + .../models/item/glacier.crop_stage4.json | 18 + .../models/item/glacier.crop_stage5.json | 18 + .../models/item/glacier.crop_stage6.json | 18 + .../models/item/glacier.crop_stage7.json | 18 + .../bbs_mod/models/item/glacier.hop.json | 6 + .../bbs_mod/models/item/glacier.pellet.json | 6 + .../bbs_mod/models/item/glacier.rhizome.json | 6 + .../bbs_mod/models/item/gold.crop_stage0.json | 18 + .../bbs_mod/models/item/gold.crop_stage1.json | 18 + .../bbs_mod/models/item/gold.crop_stage2.json | 18 + .../bbs_mod/models/item/gold.crop_stage3.json | 18 + .../bbs_mod/models/item/gold.crop_stage4.json | 18 + .../bbs_mod/models/item/gold.crop_stage5.json | 18 + .../bbs_mod/models/item/gold.crop_stage6.json | 18 + .../bbs_mod/models/item/gold.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/gold.hop.json | 6 + .../bbs_mod/models/item/gold.pellet.json | 6 + .../bbs_mod/models/item/gold.rhizome.json | 6 + .../models/item/goldinguk.crop_stage0.json | 18 + .../models/item/goldinguk.crop_stage1.json | 18 + .../models/item/goldinguk.crop_stage2.json | 18 + .../models/item/goldinguk.crop_stage3.json | 18 + .../models/item/goldinguk.crop_stage4.json | 18 + .../models/item/goldinguk.crop_stage5.json | 18 + .../models/item/goldinguk.crop_stage6.json | 18 + .../models/item/goldinguk.crop_stage7.json | 18 + .../bbs_mod/models/item/goldinguk.hop.json | 6 + .../bbs_mod/models/item/goldinguk.pellet.json | 6 + .../models/item/goldinguk.rhizome.json | 6 + .../models/item/goldingusa.crop_stage0.json | 18 + .../models/item/goldingusa.crop_stage1.json | 18 + .../models/item/goldingusa.crop_stage2.json | 18 + .../models/item/goldingusa.crop_stage3.json | 18 + .../models/item/goldingusa.crop_stage4.json | 18 + .../models/item/goldingusa.crop_stage5.json | 18 + .../models/item/goldingusa.crop_stage6.json | 18 + .../models/item/goldingusa.crop_stage7.json | 18 + .../bbs_mod/models/item/goldingusa.hop.json | 6 + .../models/item/goldingusa.pellet.json | 6 + .../models/item/goldingusa.rhizome.json | 6 + .../models/item/greenbullet.crop_stage0.json | 18 + .../models/item/greenbullet.crop_stage1.json | 18 + .../models/item/greenbullet.crop_stage2.json | 18 + .../models/item/greenbullet.crop_stage3.json | 18 + .../models/item/greenbullet.crop_stage4.json | 18 + .../models/item/greenbullet.crop_stage5.json | 18 + .../models/item/greenbullet.crop_stage6.json | 18 + .../models/item/greenbullet.crop_stage7.json | 18 + .../bbs_mod/models/item/greenbullet.hop.json | 6 + .../models/item/greenbullet.pellet.json | 6 + .../models/item/greenbullet.rhizome.json | 6 + .../item/hallertaumittelfruh.crop_stage0.json | 18 + .../item/hallertaumittelfruh.crop_stage1.json | 18 + .../item/hallertaumittelfruh.crop_stage2.json | 18 + .../item/hallertaumittelfruh.crop_stage3.json | 18 + .../item/hallertaumittelfruh.crop_stage4.json | 18 + .../item/hallertaumittelfruh.crop_stage5.json | 18 + .../item/hallertaumittelfruh.crop_stage6.json | 18 + .../item/hallertaumittelfruh.crop_stage7.json | 18 + .../models/item/hallertaumittelfruh.hop.json | 6 + .../item/hallertaumittelfruh.pellet.json | 6 + .../item/hallertaumittelfruh.rhizome.json | 6 + .../models/item/hallertauusa.crop_stage0.json | 18 + .../models/item/hallertauusa.crop_stage1.json | 18 + .../models/item/hallertauusa.crop_stage2.json | 18 + .../models/item/hallertauusa.crop_stage3.json | 18 + .../models/item/hallertauusa.crop_stage4.json | 18 + .../models/item/hallertauusa.crop_stage5.json | 18 + .../models/item/hallertauusa.crop_stage6.json | 18 + .../models/item/hallertauusa.crop_stage7.json | 18 + .../bbs_mod/models/item/hallertauusa.hop.json | 6 + .../models/item/hallertauusa.pellet.json | 6 + .../models/item/hallertauusa.rhizome.json | 6 + .../item/hbc431experimental.crop_stage0.json | 18 + .../item/hbc431experimental.crop_stage1.json | 18 + .../item/hbc431experimental.crop_stage2.json | 18 + .../item/hbc431experimental.crop_stage3.json | 18 + .../item/hbc431experimental.crop_stage4.json | 18 + .../item/hbc431experimental.crop_stage5.json | 18 + .../item/hbc431experimental.crop_stage6.json | 18 + .../item/hbc431experimental.crop_stage7.json | 18 + .../models/item/hbc431experimental.hop.json | 6 + .../item/hbc431experimental.pellet.json | 6 + .../item/hbc431experimental.rhizome.json | 6 + .../item/hbc438experimental.crop_stage0.json | 18 + .../item/hbc438experimental.crop_stage1.json | 18 + .../item/hbc438experimental.crop_stage2.json | 18 + .../item/hbc438experimental.crop_stage3.json | 18 + .../item/hbc438experimental.crop_stage4.json | 18 + .../item/hbc438experimental.crop_stage5.json | 18 + .../item/hbc438experimental.crop_stage6.json | 18 + .../item/hbc438experimental.crop_stage7.json | 18 + .../models/item/hbc438experimental.hop.json | 6 + .../item/hbc438experimental.pellet.json | 6 + .../item/hbc438experimental.rhizome.json | 6 + .../item/hbc472experimental.crop_stage0.json | 18 + .../item/hbc472experimental.crop_stage1.json | 18 + .../item/hbc472experimental.crop_stage2.json | 18 + .../item/hbc472experimental.crop_stage3.json | 18 + .../item/hbc472experimental.crop_stage4.json | 18 + .../item/hbc472experimental.crop_stage5.json | 18 + .../item/hbc472experimental.crop_stage6.json | 18 + .../item/hbc472experimental.crop_stage7.json | 18 + .../models/item/hbc472experimental.hop.json | 6 + .../item/hbc472experimental.pellet.json | 6 + .../item/hbc472experimental.rhizome.json | 6 + .../item/hbc682experimental.crop_stage0.json | 18 + .../item/hbc682experimental.crop_stage1.json | 18 + .../item/hbc682experimental.crop_stage2.json | 18 + .../item/hbc682experimental.crop_stage3.json | 18 + .../item/hbc682experimental.crop_stage4.json | 18 + .../item/hbc682experimental.crop_stage5.json | 18 + .../item/hbc682experimental.crop_stage6.json | 18 + .../item/hbc682experimental.crop_stage7.json | 18 + .../models/item/hbc682experimental.hop.json | 6 + .../item/hbc682experimental.pellet.json | 6 + .../item/hbc682experimental.rhizome.json | 6 + .../models/item/helga.crop_stage0.json | 18 + .../models/item/helga.crop_stage1.json | 18 + .../models/item/helga.crop_stage2.json | 18 + .../models/item/helga.crop_stage3.json | 18 + .../models/item/helga.crop_stage4.json | 18 + .../models/item/helga.crop_stage5.json | 18 + .../models/item/helga.crop_stage6.json | 18 + .../models/item/helga.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/helga.hop.json | 6 + .../bbs_mod/models/item/helga.pellet.json | 6 + .../bbs_mod/models/item/helga.rhizome.json | 6 + .../models/item/herald.crop_stage0.json | 18 + .../models/item/herald.crop_stage1.json | 18 + .../models/item/herald.crop_stage2.json | 18 + .../models/item/herald.crop_stage3.json | 18 + .../models/item/herald.crop_stage4.json | 18 + .../models/item/herald.crop_stage5.json | 18 + .../models/item/herald.crop_stage6.json | 18 + .../models/item/herald.crop_stage7.json | 18 + .../bbs_mod/models/item/herald.hop.json | 6 + .../bbs_mod/models/item/herald.pellet.json | 6 + .../bbs_mod/models/item/herald.rhizome.json | 6 + .../models/item/herkules.crop_stage0.json | 18 + .../models/item/herkules.crop_stage1.json | 18 + .../models/item/herkules.crop_stage2.json | 18 + .../models/item/herkules.crop_stage3.json | 18 + .../models/item/herkules.crop_stage4.json | 18 + .../models/item/herkules.crop_stage5.json | 18 + .../models/item/herkules.crop_stage6.json | 18 + .../models/item/herkules.crop_stage7.json | 18 + .../bbs_mod/models/item/herkules.hop.json | 6 + .../bbs_mod/models/item/herkules.pellet.json | 6 + .../bbs_mod/models/item/herkules.rhizome.json | 6 + .../models/item/hersbrucker.crop_stage0.json | 18 + .../models/item/hersbrucker.crop_stage1.json | 18 + .../models/item/hersbrucker.crop_stage2.json | 18 + .../models/item/hersbrucker.crop_stage3.json | 18 + .../models/item/hersbrucker.crop_stage4.json | 18 + .../models/item/hersbrucker.crop_stage5.json | 18 + .../models/item/hersbrucker.crop_stage6.json | 18 + .../models/item/hersbrucker.crop_stage7.json | 18 + .../bbs_mod/models/item/hersbrucker.hop.json | 6 + .../models/item/hersbrucker.pellet.json | 6 + .../models/item/hersbrucker.rhizome.json | 6 + .../models/item/horizon.crop_stage0.json | 18 + .../models/item/horizon.crop_stage1.json | 18 + .../models/item/horizon.crop_stage2.json | 18 + .../models/item/horizon.crop_stage3.json | 18 + .../models/item/horizon.crop_stage4.json | 18 + .../models/item/horizon.crop_stage5.json | 18 + .../models/item/horizon.crop_stage6.json | 18 + .../models/item/horizon.crop_stage7.json | 18 + .../bbs_mod/models/item/horizon.hop.json | 6 + .../bbs_mod/models/item/horizon.pellet.json | 6 + .../bbs_mod/models/item/horizon.rhizome.json | 6 + .../bbs_mod/models/item/hotwortkeg.json | 6 + .../models/item/huellmelon.crop_stage0.json | 18 + .../models/item/huellmelon.crop_stage1.json | 18 + .../models/item/huellmelon.crop_stage2.json | 18 + .../models/item/huellmelon.crop_stage3.json | 18 + .../models/item/huellmelon.crop_stage4.json | 18 + .../models/item/huellmelon.crop_stage5.json | 18 + .../models/item/huellmelon.crop_stage6.json | 18 + .../models/item/huellmelon.crop_stage7.json | 18 + .../bbs_mod/models/item/huellmelon.hop.json | 6 + .../models/item/huellmelon.pellet.json | 6 + .../models/item/huellmelon.rhizome.json | 6 + .../item/hullerbitterer.crop_stage0.json | 18 + .../item/hullerbitterer.crop_stage1.json | 18 + .../item/hullerbitterer.crop_stage2.json | 18 + .../item/hullerbitterer.crop_stage3.json | 18 + .../item/hullerbitterer.crop_stage4.json | 18 + .../item/hullerbitterer.crop_stage5.json | 18 + .../item/hullerbitterer.crop_stage6.json | 18 + .../item/hullerbitterer.crop_stage7.json | 18 + .../models/item/hullerbitterer.hop.json | 6 + .../models/item/hullerbitterer.pellet.json | 6 + .../models/item/hullerbitterer.rhizome.json | 6 + .../assets/bbs_mod/models/item/keg.json | 6 + .../models/item/kohatu.crop_stage0.json | 18 + .../models/item/kohatu.crop_stage1.json | 18 + .../models/item/kohatu.crop_stage2.json | 18 + .../models/item/kohatu.crop_stage3.json | 18 + .../models/item/kohatu.crop_stage4.json | 18 + .../models/item/kohatu.crop_stage5.json | 18 + .../models/item/kohatu.crop_stage6.json | 18 + .../models/item/kohatu.crop_stage7.json | 18 + .../bbs_mod/models/item/kohatu.hop.json | 6 + .../bbs_mod/models/item/kohatu.pellet.json | 6 + .../bbs_mod/models/item/kohatu.rhizome.json | 6 + .../models/item/liberty.crop_stage0.json | 18 + .../models/item/liberty.crop_stage1.json | 18 + .../models/item/liberty.crop_stage2.json | 18 + .../models/item/liberty.crop_stage3.json | 18 + .../models/item/liberty.crop_stage4.json | 18 + .../models/item/liberty.crop_stage5.json | 18 + .../models/item/liberty.crop_stage6.json | 18 + .../models/item/liberty.crop_stage7.json | 18 + .../bbs_mod/models/item/liberty.hop.json | 6 + .../bbs_mod/models/item/liberty.pellet.json | 6 + .../bbs_mod/models/item/liberty.rhizome.json | 6 + .../assets/bbs_mod/models/item/lme.json | 6 + .../assets/bbs_mod/models/item/lme_amber.json | 6 + .../assets/bbs_mod/models/item/lme_dark.json | 6 + .../bbs_mod/models/item/lme_extralight.json | 6 + .../assets/bbs_mod/models/item/lme_light.json | 6 + .../bbs_mod/models/item/lme_munich.json | 6 + .../bbs_mod/models/item/lme_pilsen.json | 6 + .../assets/bbs_mod/models/item/lme_wheat.json | 6 + .../models/item/loral.crop_stage0.json | 18 + .../models/item/loral.crop_stage1.json | 18 + .../models/item/loral.crop_stage2.json | 18 + .../models/item/loral.crop_stage3.json | 18 + .../models/item/loral.crop_stage4.json | 18 + .../models/item/loral.crop_stage5.json | 18 + .../models/item/loral.crop_stage6.json | 18 + .../models/item/loral.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/loral.hop.json | 6 + .../bbs_mod/models/item/loral.pellet.json | 6 + .../bbs_mod/models/item/loral.rhizome.json | 6 + .../models/item/lubelska.crop_stage0.json | 18 + .../models/item/lubelska.crop_stage1.json | 18 + .../models/item/lubelska.crop_stage2.json | 18 + .../models/item/lubelska.crop_stage3.json | 18 + .../models/item/lubelska.crop_stage4.json | 18 + .../models/item/lubelska.crop_stage5.json | 18 + .../models/item/lubelska.crop_stage6.json | 18 + .../models/item/lubelska.crop_stage7.json | 18 + .../bbs_mod/models/item/lubelska.hop.json | 6 + .../bbs_mod/models/item/lubelska.pellet.json | 6 + .../bbs_mod/models/item/lubelska.rhizome.json | 6 + .../models/item/magnum.crop_stage0.json | 18 + .../models/item/magnum.crop_stage1.json | 18 + .../models/item/magnum.crop_stage2.json | 18 + .../models/item/magnum.crop_stage3.json | 18 + .../models/item/magnum.crop_stage4.json | 18 + .../models/item/magnum.crop_stage5.json | 18 + .../models/item/magnum.crop_stage6.json | 18 + .../models/item/magnum.crop_stage7.json | 18 + .../bbs_mod/models/item/magnum.hop.json | 6 + .../bbs_mod/models/item/magnum.pellet.json | 6 + .../bbs_mod/models/item/magnum.rhizome.json | 6 + .../item/mandarinabavaria.crop_stage0.json | 18 + .../item/mandarinabavaria.crop_stage1.json | 18 + .../item/mandarinabavaria.crop_stage2.json | 18 + .../item/mandarinabavaria.crop_stage3.json | 18 + .../item/mandarinabavaria.crop_stage4.json | 18 + .../item/mandarinabavaria.crop_stage5.json | 18 + .../item/mandarinabavaria.crop_stage6.json | 18 + .../item/mandarinabavaria.crop_stage7.json | 18 + .../models/item/mandarinabavaria.hop.json | 6 + .../models/item/mandarinabavaria.pellet.json | 6 + .../models/item/mandarinabavaria.rhizome.json | 6 + .../assets/bbs_mod/models/item/mashkeg.json | 6 + .../models/item/merkur.crop_stage0.json | 18 + .../models/item/merkur.crop_stage1.json | 18 + .../models/item/merkur.crop_stage2.json | 18 + .../models/item/merkur.crop_stage3.json | 18 + .../models/item/merkur.crop_stage4.json | 18 + .../models/item/merkur.crop_stage5.json | 18 + .../models/item/merkur.crop_stage6.json | 18 + .../models/item/merkur.crop_stage7.json | 18 + .../bbs_mod/models/item/merkur.hop.json | 6 + .../bbs_mod/models/item/merkur.pellet.json | 6 + .../bbs_mod/models/item/merkur.rhizome.json | 6 + .../models/item/millenium.crop_stage0.json | 18 + .../models/item/millenium.crop_stage1.json | 18 + .../models/item/millenium.crop_stage2.json | 18 + .../models/item/millenium.crop_stage3.json | 18 + .../models/item/millenium.crop_stage4.json | 18 + .../models/item/millenium.crop_stage5.json | 18 + .../models/item/millenium.crop_stage6.json | 18 + .../models/item/millenium.crop_stage7.json | 18 + .../bbs_mod/models/item/millenium.hop.json | 6 + .../bbs_mod/models/item/millenium.pellet.json | 6 + .../models/item/millenium.rhizome.json | 6 + .../models/item/mosaic.crop_stage0.json | 18 + .../models/item/mosaic.crop_stage1.json | 18 + .../models/item/mosaic.crop_stage2.json | 18 + .../models/item/mosaic.crop_stage3.json | 18 + .../models/item/mosaic.crop_stage4.json | 18 + .../models/item/mosaic.crop_stage5.json | 18 + .../models/item/mosaic.crop_stage6.json | 18 + .../models/item/mosaic.crop_stage7.json | 18 + .../bbs_mod/models/item/mosaic.hop.json | 6 + .../bbs_mod/models/item/mosaic.pellet.json | 6 + .../bbs_mod/models/item/mosaic.rhizome.json | 6 + .../models/item/motueka.crop_stage0.json | 18 + .../models/item/motueka.crop_stage1.json | 18 + .../models/item/motueka.crop_stage2.json | 18 + .../models/item/motueka.crop_stage3.json | 18 + .../models/item/motueka.crop_stage4.json | 18 + .../models/item/motueka.crop_stage5.json | 18 + .../models/item/motueka.crop_stage6.json | 18 + .../models/item/motueka.crop_stage7.json | 18 + .../bbs_mod/models/item/motueka.hop.json | 6 + .../bbs_mod/models/item/motueka.pellet.json | 6 + .../bbs_mod/models/item/motueka.rhizome.json | 6 + .../models/item/mounthood.crop_stage0.json | 18 + .../models/item/mounthood.crop_stage1.json | 18 + .../models/item/mounthood.crop_stage2.json | 18 + .../models/item/mounthood.crop_stage3.json | 18 + .../models/item/mounthood.crop_stage4.json | 18 + .../models/item/mounthood.crop_stage5.json | 18 + .../models/item/mounthood.crop_stage6.json | 18 + .../models/item/mounthood.crop_stage7.json | 18 + .../bbs_mod/models/item/mounthood.hop.json | 6 + .../bbs_mod/models/item/mounthood.pellet.json | 6 + .../models/item/mounthood.rhizome.json | 6 + .../models/item/mountrainier.crop_stage0.json | 18 + .../models/item/mountrainier.crop_stage1.json | 18 + .../models/item/mountrainier.crop_stage2.json | 18 + .../models/item/mountrainier.crop_stage3.json | 18 + .../models/item/mountrainier.crop_stage4.json | 18 + .../models/item/mountrainier.crop_stage5.json | 18 + .../models/item/mountrainier.crop_stage6.json | 18 + .../models/item/mountrainier.crop_stage7.json | 18 + .../bbs_mod/models/item/mountrainier.hop.json | 6 + .../models/item/mountrainier.pellet.json | 6 + .../models/item/mountrainier.rhizome.json | 6 + .../models/item/nelsonsauvin.crop_stage0.json | 18 + .../models/item/nelsonsauvin.crop_stage1.json | 18 + .../models/item/nelsonsauvin.crop_stage2.json | 18 + .../models/item/nelsonsauvin.crop_stage3.json | 18 + .../models/item/nelsonsauvin.crop_stage4.json | 18 + .../models/item/nelsonsauvin.crop_stage5.json | 18 + .../models/item/nelsonsauvin.crop_stage6.json | 18 + .../models/item/nelsonsauvin.crop_stage7.json | 18 + .../bbs_mod/models/item/nelsonsauvin.hop.json | 6 + .../models/item/nelsonsauvin.pellet.json | 6 + .../models/item/nelsonsauvin.rhizome.json | 6 + .../models/item/newport.crop_stage0.json | 18 + .../models/item/newport.crop_stage1.json | 18 + .../models/item/newport.crop_stage2.json | 18 + .../models/item/newport.crop_stage3.json | 18 + .../models/item/newport.crop_stage4.json | 18 + .../models/item/newport.crop_stage5.json | 18 + .../models/item/newport.crop_stage6.json | 18 + .../models/item/newport.crop_stage7.json | 18 + .../bbs_mod/models/item/newport.hop.json | 6 + .../bbs_mod/models/item/newport.pellet.json | 6 + .../bbs_mod/models/item/newport.rhizome.json | 6 + .../models/item/northdown.crop_stage0.json | 18 + .../models/item/northdown.crop_stage1.json | 18 + .../models/item/northdown.crop_stage2.json | 18 + .../models/item/northdown.crop_stage3.json | 18 + .../models/item/northdown.crop_stage4.json | 18 + .../models/item/northdown.crop_stage5.json | 18 + .../models/item/northdown.crop_stage6.json | 18 + .../models/item/northdown.crop_stage7.json | 18 + .../bbs_mod/models/item/northdown.hop.json | 6 + .../bbs_mod/models/item/northdown.pellet.json | 6 + .../models/item/northdown.rhizome.json | 6 + .../item/northernbrewer.crop_stage0.json | 18 + .../item/northernbrewer.crop_stage1.json | 18 + .../item/northernbrewer.crop_stage2.json | 18 + .../item/northernbrewer.crop_stage3.json | 18 + .../item/northernbrewer.crop_stage4.json | 18 + .../item/northernbrewer.crop_stage5.json | 18 + .../item/northernbrewer.crop_stage6.json | 18 + .../item/northernbrewer.crop_stage7.json | 18 + .../models/item/northernbrewer.hop.json | 6 + .../models/item/northernbrewer.pellet.json | 6 + .../models/item/northernbrewer.rhizome.json | 6 + .../models/item/nugget.crop_stage0.json | 18 + .../models/item/nugget.crop_stage1.json | 18 + .../models/item/nugget.crop_stage2.json | 18 + .../models/item/nugget.crop_stage3.json | 18 + .../models/item/nugget.crop_stage4.json | 18 + .../models/item/nugget.crop_stage5.json | 18 + .../models/item/nugget.crop_stage6.json | 18 + .../models/item/nugget.crop_stage7.json | 18 + .../bbs_mod/models/item/nugget.hop.json | 6 + .../bbs_mod/models/item/nugget.pellet.json | 6 + .../bbs_mod/models/item/nugget.rhizome.json | 6 + .../models/item/olympic.crop_stage0.json | 18 + .../models/item/olympic.crop_stage1.json | 18 + .../models/item/olympic.crop_stage2.json | 18 + .../models/item/olympic.crop_stage3.json | 18 + .../models/item/olympic.crop_stage4.json | 18 + .../models/item/olympic.crop_stage5.json | 18 + .../models/item/olympic.crop_stage6.json | 18 + .../models/item/olympic.crop_stage7.json | 18 + .../bbs_mod/models/item/olympic.hop.json | 6 + .../bbs_mod/models/item/olympic.pellet.json | 6 + .../bbs_mod/models/item/olympic.rhizome.json | 6 + .../models/item/omega.crop_stage0.json | 18 + .../models/item/omega.crop_stage1.json | 18 + .../models/item/omega.crop_stage2.json | 18 + .../models/item/omega.crop_stage3.json | 18 + .../models/item/omega.crop_stage4.json | 18 + .../models/item/omega.crop_stage5.json | 18 + .../models/item/omega.crop_stage6.json | 18 + .../models/item/omega.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/omega.hop.json | 6 + .../bbs_mod/models/item/omega.pellet.json | 6 + .../bbs_mod/models/item/omega.rhizome.json | 6 + .../bbs_mod/models/item/opal.crop_stage0.json | 18 + .../bbs_mod/models/item/opal.crop_stage1.json | 18 + .../bbs_mod/models/item/opal.crop_stage2.json | 18 + .../bbs_mod/models/item/opal.crop_stage3.json | 18 + .../bbs_mod/models/item/opal.crop_stage4.json | 18 + .../bbs_mod/models/item/opal.crop_stage5.json | 18 + .../bbs_mod/models/item/opal.crop_stage6.json | 18 + .../bbs_mod/models/item/opal.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/opal.hop.json | 6 + .../bbs_mod/models/item/opal.pellet.json | 6 + .../bbs_mod/models/item/opal.rhizome.json | 6 + .../models/item/orion.crop_stage0.json | 18 + .../models/item/orion.crop_stage1.json | 18 + .../models/item/orion.crop_stage2.json | 18 + .../models/item/orion.crop_stage3.json | 18 + .../models/item/orion.crop_stage4.json | 18 + .../models/item/orion.crop_stage5.json | 18 + .../models/item/orion.crop_stage6.json | 18 + .../models/item/orion.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/orion.hop.json | 6 + .../bbs_mod/models/item/orion.pellet.json | 6 + .../bbs_mod/models/item/orion.rhizome.json | 6 + .../models/item/pacifica.crop_stage0.json | 18 + .../models/item/pacifica.crop_stage1.json | 18 + .../models/item/pacifica.crop_stage2.json | 18 + .../models/item/pacifica.crop_stage3.json | 18 + .../models/item/pacifica.crop_stage4.json | 18 + .../models/item/pacifica.crop_stage5.json | 18 + .../models/item/pacifica.crop_stage6.json | 18 + .../models/item/pacifica.crop_stage7.json | 18 + .../bbs_mod/models/item/pacifica.hop.json | 6 + .../bbs_mod/models/item/pacifica.pellet.json | 6 + .../bbs_mod/models/item/pacifica.rhizome.json | 6 + .../models/item/pacificgem.crop_stage0.json | 18 + .../models/item/pacificgem.crop_stage1.json | 18 + .../models/item/pacificgem.crop_stage2.json | 18 + .../models/item/pacificgem.crop_stage3.json | 18 + .../models/item/pacificgem.crop_stage4.json | 18 + .../models/item/pacificgem.crop_stage5.json | 18 + .../models/item/pacificgem.crop_stage6.json | 18 + .../models/item/pacificgem.crop_stage7.json | 18 + .../bbs_mod/models/item/pacificgem.hop.json | 6 + .../models/item/pacificgem.pellet.json | 6 + .../models/item/pacificgem.rhizome.json | 6 + .../models/item/pacificjade.crop_stage0.json | 18 + .../models/item/pacificjade.crop_stage1.json | 18 + .../models/item/pacificjade.crop_stage2.json | 18 + .../models/item/pacificjade.crop_stage3.json | 18 + .../models/item/pacificjade.crop_stage4.json | 18 + .../models/item/pacificjade.crop_stage5.json | 18 + .../models/item/pacificjade.crop_stage6.json | 18 + .../models/item/pacificjade.crop_stage7.json | 18 + .../bbs_mod/models/item/pacificjade.hop.json | 6 + .../models/item/pacificjade.pellet.json | 6 + .../models/item/pacificjade.rhizome.json | 6 + .../models/item/palisade.crop_stage0.json | 18 + .../models/item/palisade.crop_stage1.json | 18 + .../models/item/palisade.crop_stage2.json | 18 + .../models/item/palisade.crop_stage3.json | 18 + .../models/item/palisade.crop_stage4.json | 18 + .../models/item/palisade.crop_stage5.json | 18 + .../models/item/palisade.crop_stage6.json | 18 + .../models/item/palisade.crop_stage7.json | 18 + .../bbs_mod/models/item/palisade.hop.json | 6 + .../bbs_mod/models/item/palisade.pellet.json | 6 + .../bbs_mod/models/item/palisade.rhizome.json | 6 + .../models/item/perlegermany.crop_stage0.json | 18 + .../models/item/perlegermany.crop_stage1.json | 18 + .../models/item/perlegermany.crop_stage2.json | 18 + .../models/item/perlegermany.crop_stage3.json | 18 + .../models/item/perlegermany.crop_stage4.json | 18 + .../models/item/perlegermany.crop_stage5.json | 18 + .../models/item/perlegermany.crop_stage6.json | 18 + .../models/item/perlegermany.crop_stage7.json | 18 + .../bbs_mod/models/item/perlegermany.hop.json | 6 + .../models/item/perlegermany.pellet.json | 6 + .../models/item/perlegermany.rhizome.json | 6 + .../models/item/perleusa.crop_stage0.json | 18 + .../models/item/perleusa.crop_stage1.json | 18 + .../models/item/perleusa.crop_stage2.json | 18 + .../models/item/perleusa.crop_stage3.json | 18 + .../models/item/perleusa.crop_stage4.json | 18 + .../models/item/perleusa.crop_stage5.json | 18 + .../models/item/perleusa.crop_stage6.json | 18 + .../models/item/perleusa.crop_stage7.json | 18 + .../bbs_mod/models/item/perleusa.hop.json | 6 + .../bbs_mod/models/item/perleusa.pellet.json | 6 + .../bbs_mod/models/item/perleusa.rhizome.json | 6 + .../models/item/phoenix.crop_stage0.json | 18 + .../models/item/phoenix.crop_stage1.json | 18 + .../models/item/phoenix.crop_stage2.json | 18 + .../models/item/phoenix.crop_stage3.json | 18 + .../models/item/phoenix.crop_stage4.json | 18 + .../models/item/phoenix.crop_stage5.json | 18 + .../models/item/phoenix.crop_stage6.json | 18 + .../models/item/phoenix.crop_stage7.json | 18 + .../bbs_mod/models/item/phoenix.hop.json | 6 + .../bbs_mod/models/item/phoenix.pellet.json | 6 + .../bbs_mod/models/item/phoenix.rhizome.json | 6 + .../models/item/pilgrim.crop_stage0.json | 18 + .../models/item/pilgrim.crop_stage1.json | 18 + .../models/item/pilgrim.crop_stage2.json | 18 + .../models/item/pilgrim.crop_stage3.json | 18 + .../models/item/pilgrim.crop_stage4.json | 18 + .../models/item/pilgrim.crop_stage5.json | 18 + .../models/item/pilgrim.crop_stage6.json | 18 + .../models/item/pilgrim.crop_stage7.json | 18 + .../bbs_mod/models/item/pilgrim.hop.json | 6 + .../bbs_mod/models/item/pilgrim.pellet.json | 6 + .../bbs_mod/models/item/pilgrim.rhizome.json | 6 + .../models/item/pioneer.crop_stage0.json | 18 + .../models/item/pioneer.crop_stage1.json | 18 + .../models/item/pioneer.crop_stage2.json | 18 + .../models/item/pioneer.crop_stage3.json | 18 + .../models/item/pioneer.crop_stage4.json | 18 + .../models/item/pioneer.crop_stage5.json | 18 + .../models/item/pioneer.crop_stage6.json | 18 + .../models/item/pioneer.crop_stage7.json | 18 + .../bbs_mod/models/item/pioneer.hop.json | 6 + .../bbs_mod/models/item/pioneer.pellet.json | 6 + .../bbs_mod/models/item/pioneer.rhizome.json | 6 + .../models/item/polaris.crop_stage0.json | 18 + .../models/item/polaris.crop_stage1.json | 18 + .../models/item/polaris.crop_stage2.json | 18 + .../models/item/polaris.crop_stage3.json | 18 + .../models/item/polaris.crop_stage4.json | 18 + .../models/item/polaris.crop_stage5.json | 18 + .../models/item/polaris.crop_stage6.json | 18 + .../models/item/polaris.crop_stage7.json | 18 + .../bbs_mod/models/item/polaris.hop.json | 6 + .../bbs_mod/models/item/polaris.pellet.json | 6 + .../bbs_mod/models/item/polaris.rhizome.json | 6 + .../models/item/premiant.crop_stage0.json | 18 + .../models/item/premiant.crop_stage1.json | 18 + .../models/item/premiant.crop_stage2.json | 18 + .../models/item/premiant.crop_stage3.json | 18 + .../models/item/premiant.crop_stage4.json | 18 + .../models/item/premiant.crop_stage5.json | 18 + .../models/item/premiant.crop_stage6.json | 18 + .../models/item/premiant.crop_stage7.json | 18 + .../bbs_mod/models/item/premiant.hop.json | 6 + .../bbs_mod/models/item/premiant.pellet.json | 6 + .../bbs_mod/models/item/premiant.rhizome.json | 6 + .../item/prideofringwood.crop_stage0.json | 18 + .../item/prideofringwood.crop_stage1.json | 18 + .../item/prideofringwood.crop_stage2.json | 18 + .../item/prideofringwood.crop_stage3.json | 18 + .../item/prideofringwood.crop_stage4.json | 18 + .../item/prideofringwood.crop_stage5.json | 18 + .../item/prideofringwood.crop_stage6.json | 18 + .../item/prideofringwood.crop_stage7.json | 18 + .../models/item/prideofringwood.hop.json | 6 + .../models/item/prideofringwood.pellet.json | 6 + .../models/item/prideofringwood.rhizome.json | 6 + .../bbs_mod/models/item/priming_sugar.json | 6 + .../models/item/progress.crop_stage0.json | 18 + .../models/item/progress.crop_stage1.json | 18 + .../models/item/progress.crop_stage2.json | 18 + .../models/item/progress.crop_stage3.json | 18 + .../models/item/progress.crop_stage4.json | 18 + .../models/item/progress.crop_stage5.json | 18 + .../models/item/progress.crop_stage6.json | 18 + .../models/item/progress.crop_stage7.json | 18 + .../bbs_mod/models/item/progress.hop.json | 6 + .../bbs_mod/models/item/progress.pellet.json | 6 + .../bbs_mod/models/item/progress.rhizome.json | 6 + .../models/item/rakau.crop_stage0.json | 18 + .../models/item/rakau.crop_stage1.json | 18 + .../models/item/rakau.crop_stage2.json | 18 + .../models/item/rakau.crop_stage3.json | 18 + .../models/item/rakau.crop_stage4.json | 18 + .../models/item/rakau.crop_stage5.json | 18 + .../models/item/rakau.crop_stage6.json | 18 + .../models/item/rakau.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/rakau.hop.json | 6 + .../bbs_mod/models/item/rakau.pellet.json | 6 + .../bbs_mod/models/item/rakau.rhizome.json | 6 + .../models/item/record.crop_stage0.json | 18 + .../models/item/record.crop_stage1.json | 18 + .../models/item/record.crop_stage2.json | 18 + .../models/item/record.crop_stage3.json | 18 + .../models/item/record.crop_stage4.json | 18 + .../models/item/record.crop_stage5.json | 18 + .../models/item/record.crop_stage6.json | 18 + .../models/item/record.crop_stage7.json | 18 + .../bbs_mod/models/item/record.hop.json | 6 + .../bbs_mod/models/item/record.pellet.json | 6 + .../bbs_mod/models/item/record.rhizome.json | 6 + .../assets/bbs_mod/models/item/rhizome.json | 6 + .../models/item/riwaka.crop_stage0.json | 18 + .../models/item/riwaka.crop_stage1.json | 18 + .../models/item/riwaka.crop_stage2.json | 18 + .../models/item/riwaka.crop_stage3.json | 18 + .../models/item/riwaka.crop_stage4.json | 18 + .../models/item/riwaka.crop_stage5.json | 18 + .../models/item/riwaka.crop_stage6.json | 18 + .../models/item/riwaka.crop_stage7.json | 18 + .../bbs_mod/models/item/riwaka.hop.json | 6 + .../bbs_mod/models/item/riwaka.pellet.json | 6 + .../bbs_mod/models/item/riwaka.rhizome.json | 6 + .../bbs_mod/models/item/saaz.crop_stage0.json | 18 + .../bbs_mod/models/item/saaz.crop_stage1.json | 18 + .../bbs_mod/models/item/saaz.crop_stage2.json | 18 + .../bbs_mod/models/item/saaz.crop_stage3.json | 18 + .../bbs_mod/models/item/saaz.crop_stage4.json | 18 + .../bbs_mod/models/item/saaz.crop_stage5.json | 18 + .../bbs_mod/models/item/saaz.crop_stage6.json | 18 + .../bbs_mod/models/item/saaz.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/saaz.hop.json | 6 + .../bbs_mod/models/item/saaz.pellet.json | 6 + .../bbs_mod/models/item/saaz.rhizome.json | 6 + .../assets/bbs_mod/models/item/sanitizer.json | 6 + .../models/item/santiam.crop_stage0.json | 18 + .../models/item/santiam.crop_stage1.json | 18 + .../models/item/santiam.crop_stage2.json | 18 + .../models/item/santiam.crop_stage3.json | 18 + .../models/item/santiam.crop_stage4.json | 18 + .../models/item/santiam.crop_stage5.json | 18 + .../models/item/santiam.crop_stage6.json | 18 + .../models/item/santiam.crop_stage7.json | 18 + .../bbs_mod/models/item/santiam.hop.json | 6 + .../bbs_mod/models/item/santiam.pellet.json | 6 + .../bbs_mod/models/item/santiam.rhizome.json | 6 + .../models/item/saphir.crop_stage0.json | 18 + .../models/item/saphir.crop_stage1.json | 18 + .../models/item/saphir.crop_stage2.json | 18 + .../models/item/saphir.crop_stage3.json | 18 + .../models/item/saphir.crop_stage4.json | 18 + .../models/item/saphir.crop_stage5.json | 18 + .../models/item/saphir.crop_stage6.json | 18 + .../models/item/saphir.crop_stage7.json | 18 + .../bbs_mod/models/item/saphir.hop.json | 6 + .../bbs_mod/models/item/saphir.pellet.json | 6 + .../bbs_mod/models/item/saphir.rhizome.json | 6 + .../models/item/satus.crop_stage0.json | 18 + .../models/item/satus.crop_stage1.json | 18 + .../models/item/satus.crop_stage2.json | 18 + .../models/item/satus.crop_stage3.json | 18 + .../models/item/satus.crop_stage4.json | 18 + .../models/item/satus.crop_stage5.json | 18 + .../models/item/satus.crop_stage6.json | 18 + .../models/item/satus.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/satus.hop.json | 6 + .../bbs_mod/models/item/satus.pellet.json | 6 + .../bbs_mod/models/item/satus.rhizome.json | 6 + .../item/savinjskigolding.crop_stage0.json | 18 + .../item/savinjskigolding.crop_stage1.json | 18 + .../item/savinjskigolding.crop_stage2.json | 18 + .../item/savinjskigolding.crop_stage3.json | 18 + .../item/savinjskigolding.crop_stage4.json | 18 + .../item/savinjskigolding.crop_stage5.json | 18 + .../item/savinjskigolding.crop_stage6.json | 18 + .../item/savinjskigolding.crop_stage7.json | 18 + .../models/item/savinjskigolding.hop.json | 6 + .../models/item/savinjskigolding.pellet.json | 6 + .../models/item/savinjskigolding.rhizome.json | 6 + .../models/item/select.crop_stage0.json | 18 + .../models/item/select.crop_stage1.json | 18 + .../models/item/select.crop_stage2.json | 18 + .../models/item/select.crop_stage3.json | 18 + .../models/item/select.crop_stage4.json | 18 + .../models/item/select.crop_stage5.json | 18 + .../models/item/select.crop_stage6.json | 18 + .../models/item/select.crop_stage7.json | 18 + .../bbs_mod/models/item/select.hop.json | 6 + .../bbs_mod/models/item/select.pellet.json | 6 + .../bbs_mod/models/item/select.rhizome.json | 6 + .../models/item/simcoe.crop_stage0.json | 18 + .../models/item/simcoe.crop_stage1.json | 18 + .../models/item/simcoe.crop_stage2.json | 18 + .../models/item/simcoe.crop_stage3.json | 18 + .../models/item/simcoe.crop_stage4.json | 18 + .../models/item/simcoe.crop_stage5.json | 18 + .../models/item/simcoe.crop_stage6.json | 18 + .../models/item/simcoe.crop_stage7.json | 18 + .../bbs_mod/models/item/simcoe.hop.json | 6 + .../bbs_mod/models/item/simcoe.pellet.json | 6 + .../bbs_mod/models/item/simcoe.rhizome.json | 6 + .../models/item/smaragd.crop_stage0.json | 18 + .../models/item/smaragd.crop_stage1.json | 18 + .../models/item/smaragd.crop_stage2.json | 18 + .../models/item/smaragd.crop_stage3.json | 18 + .../models/item/smaragd.crop_stage4.json | 18 + .../models/item/smaragd.crop_stage5.json | 18 + .../models/item/smaragd.crop_stage6.json | 18 + .../models/item/smaragd.crop_stage7.json | 18 + .../bbs_mod/models/item/smaragd.hop.json | 6 + .../bbs_mod/models/item/smaragd.pellet.json | 6 + .../bbs_mod/models/item/smaragd.rhizome.json | 6 + .../models/item/sorachiace.crop_stage0.json | 18 + .../models/item/sorachiace.crop_stage1.json | 18 + .../models/item/sorachiace.crop_stage2.json | 18 + .../models/item/sorachiace.crop_stage3.json | 18 + .../models/item/sorachiace.crop_stage4.json | 18 + .../models/item/sorachiace.crop_stage5.json | 18 + .../models/item/sorachiace.crop_stage6.json | 18 + .../models/item/sorachiace.crop_stage7.json | 18 + .../bbs_mod/models/item/sorachiace.hop.json | 6 + .../models/item/sorachiace.pellet.json | 6 + .../models/item/sorachiace.rhizome.json | 6 + .../item/southerncross.crop_stage0.json | 18 + .../item/southerncross.crop_stage1.json | 18 + .../item/southerncross.crop_stage2.json | 18 + .../item/southerncross.crop_stage3.json | 18 + .../item/southerncross.crop_stage4.json | 18 + .../item/southerncross.crop_stage5.json | 18 + .../item/southerncross.crop_stage6.json | 18 + .../item/southerncross.crop_stage7.json | 18 + .../models/item/southerncross.hop.json | 6 + .../models/item/southerncross.pellet.json | 6 + .../models/item/southerncross.rhizome.json | 6 + .../models/item/sovereign.crop_stage0.json | 18 + .../models/item/sovereign.crop_stage1.json | 18 + .../models/item/sovereign.crop_stage2.json | 18 + .../models/item/sovereign.crop_stage3.json | 18 + .../models/item/sovereign.crop_stage4.json | 18 + .../models/item/sovereign.crop_stage5.json | 18 + .../models/item/sovereign.crop_stage6.json | 18 + .../models/item/sovereign.crop_stage7.json | 18 + .../bbs_mod/models/item/sovereign.hop.json | 6 + .../bbs_mod/models/item/sovereign.pellet.json | 6 + .../models/item/sovereign.rhizome.json | 6 + .../models/item/spalt.crop_stage0.json | 18 + .../models/item/spalt.crop_stage1.json | 18 + .../models/item/spalt.crop_stage2.json | 18 + .../models/item/spalt.crop_stage3.json | 18 + .../models/item/spalt.crop_stage4.json | 18 + .../models/item/spalt.crop_stage5.json | 18 + .../models/item/spalt.crop_stage6.json | 18 + .../models/item/spalt.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/spalt.hop.json | 6 + .../bbs_mod/models/item/spalt.pellet.json | 6 + .../bbs_mod/models/item/spalt.rhizome.json | 6 + .../assets/bbs_mod/models/item/spoon.json | 6 + .../models/item/sterling.crop_stage0.json | 18 + .../models/item/sterling.crop_stage1.json | 18 + .../models/item/sterling.crop_stage2.json | 18 + .../models/item/sterling.crop_stage3.json | 18 + .../models/item/sterling.crop_stage4.json | 18 + .../models/item/sterling.crop_stage5.json | 18 + .../models/item/sterling.crop_stage6.json | 18 + .../models/item/sterling.crop_stage7.json | 18 + .../bbs_mod/models/item/sterling.hop.json | 6 + .../bbs_mod/models/item/sterling.pellet.json | 6 + .../bbs_mod/models/item/sterling.rhizome.json | 6 + .../models/item/sticklebract.crop_stage0.json | 18 + .../models/item/sticklebract.crop_stage1.json | 18 + .../models/item/sticklebract.crop_stage2.json | 18 + .../models/item/sticklebract.crop_stage3.json | 18 + .../models/item/sticklebract.crop_stage4.json | 18 + .../models/item/sticklebract.crop_stage5.json | 18 + .../models/item/sticklebract.crop_stage6.json | 18 + .../models/item/sticklebract.crop_stage7.json | 18 + .../bbs_mod/models/item/sticklebract.hop.json | 6 + .../models/item/sticklebract.pellet.json | 6 + .../models/item/sticklebract.rhizome.json | 6 + .../bbs_mod/models/item/stirringspoon.json | 6 + .../item/strisselspalt.crop_stage0.json | 18 + .../item/strisselspalt.crop_stage1.json | 18 + .../item/strisselspalt.crop_stage2.json | 18 + .../item/strisselspalt.crop_stage3.json | 18 + .../item/strisselspalt.crop_stage4.json | 18 + .../item/strisselspalt.crop_stage5.json | 18 + .../item/strisselspalt.crop_stage6.json | 18 + .../item/strisselspalt.crop_stage7.json | 18 + .../models/item/strisselspalt.hop.json | 6 + .../models/item/strisselspalt.pellet.json | 6 + .../models/item/strisselspalt.rhizome.json | 6 + .../item/styriangolding.crop_stage0.json | 18 + .../item/styriangolding.crop_stage1.json | 18 + .../item/styriangolding.crop_stage2.json | 18 + .../item/styriangolding.crop_stage3.json | 18 + .../item/styriangolding.crop_stage4.json | 18 + .../item/styriangolding.crop_stage5.json | 18 + .../item/styriangolding.crop_stage6.json | 18 + .../item/styriangolding.crop_stage7.json | 18 + .../models/item/styriangolding.hop.json | 6 + .../models/item/styriangolding.pellet.json | 6 + .../models/item/styriangolding.rhizome.json | 6 + .../models/item/summer.crop_stage0.json | 18 + .../models/item/summer.crop_stage1.json | 18 + .../models/item/summer.crop_stage2.json | 18 + .../models/item/summer.crop_stage3.json | 18 + .../models/item/summer.crop_stage4.json | 18 + .../models/item/summer.crop_stage5.json | 18 + .../models/item/summer.crop_stage6.json | 18 + .../models/item/summer.crop_stage7.json | 18 + .../bbs_mod/models/item/summer.hop.json | 6 + .../bbs_mod/models/item/summer.pellet.json | 6 + .../bbs_mod/models/item/summer.rhizome.json | 6 + .../models/item/summit.crop_stage0.json | 18 + .../models/item/summit.crop_stage1.json | 18 + .../models/item/summit.crop_stage2.json | 18 + .../models/item/summit.crop_stage3.json | 18 + .../models/item/summit.crop_stage4.json | 18 + .../models/item/summit.crop_stage5.json | 18 + .../models/item/summit.crop_stage6.json | 18 + .../models/item/summit.crop_stage7.json | 18 + .../bbs_mod/models/item/summit.hop.json | 6 + .../bbs_mod/models/item/summit.pellet.json | 6 + .../bbs_mod/models/item/summit.rhizome.json | 6 + .../models/item/superalpha.crop_stage0.json | 18 + .../models/item/superalpha.crop_stage1.json | 18 + .../models/item/superalpha.crop_stage2.json | 18 + .../models/item/superalpha.crop_stage3.json | 18 + .../models/item/superalpha.crop_stage4.json | 18 + .../models/item/superalpha.crop_stage5.json | 18 + .../models/item/superalpha.crop_stage6.json | 18 + .../models/item/superalpha.crop_stage7.json | 18 + .../bbs_mod/models/item/superalpha.hop.json | 6 + .../models/item/superalpha.pellet.json | 6 + .../models/item/superalpha.rhizome.json | 6 + .../models/item/superpride.crop_stage0.json | 18 + .../models/item/superpride.crop_stage1.json | 18 + .../models/item/superpride.crop_stage2.json | 18 + .../models/item/superpride.crop_stage3.json | 18 + .../models/item/superpride.crop_stage4.json | 18 + .../models/item/superpride.crop_stage5.json | 18 + .../models/item/superpride.crop_stage6.json | 18 + .../models/item/superpride.crop_stage7.json | 18 + .../bbs_mod/models/item/superpride.hop.json | 6 + .../models/item/superpride.pellet.json | 6 + .../models/item/superpride.rhizome.json | 6 + .../models/item/sussex.crop_stage0.json | 18 + .../models/item/sussex.crop_stage1.json | 18 + .../models/item/sussex.crop_stage2.json | 18 + .../models/item/sussex.crop_stage3.json | 18 + .../models/item/sussex.crop_stage4.json | 18 + .../models/item/sussex.crop_stage5.json | 18 + .../models/item/sussex.crop_stage6.json | 18 + .../models/item/sussex.crop_stage7.json | 18 + .../bbs_mod/models/item/sussex.hop.json | 6 + .../bbs_mod/models/item/sussex.pellet.json | 6 + .../bbs_mod/models/item/sussex.rhizome.json | 6 + .../models/item/sylva.crop_stage0.json | 18 + .../models/item/sylva.crop_stage1.json | 18 + .../models/item/sylva.crop_stage2.json | 18 + .../models/item/sylva.crop_stage3.json | 18 + .../models/item/sylva.crop_stage4.json | 18 + .../models/item/sylva.crop_stage5.json | 18 + .../models/item/sylva.crop_stage6.json | 18 + .../models/item/sylva.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/sylva.hop.json | 6 + .../bbs_mod/models/item/sylva.pellet.json | 6 + .../bbs_mod/models/item/sylva.rhizome.json | 6 + .../models/item/tahoma.crop_stage0.json | 18 + .../models/item/tahoma.crop_stage1.json | 18 + .../models/item/tahoma.crop_stage2.json | 18 + .../models/item/tahoma.crop_stage3.json | 18 + .../models/item/tahoma.crop_stage4.json | 18 + .../models/item/tahoma.crop_stage5.json | 18 + .../models/item/tahoma.crop_stage6.json | 18 + .../models/item/tahoma.crop_stage7.json | 18 + .../bbs_mod/models/item/tahoma.hop.json | 6 + .../bbs_mod/models/item/tahoma.pellet.json | 6 + .../bbs_mod/models/item/tahoma.rhizome.json | 6 + .../models/item/talisman.crop_stage0.json | 18 + .../models/item/talisman.crop_stage1.json | 18 + .../models/item/talisman.crop_stage2.json | 18 + .../models/item/talisman.crop_stage3.json | 18 + .../models/item/talisman.crop_stage4.json | 18 + .../models/item/talisman.crop_stage5.json | 18 + .../models/item/talisman.crop_stage6.json | 18 + .../models/item/talisman.crop_stage7.json | 18 + .../bbs_mod/models/item/talisman.hop.json | 6 + .../bbs_mod/models/item/talisman.pellet.json | 6 + .../bbs_mod/models/item/talisman.rhizome.json | 6 + .../models/item/target.crop_stage0.json | 18 + .../models/item/target.crop_stage1.json | 18 + .../models/item/target.crop_stage2.json | 18 + .../models/item/target.crop_stage3.json | 18 + .../models/item/target.crop_stage4.json | 18 + .../models/item/target.crop_stage5.json | 18 + .../models/item/target.crop_stage6.json | 18 + .../models/item/target.crop_stage7.json | 18 + .../bbs_mod/models/item/target.hop.json | 6 + .../bbs_mod/models/item/target.pellet.json | 6 + .../bbs_mod/models/item/target.rhizome.json | 6 + .../item/tettnangergermany.crop_stage0.json | 18 + .../item/tettnangergermany.crop_stage1.json | 18 + .../item/tettnangergermany.crop_stage2.json | 18 + .../item/tettnangergermany.crop_stage3.json | 18 + .../item/tettnangergermany.crop_stage4.json | 18 + .../item/tettnangergermany.crop_stage5.json | 18 + .../item/tettnangergermany.crop_stage6.json | 18 + .../item/tettnangergermany.crop_stage7.json | 18 + .../models/item/tettnangergermany.hop.json | 6 + .../models/item/tettnangergermany.pellet.json | 6 + .../item/tettnangergermany.rhizome.json | 6 + .../item/tettnangerusa.crop_stage0.json | 18 + .../item/tettnangerusa.crop_stage1.json | 18 + .../item/tettnangerusa.crop_stage2.json | 18 + .../item/tettnangerusa.crop_stage3.json | 18 + .../item/tettnangerusa.crop_stage4.json | 18 + .../item/tettnangerusa.crop_stage5.json | 18 + .../item/tettnangerusa.crop_stage6.json | 18 + .../item/tettnangerusa.crop_stage7.json | 18 + .../models/item/tettnangerusa.hop.json | 6 + .../models/item/tettnangerusa.pellet.json | 6 + .../models/item/tettnangerusa.rhizome.json | 6 + .../bbs_mod/models/item/thermometer.json | 6 + .../models/item/tomahawk.crop_stage0.json | 18 + .../models/item/tomahawk.crop_stage1.json | 18 + .../models/item/tomahawk.crop_stage2.json | 18 + .../models/item/tomahawk.crop_stage3.json | 18 + .../models/item/tomahawk.crop_stage4.json | 18 + .../models/item/tomahawk.crop_stage5.json | 18 + .../models/item/tomahawk.crop_stage6.json | 18 + .../models/item/tomahawk.crop_stage7.json | 18 + .../bbs_mod/models/item/tomahawk.hop.json | 6 + .../bbs_mod/models/item/tomahawk.pellet.json | 6 + .../bbs_mod/models/item/tomahawk.rhizome.json | 6 + .../models/item/tradition.crop_stage0.json | 18 + .../models/item/tradition.crop_stage1.json | 18 + .../models/item/tradition.crop_stage2.json | 18 + .../models/item/tradition.crop_stage3.json | 18 + .../models/item/tradition.crop_stage4.json | 18 + .../models/item/tradition.crop_stage5.json | 18 + .../models/item/tradition.crop_stage6.json | 18 + .../models/item/tradition.crop_stage7.json | 18 + .../bbs_mod/models/item/tradition.hop.json | 6 + .../bbs_mod/models/item/tradition.pellet.json | 6 + .../models/item/tradition.rhizome.json | 6 + .../models/item/triplepearl.crop_stage0.json | 18 + .../models/item/triplepearl.crop_stage1.json | 18 + .../models/item/triplepearl.crop_stage2.json | 18 + .../models/item/triplepearl.crop_stage3.json | 18 + .../models/item/triplepearl.crop_stage4.json | 18 + .../models/item/triplepearl.crop_stage5.json | 18 + .../models/item/triplepearl.crop_stage6.json | 18 + .../models/item/triplepearl.crop_stage7.json | 18 + .../bbs_mod/models/item/triplepearl.hop.json | 6 + .../models/item/triplepearl.pellet.json | 6 + .../models/item/triplepearl.rhizome.json | 6 + .../models/item/triskel.crop_stage0.json | 18 + .../models/item/triskel.crop_stage1.json | 18 + .../models/item/triskel.crop_stage2.json | 18 + .../models/item/triskel.crop_stage3.json | 18 + .../models/item/triskel.crop_stage4.json | 18 + .../models/item/triskel.crop_stage5.json | 18 + .../models/item/triskel.crop_stage6.json | 18 + .../models/item/triskel.crop_stage7.json | 18 + .../bbs_mod/models/item/triskel.hop.json | 6 + .../bbs_mod/models/item/triskel.pellet.json | 6 + .../bbs_mod/models/item/triskel.rhizome.json | 6 + .../models/item/ultra.crop_stage0.json | 18 + .../models/item/ultra.crop_stage1.json | 18 + .../models/item/ultra.crop_stage2.json | 18 + .../models/item/ultra.crop_stage3.json | 18 + .../models/item/ultra.crop_stage4.json | 18 + .../models/item/ultra.crop_stage5.json | 18 + .../models/item/ultra.crop_stage6.json | 18 + .../models/item/ultra.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/ultra.hop.json | 6 + .../bbs_mod/models/item/ultra.pellet.json | 6 + .../bbs_mod/models/item/ultra.rhizome.json | 6 + .../models/item/vanguard.crop_stage0.json | 18 + .../models/item/vanguard.crop_stage1.json | 18 + .../models/item/vanguard.crop_stage2.json | 18 + .../models/item/vanguard.crop_stage3.json | 18 + .../models/item/vanguard.crop_stage4.json | 18 + .../models/item/vanguard.crop_stage5.json | 18 + .../models/item/vanguard.crop_stage6.json | 18 + .../models/item/vanguard.crop_stage7.json | 18 + .../bbs_mod/models/item/vanguard.hop.json | 6 + .../bbs_mod/models/item/vanguard.pellet.json | 6 + .../bbs_mod/models/item/vanguard.rhizome.json | 6 + .../models/item/waiiti.crop_stage0.json | 18 + .../models/item/waiiti.crop_stage1.json | 18 + .../models/item/waiiti.crop_stage2.json | 18 + .../models/item/waiiti.crop_stage3.json | 18 + .../models/item/waiiti.crop_stage4.json | 18 + .../models/item/waiiti.crop_stage5.json | 18 + .../models/item/waiiti.crop_stage6.json | 18 + .../models/item/waiiti.crop_stage7.json | 18 + .../bbs_mod/models/item/waiiti.hop.json | 6 + .../bbs_mod/models/item/waiiti.pellet.json | 6 + .../bbs_mod/models/item/waiiti.rhizome.json | 6 + .../models/item/waimea.crop_stage0.json | 18 + .../models/item/waimea.crop_stage1.json | 18 + .../models/item/waimea.crop_stage2.json | 18 + .../models/item/waimea.crop_stage3.json | 18 + .../models/item/waimea.crop_stage4.json | 18 + .../models/item/waimea.crop_stage5.json | 18 + .../models/item/waimea.crop_stage6.json | 18 + .../models/item/waimea.crop_stage7.json | 18 + .../bbs_mod/models/item/waimea.hop.json | 6 + .../bbs_mod/models/item/waimea.pellet.json | 6 + .../bbs_mod/models/item/waimea.rhizome.json | 6 + .../models/item/wakatu.crop_stage0.json | 18 + .../models/item/wakatu.crop_stage1.json | 18 + .../models/item/wakatu.crop_stage2.json | 18 + .../models/item/wakatu.crop_stage3.json | 18 + .../models/item/wakatu.crop_stage4.json | 18 + .../models/item/wakatu.crop_stage5.json | 18 + .../models/item/wakatu.crop_stage6.json | 18 + .../models/item/wakatu.crop_stage7.json | 18 + .../bbs_mod/models/item/wakatu.hop.json | 6 + .../bbs_mod/models/item/wakatu.pellet.json | 6 + .../bbs_mod/models/item/wakatu.rhizome.json | 6 + .../models/item/warrior.crop_stage0.json | 18 + .../models/item/warrior.crop_stage1.json | 18 + .../models/item/warrior.crop_stage2.json | 18 + .../models/item/warrior.crop_stage3.json | 18 + .../models/item/warrior.crop_stage4.json | 18 + .../models/item/warrior.crop_stage5.json | 18 + .../models/item/warrior.crop_stage6.json | 18 + .../models/item/warrior.crop_stage7.json | 18 + .../bbs_mod/models/item/warrior.hop.json | 6 + .../bbs_mod/models/item/warrior.pellet.json | 6 + .../bbs_mod/models/item/warrior.rhizome.json | 6 + .../bbs_mod/models/item/watergallon.json | 6 + .../assets/bbs_mod/models/item/waterkeg.json | 6 + .../item/whitbreadgolding.crop_stage0.json | 18 + .../item/whitbreadgolding.crop_stage1.json | 18 + .../item/whitbreadgolding.crop_stage2.json | 18 + .../item/whitbreadgolding.crop_stage3.json | 18 + .../item/whitbreadgolding.crop_stage4.json | 18 + .../item/whitbreadgolding.crop_stage5.json | 18 + .../item/whitbreadgolding.crop_stage6.json | 18 + .../item/whitbreadgolding.crop_stage7.json | 18 + .../models/item/whitbreadgolding.hop.json | 6 + .../models/item/whitbreadgolding.pellet.json | 6 + .../models/item/whitbreadgolding.rhizome.json | 6 + .../models/item/willamette.crop_stage0.json | 18 + .../models/item/willamette.crop_stage1.json | 18 + .../models/item/willamette.crop_stage2.json | 18 + .../models/item/willamette.crop_stage3.json | 18 + .../models/item/willamette.crop_stage4.json | 18 + .../models/item/willamette.crop_stage5.json | 18 + .../models/item/willamette.crop_stage6.json | 18 + .../models/item/willamette.crop_stage7.json | 18 + .../bbs_mod/models/item/willamette.hop.json | 6 + .../models/item/willamette.pellet.json | 6 + .../models/item/willamette.rhizome.json | 6 + .../bbs_mod/models/item/wortbucket.json | 6 + .../assets/bbs_mod/models/item/wortkeg.json | 6 + .../item/yakimacluster.crop_stage0.json | 18 + .../item/yakimacluster.crop_stage1.json | 18 + .../item/yakimacluster.crop_stage2.json | 18 + .../item/yakimacluster.crop_stage3.json | 18 + .../item/yakimacluster.crop_stage4.json | 18 + .../item/yakimacluster.crop_stage5.json | 18 + .../item/yakimacluster.crop_stage6.json | 18 + .../item/yakimacluster.crop_stage7.json | 18 + .../models/item/yakimacluster.hop.json | 6 + .../models/item/yakimacluster.pellet.json | 6 + .../models/item/yakimacluster.rhizome.json | 6 + .../item/yamhillgolding.crop_stage0.json | 18 + .../item/yamhillgolding.crop_stage1.json | 18 + .../item/yamhillgolding.crop_stage2.json | 18 + .../item/yamhillgolding.crop_stage3.json | 18 + .../item/yamhillgolding.crop_stage4.json | 18 + .../item/yamhillgolding.crop_stage5.json | 18 + .../item/yamhillgolding.crop_stage6.json | 18 + .../item/yamhillgolding.crop_stage7.json | 18 + .../models/item/yamhillgolding.hop.json | 6 + .../models/item/yamhillgolding.pellet.json | 6 + .../models/item/yamhillgolding.rhizome.json | 6 + .../assets/bbs_mod/models/item/yeast.json | 6 + .../models/item/yeoman.crop_stage0.json | 18 + .../models/item/yeoman.crop_stage1.json | 18 + .../models/item/yeoman.crop_stage2.json | 18 + .../models/item/yeoman.crop_stage3.json | 18 + .../models/item/yeoman.crop_stage4.json | 18 + .../models/item/yeoman.crop_stage5.json | 18 + .../models/item/yeoman.crop_stage6.json | 18 + .../models/item/yeoman.crop_stage7.json | 18 + .../bbs_mod/models/item/yeoman.hop.json | 6 + .../bbs_mod/models/item/yeoman.pellet.json | 6 + .../bbs_mod/models/item/yeoman.rhizome.json | 6 + .../models/item/zenith.crop_stage0.json | 18 + .../models/item/zenith.crop_stage1.json | 18 + .../models/item/zenith.crop_stage2.json | 18 + .../models/item/zenith.crop_stage3.json | 18 + .../models/item/zenith.crop_stage4.json | 18 + .../models/item/zenith.crop_stage5.json | 18 + .../models/item/zenith.crop_stage6.json | 18 + .../models/item/zenith.crop_stage7.json | 18 + .../bbs_mod/models/item/zenith.hop.json | 6 + .../bbs_mod/models/item/zenith.pellet.json | 6 + .../bbs_mod/models/item/zenith.rhizome.json | 6 + .../bbs_mod/models/item/zeus.crop_stage0.json | 18 + .../bbs_mod/models/item/zeus.crop_stage1.json | 18 + .../bbs_mod/models/item/zeus.crop_stage2.json | 18 + .../bbs_mod/models/item/zeus.crop_stage3.json | 18 + .../bbs_mod/models/item/zeus.crop_stage4.json | 18 + .../bbs_mod/models/item/zeus.crop_stage5.json | 18 + .../bbs_mod/models/item/zeus.crop_stage6.json | 18 + .../bbs_mod/models/item/zeus.crop_stage7.json | 18 + .../assets/bbs_mod/models/item/zeus.hop.json | 6 + .../bbs_mod/models/item/zeus.pellet.json | 6 + .../bbs_mod/models/item/zeus.rhizome.json | 6 + .../models/item/zythos.crop_stage0.json | 18 + .../models/item/zythos.crop_stage1.json | 18 + .../models/item/zythos.crop_stage2.json | 18 + .../models/item/zythos.crop_stage3.json | 18 + .../models/item/zythos.crop_stage4.json | 18 + .../models/item/zythos.crop_stage5.json | 18 + .../models/item/zythos.crop_stage6.json | 18 + .../models/item/zythos.crop_stage7.json | 18 + .../bbs_mod/models/item/zythos.hop.json | 6 + .../bbs_mod/models/item/zythos.pellet.json | 6 + .../bbs_mod/models/item/zythos.rhizome.json | 6 + .../assets/bbs_mod/recipes/keg.json | 20 + .../assets/bbs_mod/recipes/microbrewer.json | 22 + .../assets/bbs_mod/recipes/micropack.json | 19 + .../assets/bbs_mod/recipes/sanitizer.json | 20 + .../assets/bbs_mod/recipes/watergallon.json | 15 + .../assets/bbs_mod/recipes/waterkeg.json | 18 + .../assets/bbs_mod/recipes/wortkeg.json | 18 + .../assets/bbs_mod/recipes/yeast.json | 20 + .../bbs_mod/textures/block/hops_stage0.png | Bin 0 -> 3609 bytes .../bbs_mod/textures/block/hops_stage1.png | Bin 0 -> 3774 bytes .../bbs_mod/textures/block/hops_stage2.png | Bin 0 -> 4803 bytes .../bbs_mod/textures/block/hops_stage3.png | Bin 0 -> 11390 bytes .../bbs_mod/textures/block/hops_stage4.png | Bin 0 -> 12061 bytes .../bbs_mod/textures/block/hops_stage5.png | Bin 0 -> 13142 bytes .../bbs_mod/textures/block/hops_stage6.png | Bin 0 -> 13654 bytes .../bbs_mod/textures/block/hops_stage7.png | Bin 0 -> 13897 bytes .../bbs_mod/textures/block/microbrewer.png | Bin 0 -> 1047 bytes .../bbs_mod/textures/block/modeltexture.png | Bin 0 -> 537 bytes .../bbs_mod/textures/gui/microbrewer_gui.png | Bin 0 -> 2196 bytes .../bbs_mod/textures/gui/microbrewergui.png | Bin 0 -> 1997 bytes .../bbs_mod/textures/gui/micropackgui.png | Bin 0 -> 1237 bytes .../bbs_mod/textures/gui/micropackgui_old.png | Bin 0 -> 1161 bytes .../bbs_mod/textures/item/beerbucket.png | Bin 0 -> 1586 bytes .../assets/bbs_mod/textures/item/beerkeg.png | Bin 0 -> 741 bytes .../bbs_mod/textures/item/bucket_fluid.png | Bin 0 -> 225 bytes .../assets/bbs_mod/textures/item/hopsleaf.png | Bin 0 -> 5339 bytes .../assets/bbs_mod/textures/item/keg.png | Bin 0 -> 1386 bytes .../assets/bbs_mod/textures/item/lme.png | Bin 0 -> 4394 bytes .../assets/bbs_mod/textures/item/pellet.png | Bin 0 -> 3588 bytes .../bbs_mod/textures/item/priming_sugar.png | Bin 0 -> 3052 bytes .../assets/bbs_mod/textures/item/rhizome.png | Bin 0 -> 7346 bytes .../bbs_mod/textures/item/sanitizer.png | Bin 0 -> 6707 bytes .../assets/bbs_mod/textures/item/spoon.png | Bin 0 -> 5016 bytes .../bbs_mod/textures/item/stirringspoon.png | Bin 0 -> 5016 bytes .../bbs_mod/textures/item/thermometer.png | Bin 0 -> 3394 bytes .../bbs_mod/textures/item/watergallon.png | Bin 0 -> 5855 bytes .../assets/bbs_mod/textures/item/waterkeg.png | Bin 0 -> 768 bytes .../bbs_mod/textures/item/wortbucket.png | Bin 0 -> 1586 bytes .../assets/bbs_mod/textures/item/wortkeg.png | Bin 0 -> 907 bytes .../assets/bbs_mod/textures/item/yeast.png | Bin 0 -> 3869 bytes .../com/rafacost3d/bbs_mod/BBSMod.class | Bin 0 -> 2338 bytes .../creativetabs/CreativeTabsBBS$1.class | Bin 0 -> 1022 bytes .../creativetabs/CreativeTabsBBS$2.class | Bin 0 -> 1024 bytes .../creativetabs/CreativeTabsBBS$3.class | Bin 0 -> 1022 bytes .../creativetabs/CreativeTabsBBS$4.class | Bin 0 -> 1098 bytes .../creativetabs/CreativeTabsBBS$5.class | Bin 0 -> 960 bytes .../creativetabs/CreativeTabsBBS.class | Bin 0 -> 1233 bytes .../rafacost3d/bbs_mod/init/BlocksInit.class | Bin 0 -> 1419 bytes .../rafacost3d/bbs_mod/init/ItemInit.class | Bin 0 -> 1771 bytes .../bbs_mod/objects/blocks/ModelBlock.class | Bin 0 -> 1798 bytes .../blocks/containers/MicroPackBlock.class | Bin 0 -> 8836 bytes .../containers/MicroPackContainer.class | Bin 0 -> 3425 bytes .../blocks/containers/MicroPackGui.class | Bin 0 -> 1822 bytes .../containers/MicroPackTileEntity$1.class | Bin 0 -> 890 bytes .../containers/MicroPackTileEntity.class | Bin 0 -> 3427 bytes .../blocks/machines/MicroBrewerBlock.class | Bin 0 -> 11369 bytes .../machines/MicroBrewerContainer.class | Bin 0 -> 5080 bytes .../blocks/machines/MicroBrewerGui.class | Bin 0 -> 3266 bytes .../blocks/machines/MicroBrewerRecipes.class | Bin 0 -> 5136 bytes .../machines/TileEntityMicroBrewer.class | Bin 0 -> 11480 bytes .../machines/slots/SlotMicroBrewerFuel.class | Bin 0 -> 956 bytes .../slots/SlotMicroBrewerOutput.class | Bin 0 -> 1620 bytes .../bbs_mod/objects/crops/BlockBBSCrop.class | Bin 0 -> 12939 bytes .../bbs_mod/objects/crops/BlockRegistry.class | Bin 0 -> 2866 bytes .../bbs_mod/objects/crops/CropRegistry.class | Bin 0 -> 11862 bytes .../bbs_mod/objects/crops/ItemModelList.class | Bin 0 -> 1641 bytes .../bbs_mod/objects/crops/ItemModels.class | Bin 0 -> 4651 bytes .../bbs_mod/objects/crops/ItemRegistry.class | Bin 0 -> 3189 bytes .../objects/crops/ItemRenderRegister.class | Bin 0 -> 2073 bytes .../bbs_mod/objects/items/ItemBase.class | Bin 0 -> 1579 bytes .../bbs_mod/proxy/ClientProxy.class | Bin 0 -> 2536 bytes .../bbs_mod/proxy/CommonProxy.class | Bin 0 -> 4767 bytes .../rafacost3d/bbs_mod/proxy/GuiProxy.class | Bin 0 -> 2554 bytes .../rafacost3d/bbs_mod/util/IHasModel.class | Bin 0 -> 158 bytes .../rafacost3d/bbs_mod/util/Reference.class | Bin 0 -> 697 bytes .../util/handlers/RegistryHandler.class | Bin 0 -> 2228 bytes classes/production/bbs_mod_main/mcmod.info | 16 + classes/production/bbs_mod_main/pack.mcmeta | 7 + 1777 files changed, 25633 insertions(+) create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage0.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage1.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage2.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage3.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage4.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage5.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage6.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage7.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/microbrewer.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/modeltexture.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewer_gui.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewergui.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui_old.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerbucket.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerkeg.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/bucket_fluid.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/hopsleaf.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/keg.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/lme.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/pellet.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/priming_sugar.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/rhizome.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/sanitizer.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/spoon.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/stirringspoon.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/thermometer.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/watergallon.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/waterkeg.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortbucket.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortkeg.png create mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/yeast.png create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/BBSMod.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$1.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$2.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$3.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$4.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$5.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/init/BlocksInit.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/init/ItemInit.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/ModelBlock.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity$1.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModels.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/items/ItemBase.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/ClientProxy.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/CommonProxy.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/GuiProxy.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/IHasModel.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/Reference.class create mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.class create mode 100644 classes/production/bbs_mod_main/mcmod.info create mode 100644 classes/production/bbs_mod_main/pack.mcmeta diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json new file mode 100644 index 0000000..f61ba24 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json @@ -0,0 +1,21 @@ +{ + "forge_marker": 1, + "variants": { + "fluid": { + "model": "forge:fluid", + "custom": { "fluid": "beer" } + }, + "inventory": { + "model": "forge:forgebucket", + "textures": { + "base": "forge:items/bucket_base", + "cover": "forge:items/bucket_cover" + }, + "transform": "forge:default-item", + "custom": { + "fluid": "beer", + "flipGas": true + } + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json new file mode 100644 index 0000000..8ede004 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json @@ -0,0 +1,43 @@ +{ + "forge_marker": 1, + "defaults": { + "custom": { "flip-v": true }, + "model": "bbs_mod:boilingpot.obj" + }, + "variants": { + "normal": [{}], + "inventory": [{ + "transform": { + "gui": { + "rotation": [ + { + "x": 20 + }, + { + "y": 0 + }, + { + "z": 0 + } + ], + "translation": [ + 0, + 0.5, + 0 + ], + "scale": 2.0 + } + } + + } + ], + "facing": { + "north": {"y": 90}, + "south": {"y": 270}, + "west": {"y": 0}, + "east": {"y": 180}, + "up": {"x": 0}, + "down": {"x": 0} + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json new file mode 100644 index 0000000..aff8f8b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json @@ -0,0 +1,26 @@ +{ + "forge_marker": 1, + "defaults": + { + "textures": + { + "all": "bbs_mod:block/microbrewer" + }, + "custom": { "flip-v": true }, + "model": "bbs_mod:microbrewer_empty", + "uvlock": false + }, + "variants": + { + "facing=east,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 270}, + "facing=east,working=true": {"model": "bbs_mod:microbrewer", "y": 270}, + "facing=north,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 180}, + "facing=north,working=true": {"model": "bbs_mod:microbrewer", "y": 180}, + "facing=south,working=false": {"model": "bbs_mod:microbrewer_empty"}, + "facing=south,working=true": {"model": "bbs_mod:microbrewer"}, + "facing=west,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 90}, + "facing=west,working=true": {"model": "bbs_mod:microbrewer", "y": 90}, + "inventory": {"model": "bbs_mod:microbrewer"}, + "normal": {"model": "bbs_mod:microbrewer_empty"} + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json new file mode 100644 index 0000000..fbcb328 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json @@ -0,0 +1,10 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "bbs_mod:micropack" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json new file mode 100644 index 0000000..5da8147 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json @@ -0,0 +1,10 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "bbs_mod:modelblock" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json new file mode 100644 index 0000000..ef2679e --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json @@ -0,0 +1,43 @@ +{ + "forge_marker": 1, + "defaults": { + "custom": { "flip-v": true }, + "model": "bbs_mod:pelleter.obj" + }, + "variants": { + "normal": [{}], + "inventory": [{ + "transform": { + "gui": { + "rotation": [ + { + "x": 20 + }, + { + "y": 90 + }, + { + "z": 0 + } + ], + "translation": [ + 0, + 0, + 0 + ], + "scale": 1.0 + } + } + + } + ], + "facing": { + "north": {"y": 90}, + "south": {"y": 270}, + "west": {"y": 0}, + "east": {"y": 180}, + "up": {"x": 0}, + "down": {"x": 0} + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json new file mode 100644 index 0000000..a4bfe5b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json @@ -0,0 +1,22 @@ +{ + "forge_marker": 1, + "variants": { + "fluid": { + "model": "forge:fluid", + "custom": { "fluid": "wort" } + }, + "inventory": { + "model": "forge:forgebucket", + "textures": { + "base": "forge:items/bucket_base", + "fluid": "bbs_mod:item/bucket_fluid", + "cover": "forge:items/bucket_cover" + }, + "transform": "forge:default-item", + "custom": { + "fluid": "wort", + "flipGas": true + } + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang b/classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang new file mode 100644 index 0000000..a91e680 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang @@ -0,0 +1,595 @@ +language.name=English +language.region=United States +language.code=en_us + +itemGroup.bbs_mod.hops=Beer Brewing Simulator Hops +itemGroup.bbs_mod.pellets=Beer Brewing Simulator Pellets +itemGroup.bbs_mod.seeds=Beer Brewing Simulator Rhizomes +itemGroup.bbs_mod.machines=Beer Brewing Simulator Machines +itemGroup.bbs_mod.item=Beer Brewing Simulator Items +itemGroup.bbs_mod.fluid=Beer Brewing Simulator Fluids + +item.bbs_mod.spoon.name=Spoon +item.bbs_mod.sanitizer.name=Sanitizer +item.bbs_mod.watergallon.name=Water Gallon +item.bbs_mod.lme_pilsen.name=Liquid Malt Extract - Pilsen 3.3lb +item.bbs_mod.lme_extralight.name=Liquid Malt Extract - Extra Light 3.3lb +item.bbs_mod.lme_wheat.name=Liquid Malt Extract - Wheat 3.3lb +item.bbs_mod.lme_light.name=Liquid Malt Extract - Light 3.3lb +item.bbs_mod.lme_munich.name=Liquid Malt Extract - Munich 3.3lb +item.bbs_mod.lme_amber.name=Liquid Malt Extract - Amber 3.3lb +item.bbs_mod.lme_dark.name=Liquid Malt Extract - Dark 3.3lb +item.bbs_mod.priming_sugar.name=Priming Sugar +item.bbs_mod.yeast.name=Yeast +item.bbs_mod.thermometer.name=Thermometer +item.bbs_mod.waterkeg.name=Water Keg +item.bbs_mod.mashkeg.name=Mash Keg +item.bbs_mod.hotwortkeg.name=Hot Wort Keg +item.bbs_mod.wortkeg.name=Wort Keg +item.bbs_mod.beerkeg.name=Beer Keg +item.bbs_mod.keg.name=Empty Keg + +tile.bbs_mod.microbrewer.name=Micro Brewer +tile.bbs_mod.micropack.name=Micro Pack +tile.bbs_mod.modelblock.name=Basic Block + +tile.bbs_mod.beer.name=Beer +tile.bbs_mod.wort.name=Wort +fluid.beer=Beer +fluid.wort=Wort +item.bbs_mod.worttype.nullWort.name=Wort Bucket +tooltip.bbs_mod.worttype.nullWort.desc=No Hops +item.bbs_mod.beertype.nullBeer.name=Beer Bucket +tooltip.bbs_mod.beertype.nullBeer.desc=Unclassified Beer + +item.admiral.hop.name=Admiral +item.ahtanum.hop.name=Ahtanum +item.amarillo.hop.name=Amarillo® +item.aquila.hop.name=Aquila +item.aramis.hop.name=Aramis +item.aurora.hop.name=Aurora +item.banner.hop.name=Banner +item.bcgolding.hop.name=BC Golding +item.bittergold.hop.name=Bitter Gold +item.blanc.hop.name=Blanc +item.bobek.hop.name=Bobek +item.bramlingcross.hop.name=Bramling Cross +item.bravo.hop.name=Bravo +item.brewersgoldgermany.hop.name=Brewer's Gold Germany +item.brewersgoldusa.hop.name=Brewer's Gold USA +item.bullion.hop.name=Bullion +item.cascade.hop.name=Cascade +item.celeia.hop.name=Celeia +item.centennial.hop.name=Centennial +item.challenger.hop.name=Challenger +item.chelan.hop.name=Chelan +item.chinook.hop.name=Chinook +item.citra.hop.name=Citra +item.cluster.hop.name=Cluster +item.columbus.hop.name=Columbus +item.comet.hop.name=Comet +item.crystal.hop.name=Crystal +item.drrudi.hop.name=Dr Rudi +item.eastkentgolding.hop.name=East Kent Golding +item.ekuanot.hop.name=Ekuanot +item.ella.hop.name=Ella +item.eroica.hop.name=Eroica +item.falconersflight.hop.name=Falconers Flight® +item.firstgold.hop.name=First Gold +item.fuggleuk.hop.name=Fuggle UK +item.galaxy.hop.name=Galaxy +item.galena.hop.name=Galena +item.glacier.hop.name=Glacier +item.gold.hop.name=Gold +item.goldinguk.hop.name=Golding UK +item.goldingusa.hop.name=Golding USA +item.greenbullet.hop.name=Green Bullet +item.hallertaumittelfruh.hop.name=Hallertau Mittelfruh +item.hallertauusa.hop.name=Hallertau USA +item.hbc431experimental.hop.name=HBC 431 Experimental +item.hbc438experimental.hop.name=HBC 438 Experimental +item.hbc472experimental.hop.name=HBC 472 Experimental +item.hbc682experimental.hop.name=HBC 682 Experimental +item.helga.hop.name=Helga +item.herald.hop.name=Herald +item.herkules.hop.name=Herkules +item.hersbrucker.hop.name=Hersbrucker +item.horizon.hop.name=Horizon +item.huellmelon.hop.name=Huell Melon +item.hullerbitterer.hop.name=Huller Bitterer +item.kohatu.hop.name=Kohatu +item.liberty.hop.name=Liberty +item.loral.hop.name=Loral® +item.lubelska.hop.name=Lubelska +item.magnum.hop.name=Magnum +item.mandarinabavaria.hop.name=Mandarina Bavaria +item.merkur.hop.name=Merkur +item.millenium.hop.name=Millenium +item.mosaic.hop.name=Mosaic® +item.motueka.hop.name=Motueka +item.mounthood.hop.name=Mount Hood +item.mountrainier.hop.name=Mount Rainier +item.nelsonsauvin.hop.name=Nelson Sauvin +item.newport.hop.name=Newport +item.northdown.hop.name=Northdown +item.northernbrewer.hop.name=Northern Brewer +item.nugget.hop.name=Nugget +item.olympic.hop.name=Olympic +item.omega.hop.name=Omega +item.opal.hop.name=Opal +item.orion.hop.name=Orion +item.pacifica.hop.name=Pacific Gem +item.pacificgem.hop.name=Pacific Jade +item.pacificjade.hop.name=Pacifica +item.palisade.hop.name=Palisade® +item.perlegermany.hop.name=Perle Germany +item.perleusa.hop.name=Perle USA +item.phoenix.hop.name=Phoenix +item.pilgrim.hop.name=Pilgrim +item.pioneer.hop.name=Pioneer +item.polaris.hop.name=Polaris +item.premiant.hop.name=Premiant +item.prideofringwood.hop.name=Pride of RingWood +item.progress.hop.name=Progress +item.rakau.hop.name=Rakau +item.record.hop.name=Record +item.riwaka.hop.name=Riwaka +item.saaz.hop.name=Saaz +item.santiam.hop.name=Santiam +item.saphir.hop.name=Saphir +item.satus.hop.name=Satus +item.savinjskigolding.hop.name=Savinjski Golding +item.select.hop.name=Select +item.simcoe.hop.name=Simcoe® +item.smaragd.hop.name=Smaragd +item.sorachiace.hop.name=Sorachi Ace +item.southerncross.hop.name=Southern Cross +item.sovereign.hop.name=Sovereign +item.spalt.hop.name=Spalt +item.sterling.hop.name=Sterling +item.sticklebract.hop.name=Sticklebract +item.strisselspalt.hop.name=Strisselspalt +item.styriangolding.hop.name=Styrian Golding +item.summer.hop.name=Summer +item.summit.hop.name=Summit +item.superalpha.hop.name=Super Alpha +item.superpride.hop.name=Super Pride +item.sussex.hop.name=Sussex +item.sylva.hop.name=Sylva +item.tahoma.hop.name=Tahoma +item.talisman.hop.name=Talisman +item.target.hop.name=Target +item.tettnangergermany.hop.name=Tettnanger Germany +item.tettnangerusa.hop.name=Tettnanger USA +item.tomahawk.hop.name=Tomahawk® +item.tradition.hop.name=Tradition +item.triplepearl.hop.name=Triplepearl +item.triskel.hop.name=Triskel +item.ultra.hop.name=Ultra +item.vanguard.hop.name=Vanguard +item.waiiti.hop.name=Wai-iti +item.waimea.hop.name=Waimea +item.wakatu.hop.name=Wakatu +item.warrior.hop.name=Warrior® +item.whitbreadgolding.hop.name=Whitbread Golding +item.willamette.hop.name=Willamette +item.yakimacluster.hop.name=Yakima Cluster +item.yamhillgolding.hop.name=Yamhill Golding +item.yeoman.hop.name=Yeoman +item.zenith.hop.name=Zenith +item.zeus.hop.name=Zeus +item.zythos.hop.name=Zythos® + +item.admiral.rhizome.name=Admiral Rhizome +item.ahtanum.rhizome.name=Ahtanum Rhizome +item.amarillo.rhizome.name=Amarillo® Rhizome +item.aquila.rhizome.name=Aquila Rhizome +item.aramis.rhizome.name=Aramis Rhizome +item.aurora.rhizome.name=Aurora Rhizome +item.banner.rhizome.name=Banner Rhizome +item.bcgolding.rhizome.name=BC Golding Rhizome +item.bittergold.rhizome.name=Bitter Gold Rhizome +item.blanc.rhizome.name=Blanc Rhizome +item.bobek.rhizome.name=Bobek Rhizome +item.bramlingcross.rhizome.name=Bramling Cross Rhizome +item.bravo.rhizome.name=Bravo Rhizome +item.brewersgoldgermany.rhizome.name=Brewer's Gold Germany Rhizome +item.brewersgoldusa.rhizome.name=Brewer's Gold USA Rhizome +item.bullion.rhizome.name=Bullion Rhizome +item.cascade.rhizome.name=Cascade Rhizome +item.celeia.rhizome.name=Celeia Rhizome +item.centennial.rhizome.name=Centennial Rhizome +item.challenger.rhizome.name=Challenger Rhizome +item.chelan.rhizome.name=Chelan Rhizome +item.chinook.rhizome.name=Chinook Rhizome +item.citra.rhizome.name=Citra Rhizome +item.cluster.rhizome.name=Cluster Rhizome +item.columbus.rhizome.name=Columbus Rhizome +item.comet.rhizome.name=Comet Rhizome +item.crystal.rhizome.name=Crystal Rhizome +item.drrudi.rhizome.name=Dr Rudi Rhizome +item.eastkentgolding.rhizome.name=East Kent Golding Rhizome +item.ekuanot.rhizome.name=Ekuanot Rhizome +item.ella.rhizome.name=Ella Rhizome +item.eroica.rhizome.name=Eroica Rhizome +item.falconersflight.rhizome.name=Falconers Flight® Rhizome +item.firstgold.rhizome.name=First Gold Rhizome +item.fuggleuk.rhizome.name=Fuggle UK Rhizome +item.galaxy.rhizome.name=Galaxy Rhizome +item.galena.rhizome.name=Galena Rhizome +item.glacier.rhizome.name=Glacier Rhizome +item.gold.rhizome.name=Gold Rhizome +item.goldinguk.rhizome.name=Golding UK Rhizome +item.goldingusa.rhizome.name=Golding USA Rhizome +item.greenbullet.rhizome.name=Green Bullet Rhizome +item.hallertaumittelfruh.rhizome.name=Hallertau Mittelfruh Rhizome +item.hallertauusa.rhizome.name=Hallertau USA Rhizome +item.hbc431experimental.rhizome.name=HBC 431 Experimental Rhizome +item.hbc438experimental.rhizome.name=HBC 438 Experimental Rhizome +item.hbc472experimental.rhizome.name=HBC 472 Experimental Rhizome +item.hbc682experimental.rhizome.name=HBC 682 Experimental Rhizome +item.helga.rhizome.name=Helga Rhizome +item.herald.rhizome.name=Herald Rhizome +item.herkules.rhizome.name=Herkules Rhizome +item.hersbrucker.rhizome.name=Hersbrucker Rhizome +item.horizon.rhizome.name=Horizon Rhizome +item.huellmelon.rhizome.name=Huell Melon Rhizome +item.hullerbitterer.rhizome.name=Huller Bitterer Rhizome +item.kohatu.rhizome.name=Kohatu Rhizome +item.liberty.rhizome.name=Liberty Rhizome +item.loral.rhizome.name=Loral® Rhizome +item.lubelska.rhizome.name=Lubelska Rhizome +item.magnum.rhizome.name=Magnum Rhizome +item.mandarinabavaria.rhizome.name=Mandarina Bavaria Rhizome +item.merkur.rhizome.name=Merkur Rhizome +item.millenium.rhizome.name=Millenium Rhizome +item.mosaic.rhizome.name=Mosaic® Rhizome +item.motueka.rhizome.name=Motueka Rhizome +item.mounthood.rhizome.name=Mount Hood Rhizome +item.mountrainier.rhizome.name=Mount Rainier Rhizome +item.nelsonsauvin.rhizome.name=Nelson Sauvin Rhizome +item.newport.rhizome.name=Newport Rhizome +item.northdown.rhizome.name=Northdown Rhizome +item.northernbrewer.rhizome.name=Northern Brewer Rhizome +item.nugget.rhizome.name=Nugget Rhizome +item.olympic.rhizome.name=Olympic Rhizome +item.omega.rhizome.name=Omega Rhizome +item.opal.rhizome.name=Opal Rhizome +item.orion.rhizome.name=Orion Rhizome +item.pacifica.rhizome.name=Pacific Gem Rhizome +item.pacificgem.rhizome.name=Pacific Jade Rhizome +item.pacificjade.rhizome.name=Pacifica Rhizome +item.palisade.rhizome.name=Palisade® Rhizome +item.perlegermany.rhizome.name=Perle Germany Rhizome +item.perleusa.rhizome.name=Perle USA Rhizome +item.phoenix.rhizome.name=Phoenix Rhizome +item.pilgrim.rhizome.name=Pilgrim Rhizome +item.pioneer.rhizome.name=Pioneer Rhizome +item.polaris.rhizome.name=Polaris Rhizome +item.premiant.rhizome.name=Premiant Rhizome +item.prideofringwood.rhizome.name=Pride of RingWood Rhizome +item.progress.rhizome.name=Progress Rhizome +item.rakau.rhizome.name=Rakau Rhizome +item.record.rhizome.name=Record Rhizome +item.riwaka.rhizome.name=Riwaka Rhizome +item.saaz.rhizome.name=Saaz Rhizome +item.santiam.rhizome.name=Santiam Rhizome +item.saphir.rhizome.name=Saphir Rhizome +item.satus.rhizome.name=Satus Rhizome +item.savinjskigolding.rhizome.name=Savinjski Golding Rhizome +item.select.rhizome.name=Select Rhizome +item.simcoe.rhizome.name=Simcoe® Rhizome +item.smaragd.rhizome.name=Smaragd Rhizome +item.sorachiace.rhizome.name=Sorachi Ace Rhizome +item.southerncross.rhizome.name=Southern Cross Rhizome +item.sovereign.rhizome.name=Sovereign Rhizome +item.spalt.rhizome.name=Spalt Rhizome +item.sterling.rhizome.name=Sterling Rhizome +item.sticklebract.rhizome.name=Sticklebract Rhizome +item.strisselspalt.rhizome.name=Strisselspalt Rhizome +item.styriangolding.rhizome.name=Styrian Golding Rhizome +item.summer.rhizome.name=Summer Rhizome +item.summit.rhizome.name=Summit Rhizome +item.superalpha.rhizome.name=Super Alpha Rhizome +item.superpride.rhizome.name=Super Pride Rhizome +item.sussex.rhizome.name=Sussex Rhizome +item.sylva.rhizome.name=Sylva Rhizome +item.tahoma.rhizome.name=Tahoma Rhizome +item.talisman.rhizome.name=Talisman Rhizome +item.target.rhizome.name=Target Rhizome +item.tettnangergermany.rhizome.name=Tettnanger Germany Rhizome +item.tettnangerusa.rhizome.name=Tettnanger USA Rhizome +item.tomahawk.rhizome.name=Tomahawk® Rhizome +item.tradition.rhizome.name=Tradition Rhizome +item.triplepearl.rhizome.name=Triplepearl Rhizome +item.triskel.rhizome.name=Triskel Rhizome +item.ultra.rhizome.name=Ultra Rhizome +item.vanguard.rhizome.name=Vanguard Rhizome +item.waiiti.rhizome.name=Wai-iti Rhizome +item.waimea.rhizome.name=Waimea Rhizome +item.wakatu.rhizome.name=Wakatu Rhizome +item.warrior.rhizome.name=Warrior® Rhizome +item.whitbreadgolding.rhizome.name=Whitbread Golding Rhizome +item.willamette.rhizome.name=Willamette Rhizome +item.yakimacluster.rhizome.name=Yakima Cluster Rhizome +item.yamhillgolding.rhizome.name=Yamhill Golding Rhizome +item.yeoman.rhizome.name=Yeoman Rhizome +item.zenith.rhizome.name=Zenith Rhizome +item.zeus.rhizome.name=Zeus Rhizome +item.zythos.rhizome.name=Zythos® Rhizome + +bbs_mod.tile.hopadmiral.crop.name=Admiral Crop +bbs_mod.tile.hopahtanum.crop.name=Ahtanum Crop +bbs_mod.tile.hopamarillo.crop.name=Amarillo® Crop +bbs_mod.tile.hopaquila.crop.name=Aquila Crop +bbs_mod.tile.hoparamis.crop.name=Aramis Crop +bbs_mod.tile.hopaurora.crop.name=Aurora Crop +bbs_mod.tile.hopbanner.crop.name=Banner Crop +bbs_mod.tile.hopbcgolding.crop.name=BC Golding Crop +bbs_mod.tile.hopbittergold.crop.name=Bitter Gold Crop +bbs_mod.tile.hopblanc.crop.name=Blanc Crop +bbs_mod.tile.hopbobek.crop.name=Bobek Crop +bbs_mod.tile.hopbramlingcross.crop.name=Bramling Cross Crop +bbs_mod.tile.hopbravo.crop.name=Bravo Crop +bbs_mod.tile.hopbrewersgoldgermany.crop.name=Brewer's Gold Germany Crop +bbs_mod.tile.hopbrewersgoldusa.crop.name=Brewer's Gold USA Crop +bbs_mod.tile.hopbullion.crop.name=Bullion Crop +bbs_mod.tile.hopcascade.crop.name=Cascade Crop +bbs_mod.tile.hopceleia.crop.name=Celeia Crop +bbs_mod.tile.hopcentennial.crop.name=Centennial Crop +bbs_mod.tile.hopchallenger.crop.name=Challenger Crop +bbs_mod.tile.hopchelan.crop.name=Chelan Crop +bbs_mod.tile.hopchinook.crop.name=Chinook Crop +bbs_mod.tile.hopcitra.crop.name=Citra Crop +bbs_mod.tile.hopcluster.crop.name=Cluster Crop +bbs_mod.tile.hopcolumbus.crop.name=Columbus Crop +bbs_mod.tile.hopcomet.crop.name=Comet Crop +bbs_mod.tile.hopcrystal.crop.name=Crystal Crop +bbs_mod.tile.hopdrrudi.crop.name=Dr Rudi Crop +bbs_mod.tile.hopeastkentgolding.crop.name=East Kent Golding Crop +bbs_mod.tile.hopekuanot.crop.name=Ekuanot Crop +bbs_mod.tile.hopella.crop.name=Ella Crop +bbs_mod.tile.hoperoica.crop.name=Eroica Crop +bbs_mod.tile.hopfalconersflight.crop.name=Falconers Flight® Crop +bbs_mod.tile.hopfirstgold.crop.name=First Gold Crop +bbs_mod.tile.hopfuggleuk.crop.name=Fuggle UK Crop +bbs_mod.tile.hopgalaxy.crop.name=Galaxy Crop +bbs_mod.tile.hopgalena.crop.name=Galena Crop +bbs_mod.tile.hopglacier.crop.name=Glacier Crop +bbs_mod.tile.hopgold.crop.name=Gold Crop +bbs_mod.tile.hopgoldinguk.crop.name=Golding UK Crop +bbs_mod.tile.hopgoldingusa.crop.name=Golding USA Crop +bbs_mod.tile.hopgreenbullet.crop.name=Green Bullet Crop +bbs_mod.tile.hophallertaumittelfruh.crop.name=Hallertau Mittelfruh Crop +bbs_mod.tile.hophallertauusa.crop.name=Hallertau USA Crop +bbs_mod.tile.hophbc431experimental.crop.name=HBC 431 Experimental Crop +bbs_mod.tile.hophbc438experimental.crop.name=HBC 438 Experimental Crop +bbs_mod.tile.hophbc472experimental.crop.name=HBC 472 Experimental Crop +bbs_mod.tile.hophbc682experimental.crop.name=HBC 682 Experimental Crop +bbs_mod.tile.hophelga.crop.name=Helga Crop +bbs_mod.tile.hopherald.crop.name=Herald Crop +bbs_mod.tile.hopherkules.crop.name=Herkules Crop +bbs_mod.tile.hophersbrucker.crop.name=Hersbrucker Crop +bbs_mod.tile.hophorizon.crop.name=Horizon Crop +bbs_mod.tile.hophuellmelon.crop.name=Huell Melon Crop +bbs_mod.tile.hophullerbitterer.crop.name=Huller Bitterer Crop +bbs_mod.tile.hopkohatu.crop.name=Kohatu Crop +bbs_mod.tile.hopliberty.crop.name=Liberty Crop +bbs_mod.tile.hoploral.crop.name=Loral® Crop +bbs_mod.tile.hoplubelska.crop.name=Lubelska Crop +bbs_mod.tile.hopmagnum.crop.name=Magnum Crop +bbs_mod.tile.hopmandarinabavaria.crop.name=Mandarina Bavaria Crop +bbs_mod.tile.hopmerkur.crop.name=Merkur Crop +bbs_mod.tile.hopmillenium.crop.name=Millenium Crop +bbs_mod.tile.hopmosaic.crop.name=Mosaic® Crop +bbs_mod.tile.hopmotueka.crop.name=Motueka Crop +bbs_mod.tile.hopmounthood.crop.name=Mount Hood Crop +bbs_mod.tile.hopmountrainier.crop.name=Mount Rainier Crop +bbs_mod.tile.hopnelsonsauvin.crop.name=Nelson Sauvin Crop +bbs_mod.tile.hopnewport.crop.name=Newport Crop +bbs_mod.tile.hopnorthdown.crop.name=Northdown Crop +bbs_mod.tile.hopnorthernbrewer.crop.name=Northern Brewer Crop +bbs_mod.tile.hopnugget.crop.name=Nugget Crop +bbs_mod.tile.hopolympic.crop.name=Olympic Crop +bbs_mod.tile.hopomega.crop.name=Omega Crop +bbs_mod.tile.hopopal.crop.name=Opal Crop +bbs_mod.tile.hoporion.crop.name=Orion Crop +bbs_mod.tile.hoppacifica.crop.name=Pacific Gem Crop +bbs_mod.tile.hoppacificgem.crop.name=Pacific Jade Crop +bbs_mod.tile.hoppacificjade.crop.name=Pacifica Crop +bbs_mod.tile.hoppalisade.crop.name=Palisade® Crop +bbs_mod.tile.hopperlegermany.crop.name=Perle Germany Crop +bbs_mod.tile.hopperleusa.crop.name=Perle USA Crop +bbs_mod.tile.hopphoenix.crop.name=Phoenix Crop +bbs_mod.tile.hoppilgrim.crop.name=Pilgrim Crop +bbs_mod.tile.hoppioneer.crop.name=Pioneer Crop +bbs_mod.tile.hoppolaris.crop.name=Polaris Crop +bbs_mod.tile.hoppremiant.crop.name=Premiant Crop +bbs_mod.tile.hopprideofringwood.crop.name=Pride of RingWood Crop +bbs_mod.tile.hopprogress.crop.name=Progress Crop +bbs_mod.tile.hoprakau.crop.name=Rakau Crop +bbs_mod.tile.hoprecord.crop.name=Record Crop +bbs_mod.tile.hopriwaka.crop.name=Riwaka Crop +bbs_mod.tile.hopsaaz.crop.name=Saaz Crop +bbs_mod.tile.hopsantiam.crop.name=Santiam Crop +bbs_mod.tile.hopsaphir.crop.name=Saphir Crop +bbs_mod.tile.hopsatus.crop.name=Satus Crop +bbs_mod.tile.hopsavinjskigolding.crop.name=Savinjski Golding Crop +bbs_mod.tile.hopselect.crop.name=Select Crop +bbs_mod.tile.hopsimcoe.crop.name=Simcoe® Crop +bbs_mod.tile.hopsmaragd.crop.name=Smaragd Crop +bbs_mod.tile.hopsorachiace.crop.name=Sorachi Ace Crop +bbs_mod.tile.hopsoutherncross.crop.name=Southern Cross Crop +bbs_mod.tile.hopsovereign.crop.name=Sovereign Crop +bbs_mod.tile.hopspalt.crop.name=Spalt Crop +bbs_mod.tile.hopsterling.crop.name=Sterling Crop +bbs_mod.tile.hopsticklebract.crop.name=Sticklebract Crop +bbs_mod.tile.hopstrisselspalt.crop.name=Strisselspalt Crop +bbs_mod.tile.hopstyriangolding.crop.name=Styrian Golding Crop +bbs_mod.tile.hopsummer.crop.name=Summer Crop +bbs_mod.tile.hopsummit.crop.name=Summit Crop +bbs_mod.tile.hopsuperalpha.crop.name=Super Alpha Crop +bbs_mod.tile.hopsuperpride.crop.name=Super Pride Crop +bbs_mod.tile.hopsussex.crop.name=Sussex Crop +bbs_mod.tile.hopsylva.crop.name=Sylva Crop +bbs_mod.tile.hoptahoma.crop.name=Tahoma Crop +bbs_mod.tile.hoptalisman.crop.name=Talisman Crop +bbs_mod.tile.hoptarget.crop.name=Target Crop +bbs_mod.tile.hoptettnangergermany.crop.name=Tettnanger Germany Crop +bbs_mod.tile.hoptettnangerusa.crop.name=Tettnanger USA Crop +bbs_mod.tile.hoptomahawk.crop.name=Tomahawk® Crop +bbs_mod.tile.hoptradition.crop.name=Tradition Crop +bbs_mod.tile.hoptriplepearl.crop.name=Triplepearl Crop +bbs_mod.tile.hoptriskel.crop.name=Triskel Crop +bbs_mod.tile.hopultra.crop.name=Ultra Crop +bbs_mod.tile.hopvanguard.crop.name=Vanguard Crop +bbs_mod.tile.hopwaiiti.crop.name=Wai-iti Crop +bbs_mod.tile.hopwaimea.crop.name=Waimea Crop +bbs_mod.tile.hopwakatu.crop.name=Wakatu Crop +bbs_mod.tile.hopwarrior.crop.name=Warrior® Crop +bbs_mod.tile.hopwhitbreadgolding.crop.name=Whitbread Golding Crop +bbs_mod.tile.hopwillamette.crop.name=Willamette Crop +bbs_mod.tile.hopyakimacluster.crop.name=Yakima Cluster Crop +bbs_mod.tile.hopyamhillgolding.crop.name=Yamhill Golding Crop +bbs_mod.tile.hopyeoman.crop.name=Yeoman Crop +bbs_mod.tile.hopzenith.crop.name=Zenith Crop +bbs_mod.tile.hopzeus.crop.name=Zeus Crop +bbs_mod.tile.hopzythos.crop.name=Zythos® Crop + +item.admiral.pellet.name=Admiral Pellets +item.ahtanum.pellet.name=Ahtanum Pellets +item.amarillo.pellet.name=Amarillo® Pellets +item.aquila.pellet.name=Aquila Pellets +item.aramis.pellet.name=Aramis Pellets +item.aurora.pellet.name=Aurora Pellets +item.banner.pellet.name=Banner Pellets +item.bcgolding.pellet.name=BC Golding Pellets +item.bittergold.pellet.name=Bitter Gold Pellets +item.blanc.pellet.name=Blanc Pellets +item.bobek.pellet.name=Bobek Pellets +item.bramlingcross.pellet.name=Bramling Cross Pellets +item.bravo.pellet.name=Bravo Pellets +item.brewersgoldgermany.pellet.name=Brewer's Gold Germany Pellets +item.brewersgoldusa.pellet.name=Brewer's Gold USA Pellets +item.bullion.pellet.name=Bullion Pellets +item.cascade.pellet.name=Cascade Pellets +item.celeia.pellet.name=Celeia Pellets +item.centennial.pellet.name=Centennial Pellets +item.challenger.pellet.name=Challenger Pellets +item.chelan.pellet.name=Chelan Pellets +item.chinook.pellet.name=Chinook Pellets +item.citra.pellet.name=Citra Pellets +item.cluster.pellet.name=Cluster Pellets +item.columbus.pellet.name=Columbus Pellets +item.comet.pellet.name=Comet Pellets +item.crystal.pellet.name=Crystal Pellets +item.drrudi.pellet.name=Dr Rudi Pellets +item.eastkentgolding.pellet.name=East Kent Golding Pellets +item.ekuanot.pellet.name=Ekuanot Pellets +item.ella.pellet.name=Ella Pellets +item.eroica.pellet.name=Eroica Pellets +item.falconersflight.pellet.name=Falconers Flight® Pellets +item.firstgold.pellet.name=First Gold Pellets +item.fuggleuk.pellet.name=Fuggle UK Pellets +item.galaxy.pellet.name=Galaxy Pellets +item.galena.pellet.name=Galena Pellets +item.glacier.pellet.name=Glacier Pellets +item.gold.pellet.name=Gold Pellets +item.goldinguk.pellet.name=Golding UK Pellets +item.goldingusa.pellet.name=Golding USA Pellets +item.greenbullet.pellet.name=Green Bullet Pellets +item.hallertaumittelfruh.pellet.name=Hallertau Mittelfruh Pellets +item.hallertauusa.pellet.name=Hallertau USA Pellets +item.hbc431experimental.pellet.name=HBC 431 Experimental Pellets +item.hbc438experimental.pellet.name=HBC 438 Experimental Pellets +item.hbc472experimental.pellet.name=HBC 472 Experimental Pellets +item.hbc682experimental.pellet.name=HBC 682 Experimental Pellets +item.helga.pellet.name=Helga Pellets +item.herald.pellet.name=Herald Pellets +item.herkules.pellet.name=Herkules Pellets +item.hersbrucker.pellet.name=Hersbrucker Pellets +item.horizon.pellet.name=Horizon Pellets +item.huellmelon.pellet.name=Huell Melon Pellets +item.hullerbitterer.pellet.name=Huller Bitterer Pellets +item.kohatu.pellet.name=Kohatu Pellets +item.liberty.pellet.name=Liberty Pellets +item.loral.pellet.name=Loral® Pellets +item.lubelska.pellet.name=Lubelska Pellets +item.magnum.pellet.name=Magnum Pellets +item.mandarinabavaria.pellet.name=Mandarina Bavaria Pellets +item.merkur.pellet.name=Merkur Pellets +item.millenium.pellet.name=Millenium Pellets +item.mosaic.pellet.name=Mosaic® Pellets +item.motueka.pellet.name=Motueka Pellets +item.mounthood.pellet.name=Mount Hood Pellets +item.mountrainier.pellet.name=Mount Rainier Pellets +item.nelsonsauvin.pellet.name=Nelson Sauvin Pellets +item.newport.pellet.name=Newport Pellets +item.northdown.pellet.name=Northdown Pellets +item.northernbrewer.pellet.name=Northern Brewer Pellets +item.nugget.pellet.name=Nugget Pellets +item.olympic.pellet.name=Olympic Pellets +item.omega.pellet.name=Omega Pellets +item.opal.pellet.name=Opal Pellets +item.orion.pellet.name=Orion Pellets +item.pacifica.pellet.name=Pacific Gem Pellets +item.pacificgem.pellet.name=Pacific Jade Pellets +item.pacificjade.pellet.name=Pacifica Pellets +item.palisade.pellet.name=Palisade® Pellets +item.perlegermany.pellet.name=Perle Germany Pellets +item.perleusa.pellet.name=Perle USA Pellets +item.phoenix.pellet.name=Phoenix Pellets +item.pilgrim.pellet.name=Pilgrim Pellets +item.pioneer.pellet.name=Pioneer Pellets +item.polaris.pellet.name=Polaris Pellets +item.premiant.pellet.name=Premiant Pellets +item.prideofringwood.pellet.name=Pride of RingWood Pellets +item.progress.pellet.name=Progress Pellets +item.rakau.pellet.name=Rakau Pellets +item.record.pellet.name=Record Pellets +item.riwaka.pellet.name=Riwaka Pellets +item.saaz.pellet.name=Saaz Pellets +item.santiam.pellet.name=Santiam Pellets +item.saphir.pellet.name=Saphir Pellets +item.satus.pellet.name=Satus Pellets +item.savinjskigolding.pellet.name=Savinjski Golding Pellets +item.select.pellet.name=Select Pellets +item.simcoe.pellet.name=Simcoe® Pellets +item.smaragd.pellet.name=Smaragd Pellets +item.sorachiace.pellet.name=Sorachi Ace Pellets +item.southerncross.pellet.name=Southern Cross Pellets +item.sovereign.pellet.name=Sovereign Pellets +item.spalt.pellet.name=Spalt Pellets +item.sterling.pellet.name=Sterling Pellets +item.sticklebract.pellet.name=Sticklebract Pellets +item.strisselspalt.pellet.name=Strisselspalt Pellets +item.styriangolding.pellet.name=Styrian Golding Pellets +item.summer.pellet.name=Summer Pellets +item.summit.pellet.name=Summit Pellets +item.superalpha.pellet.name=Super Alpha Pellets +item.superpride.pellet.name=Super Pride Pellets +item.sussex.pellet.name=Sussex Pellets +item.sylva.pellet.name=Sylva Pellets +item.tahoma.pellet.name=Tahoma Pellets +item.talisman.pellet.name=Talisman Pellets +item.target.pellet.name=Target Pellets +item.tettnangergermany.pellet.name=Tettnanger Germany Pellets +item.tettnangerusa.pellet.name=Tettnanger USA Pellets +item.tomahawk.pellet.name=Tomahawk® Pellets +item.tradition.pellet.name=Tradition Pellets +item.triplepearl.pellet.name=Triplepearl Pellets +item.triskel.pellet.name=Triskel Pellets +item.ultra.pellet.name=Ultra Pellets +item.vanguard.pellet.name=Vanguard Pellets +item.waiiti.pellet.name=Wai-iti Pellets +item.waimea.pellet.name=Waimea Pellets +item.wakatu.pellet.name=Wakatu Pellets +item.warrior.pellet.name=Warrior® Pellets +item.whitbreadgolding.pellet.name=Whitbread Golding Pellets +item.willamette.pellet.name=Willamette Pellets +item.yakimacluster.pellet.name=Yakima Cluster Pellets +item.yamhillgolding.pellet.name=Yamhill Golding Pellets +item.yeoman.pellet.name=Yeoman Pellets +item.zenith.pellet.name=Zenith Pellets +item.zeus.pellet.name=Zeus Pellets +item.zythos.pellet.name=Zythos® Pellets \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json new file mode 100644 index 0000000..eee9d6d --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage0" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json new file mode 100644 index 0000000..41a440d --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage1" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json new file mode 100644 index 0000000..f87748a --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage2" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json new file mode 100644 index 0000000..ef2addd --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage3" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json new file mode 100644 index 0000000..6853510 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage4" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json new file mode 100644 index 0000000..df0dcc9 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage5" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json new file mode 100644 index 0000000..5111aae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage6" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json new file mode 100644 index 0000000..77d63a2 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json @@ -0,0 +1,6 @@ +{ + "parent": "block/crop", + "textures": { + "crop": "bbs_mod:block/hops_stage7" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json new file mode 100644 index 0000000..9a81357 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json @@ -0,0 +1,204 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "particle": "bbs_mod:block/microbrewer", + "0": "bbs_mod:block/microbrewer" + }, + "elements": [ + { + "name": "back", + "from": [ 1.0, 0.0, 2.0 ], + "to": [ 15.0, 16.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base", + "from": [ 1.0, 0.0, 3.0 ], + "to": [ 15.0, 1.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "front_lower", + "from": [ 1.0, 0.0, 13.0 ], + "to": [ 15.0, 4.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "top", + "from": [ 1.0, 15.0, 3.0 ], + "to": [ 15.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "cover_right", + "from": [ 1.0, 1.0, 3.0 ], + "to": [ 2.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "cover_left", + "from": [ 14.0, 1.0, 3.0 ], + "to": [ 15.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "front_top", + "from": [ 1.0, 12.0, 13.0 ], + "to": [ 15.0, 16.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 3.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base_upper", + "from": [ 2.0, 4.0, 4.0 ], + "to": [ 14.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "base_endleft", + "from": [ 1.0, 4.0, 13.0 ], + "to": [ 2.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 0.0, 10.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "base_endright", + "from": [ 14.0, 4.0, 13.0 ], + "to": [ 15.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "case_base", + "from": [ 3.0, 5.0, 5.0 ], + "to": [ 13.0, 6.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_back", + "from": [ 3.0, 6.0, 5.0 ], + "to": [ 13.0, 11.0, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_front", + "from": [ 3.0, 6.0, 11.0 ], + "to": [ 13.0, 11.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_left", + "from": [ 3.0, 6.0, 6.0 ], + "to": [ 4.0, 11.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_right", + "from": [ 12.0, 6.0, 6.0 ], + "to": [ 13.0, 11.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json new file mode 100644 index 0000000..25d35d4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json @@ -0,0 +1,139 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "particle": "bbs_mod:block/microbrewer", + "0": "bbs_mod:block/microbrewer" + }, + "elements": [ + { + "name": "back", + "from": [ 1.0, 0.0, 2.0 ], + "to": [ 15.0, 16.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base", + "from": [ 1.0, 0.0, 3.0 ], + "to": [ 15.0, 1.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "front_lower", + "from": [ 1.0, 0.0, 13.0 ], + "to": [ 15.0, 4.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "top", + "from": [ 1.0, 15.0, 3.0 ], + "to": [ 15.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "cover_right", + "from": [ 1.0, 1.0, 3.0 ], + "to": [ 2.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "cover_left", + "from": [ 14.0, 1.0, 3.0 ], + "to": [ 15.0, 15.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } + } + }, + { + "name": "front_top", + "from": [ 1.0, 12.0, 13.0 ], + "to": [ 15.0, 16.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 3.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "base_upper", + "from": [ 2.0, 4.0, 4.0 ], + "to": [ 14.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } + } + }, + { + "name": "base_endleft", + "from": [ 1.0, 4.0, 13.0 ], + "to": [ 2.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 0.0, 10.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "base_endright", + "from": [ 14.0, 4.0, 13.0 ], + "to": [ 15.0, 5.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json new file mode 100644 index 0000000..7cf44b9 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json @@ -0,0 +1,74 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "particle": "bbs_mod:block/microbrewer", + "0": "bbs_mod:block/microbrewer" + }, + "elements": [ + { + "name": "case_base", + "from": [ 3.0, 0.0, 5.0 ], + "to": [ 13.0, 1.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_back", + "from": [ 3.0, 1.0, 5.0 ], + "to": [ 13.0, 6.0, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_front", + "from": [ 3.0, 1.0, 11.0 ], + "to": [ 13.0, 6.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_left", + "from": [ 3.0, 1.0, 6.0 ], + "to": [ 4.0, 6.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "case_right", + "from": [ 12.0, 1.0, 6.0 ], + "to": [ 13.0, 6.0, 11.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, + "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json new file mode 100644 index 0000000..820f869 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "bbs_mod:block/modeltexture" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json new file mode 100644 index 0000000..8ede004 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json @@ -0,0 +1,43 @@ +{ + "forge_marker": 1, + "defaults": { + "custom": { "flip-v": true }, + "model": "bbs_mod:boilingpot.obj" + }, + "variants": { + "normal": [{}], + "inventory": [{ + "transform": { + "gui": { + "rotation": [ + { + "x": 20 + }, + { + "y": 0 + }, + { + "z": 0 + } + ], + "translation": [ + 0, + 0.5, + 0 + ], + "scale": 2.0 + } + } + + } + ], + "facing": { + "north": {"y": 90}, + "south": {"y": 270}, + "west": {"y": 0}, + "east": {"y": 180}, + "up": {"x": 0}, + "down": {"x": 0} + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json new file mode 100644 index 0000000..69437b2 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json new file mode 100644 index 0000000..f26ac5b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json new file mode 100644 index 0000000..3a6f86a --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm10" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json new file mode 100644 index 0000000..a37d70d --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json new file mode 100644 index 0000000..ba34957 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json new file mode 100644 index 0000000..fb6c329 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json new file mode 100644 index 0000000..3e14b9d --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json new file mode 100644 index 0000000..c90552e --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json new file mode 100644 index 0000000..ebcc118 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json new file mode 100644 index 0000000..693c81c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm8" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json new file mode 100644 index 0000000..7d0efff --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerbucket_srm9" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json new file mode 100644 index 0000000..70a5c9c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/beerkeg" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json new file mode 100644 index 0000000..013f419 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/wortkeg" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json new file mode 100644 index 0000000..5ed0b58 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json new file mode 100644 index 0000000..0c4999f --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/lme" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json new file mode 100644 index 0000000..013f419 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/wortkeg" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json new file mode 100644 index 0000000..86a351e --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/priming_sugar" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json new file mode 100644 index 0000000..cd0fb90 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/sanitizer" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json new file mode 100644 index 0000000..0f33566 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/spoon" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json new file mode 100644 index 0000000..3abd71b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/stirringspoon" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json new file mode 100644 index 0000000..ecf0a92 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/thermometer" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json new file mode 100644 index 0000000..afe84f7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/watergallon" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json new file mode 100644 index 0000000..d72c13a --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/waterkeg" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json new file mode 100644 index 0000000..37ef546 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/wortbucket" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json new file mode 100644 index 0000000..013f419 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/wortkeg" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json new file mode 100644 index 0000000..51f826e --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/yeast" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json new file mode 100644 index 0000000..99dc38c --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage0" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json new file mode 100644 index 0000000..e68f0ce --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage1" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json new file mode 100644 index 0000000..3980aac --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage2" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json new file mode 100644 index 0000000..372fbae --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage3" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json new file mode 100644 index 0000000..66447bc --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage4" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json new file mode 100644 index 0000000..2bb8b26 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage5" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json new file mode 100644 index 0000000..a32cdc7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage6" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json new file mode 100644 index 0000000..68147a4 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json @@ -0,0 +1,18 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:block/hops_stage7" + }, + "display": { + "thirdperson": { + "rotation": [ -90, 0, 0 ], + "translation": [ 0, 1, -3 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson": { + "rotation": [ 0, -135, 25 ], + "translation": [ 0, 4, 2 ], + "scale": [ 1.7, 1.7, 1.7 ] + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json new file mode 100644 index 0000000..ef4db25 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/hopsleaf" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json new file mode 100644 index 0000000..4cb8975 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/pellet" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json new file mode 100644 index 0000000..1226d4b --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/rhizome" + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json new file mode 100644 index 0000000..c788179 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json @@ -0,0 +1,20 @@ +{ + "result": { + "item": "bbs_mod:keg", + "count": 1 + }, + "pattern": [ + "iii", + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:iron_ingot" + }, + "r": { + "item": "bbs_mod:sanitizer" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json new file mode 100644 index 0000000..1caf359 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json @@ -0,0 +1,22 @@ +{ + "result": { + "item": "bbs_mod:microbrewer" + }, + "pattern": [ + "iri", + "ici", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "c": { + "item": "minecraft:cauldron" + }, + "i": { + "item": "minecraft:iron_ingot" + }, + "r": { + "item": "bbs_mod:admiral.rhizome" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json new file mode 100644 index 0000000..77c8925 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json @@ -0,0 +1,19 @@ +{ + "result": { + "item": "bbs_mod:micropack", + "count": 4 + }, + "pattern": [ + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:glass_pane" + }, + "r": { + "item": "bbs_mod:admiral.hop" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json new file mode 100644 index 0000000..07c96ee --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json @@ -0,0 +1,20 @@ +{ + "result": { + "item": "bbs_mod:sanitizer", + "count": 8 + }, + "pattern": [ + "iii", + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:glass_pane" + }, + "r": { + "item": "minecraft:water_bucket" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json new file mode 100644 index 0000000..33bea16 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json @@ -0,0 +1,15 @@ +{ + "result": { + "item": "bbs_mod:watergallon", + "count": 1 + }, + "pattern": [ + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:water_bucket" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json new file mode 100644 index 0000000..9223dd7 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json @@ -0,0 +1,18 @@ +{ + "result": { + "item": "bbs_mod:waterkeg", + "count": 1 + }, + "pattern": [ + "ir" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "bbs_mod:keg" + }, + "r": { + "item": "bbs_mod:watergallon" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json new file mode 100644 index 0000000..40dd2b5 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json @@ -0,0 +1,18 @@ +{ + "result": { + "item": "bbs_mod:wortkeg", + "count": 1 + }, + "pattern": [ + "ir" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "bbs_mod:hotwortkeg" + }, + "r": { + "item": "minecraft:ice" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json new file mode 100644 index 0000000..c6d9045 --- /dev/null +++ b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json @@ -0,0 +1,20 @@ +{ + "result": { + "item": "bbs_mod:yeast", + "count": 8 + }, + "pattern": [ + "iii", + "iri", + "iii" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:wheat" + }, + "r": { + "item": "minecraft:water_bucket" + } + } +} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage0.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage0.png new file mode 100644 index 0000000000000000000000000000000000000000..27388ca7a358cfec6b33df508d54e45542dc9a22 GIT binary patch literal 3609 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 ON*XFU%5M}O1^yR|P1jKX literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage3.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage3.png new file mode 100644 index 0000000000000000000000000000000000000000..6bfefe0326c0238b6eff71afdf56f479096eeb3a GIT binary patch literal 11390 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 e^r9Pph@h4-(=FcPRrb#x!Af#(Wh(ze)qmV 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 OUF4*cC96K0hWsD5Z&h&s literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage6.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage6.png new file mode 100644 index 0000000000000000000000000000000000000000..4c6fdbb0df0033c0f2278a7c39c007142efb4db8 GIT binary patch literal 13654 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 HnuYuy*x(l+ literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage7.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage7.png new file mode 100644 index 0000000000000000000000000000000000000000..90b0c7ae162838d1d18285102c704c83cde86b68 GIT binary patch literal 13897 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 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/modeltexture.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/modeltexture.png new file mode 100644 index 0000000000000000000000000000000000000000..cfadbb25f503952afa6d07b3caa6c8de8737b495 GIT binary patch literal 537 zcmV+!0_OdRP)TuuN003B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00DhTL_t(2&vjBwO9D|8 zJ-!*|h!$CQi(fcz)(EWgulGNprsnlW%p8E1+m0bsws>zHyf zoU=R`&Izr{R;S-2G)x1Q1c2$&JE373u%PKphI5i}Ov%lHtE222z`@a;XZcAU5&apz zG3XB3p5;%5^Egw2^IWq6;O^=HfNi)OR&yHUGroS+6olqSsAj^=YZ%=`LK^S&&3;PGXQEzSw@%BFb&o} bEbaOQZgR*If^der00000NkvXXu0mjfdgtTk literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewer_gui.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewer_gui.png new file mode 100644 index 0000000000000000000000000000000000000000..ad5598d56a99bd24e9d194ef5714232126ad8b6a GIT binary patch literal 2196 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K58911MRQ8&P5Fo{p?&#~tz_78O`%fY(0|PTd zfKP}kP~6kBO~L6kL&+!4FCVjcXxLmJ9g~<|NlVQQ7{?;!#D({o@d_;$|xm4 ze!;*5Kav4M@OO4qU{rG!ctjR6Fz_7$VMb96uLhu?WQl7;NpOBzNqJ&XDnmhHW?qS2 zUTTSgiJpO;kwKe!B(R`i{^{xB7*Y}U_D*l!DhCnQ#GI+~zt<C_U>=-n`vqvz}Ml^zXdUCCmQ$Szgw10SSH2gvyvUAqL&G^-{YlW%M`x zc)eJ{VNaBFZEfk}o$|*v_6IB2Zs}rHW!PKAtlHqs)uIJ(e za?Uc&`5jUH=S#bV=(#?I=`U@1o`1RQFA{aMaTasLx`rPQj~8oXh_Yw#CCqxX_q`Es zA!i7igkSkm^ZVk{?=fGxxql8@Z43`kc^$h2Z~5MXGldu)i*&zVZnv)C#sw|DD>4UC zz2q4(KW===VQ_5Xk*_P&!7jM7O>WAy&jn|hpDeyqCAY4YL3SFDE6-41tGD*~Lp#O< zO9K$iq#!#JDE^i)W_rzZ+XGMdKIF1|s11(W|9y7Cn)^};Ywt@YMAox5nD13wv^FLV z$SQwh&k(g=*CB4d?txiAt*(q^`O-Us^5q#9Jk|>fY`Dwr{%%RWg%rb8hEp}qOnCyH zZI?4|xEqH?_ zkKtBa5zB>Vrp^qxn)VF2Pu?(?T$f_ouwOAqjbY2ZSYL)5^}oT(>$w=#mWNAEcZe#l zvk8A(FJZ|Suy@z=1DifnTzYSw|Lb|7Z287I_8YMme)?1k*pKNcpiZ_tTjIKAJOaZ}S<)d}-?&NuvKxUlOw!v*m;31CVCdP$6d;SXCvx$}}% zAfEwfB9Lrgb(sG(`nP@Y-U|O*hQGVEo9(?V2a*N>hvTt25EhVZQ2aYT#C-4Vd8Zh5 zz26l2@m}AvYxBQdVY@JMTiC~xx;%cEN{CHRp2J>i%cb8!*e=vgU)%M)%w+q&Ez8Xs z&TZM+rT)3N8m0y67%2DE-IJPImm4`qgDP9AcS)%XcdPHNs;Cbye(hhK#r)!O+S*6# zw{Yt|s|(fLV16K+w_&IE`rAID4A1=5-*q~AeLlk@ql{&*9jC83gTe~DWM4fL+sha literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewergui.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewergui.png new file mode 100644 index 0000000000000000000000000000000000000000..b76098d3015de40e07415d690b479988b105593d GIT binary patch literal 1997 zcmbVNe@qi+82(zALlh;NMRWmgWf4i%Uau_&y|i#`uO~REq%_!w7>@RkleSl{S6g+- z>Tq*7gIh*0`@z6}tV@g`%c9#bvCcU%XB4xcYzpH1JE)-OO0U&j;k*eQBE7hD+?b)x7eP&5<@sX|&6FRVi`y;xHlH+>=r2&*Ah3LI<-(8q*B4_G` zD!!zJcgfp(8kS!7H(gylBjm+rzcWPd=x?x}Ad`-dboBkcvfv*qt3B<~aC>Iv!Aj4S zx@_*6wCoLDXo+9F63siN{-UPuPU=7 zHv{gyy!e=*{RfaS^WdqG-nK(?V)x|D;rs7Z|JgP2`AG{oIsGKP$ohpdD`Jp%_RX91 zAD=ABI84r}**Sc_*6EdM}Em{my=zGlYUf!?!RA%RkY1{t+Q{x zt2KJ=ZpFZYe!1uF%~+i5XbOH()phIbX)Q_zm9RYV#9RU&8_O9kkd~zYLZhV@W@g?_e=A)?k|5x z3_}cz0B+IhrZ@nNN zb@Wbi&-Tb(d1dsiU{+K`R2d;3>I-MP`eG0fDiM?kMU9kg2{@`GUSu1{mSE=TpD z(N>Y6-H$xkMai?@-;gomqgk!-2Y@xSo!+=@$(83L@xQ9Fs>`z?dilX^ElpLjr5C6d zQ>N+eGkuD{X?g0rJd+}{OO8Bk0v}U!T(d-Epyit-*Dv*-NQeKgpu}pU4w$Ro_!rlT BRM7wc literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui.png new file mode 100644 index 0000000000000000000000000000000000000000..b2211b750571fb9fae827b3dda12b1374ffeaeed GIT binary patch literal 1237 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K58911MRQ8&P5C#Tjh5(-sS0EP%%+1Y1Lqof} zyN?|^_W%EXh~OwW8Un*U1d^tF&INjsu_VYZn8D%MjWiG^$=lt9p@UV{1IXbl@Q5sC zVBk9l!i+m6X1@grvX^-Jy0SmuVc|DoDAT)P0o3E?>EaktaqI1EL$1RHJPv^?H`e}F z-X8mSkOY49nMl$bBY5M6eysf zb3*5Ya1REN@%{6>U`B^055L!Q jz6ti2q~eJey}U6`@aw;#s}mnJf{gWa^>bP0l+XkKcPV?{ literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui_old.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui_old.png new file mode 100644 index 0000000000000000000000000000000000000000..b54a010632f216463ecf509b4aadb09b3d3aaa43 GIT binary patch literal 1161 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G$6&6|H(?D8gCb z5n0T@z_%5I8IucVoB#^4mw5WRvOnP9i>u zX4#vNw;z@;xVS8tvMMe^#@)JXRoR{MyIC1n7z7v`Kz>7GK*e61SooR2OEZ4|^;qSl zB9`gaWfg*l-$oR)>lUPawsChk^0i9#-M+HIvUSs=89wmfFbvapB1ISrIME&V!}MO? zpQV|zR>iNFl62hfDxW`>gNuvT%2%z&3b!OL&q|LCzrQh$5vK)E?^YGQuxSW7b^U$m zbq`I~b2s~B=2KW7^*4JMj z_hUI_d3=*j*&CZ9oeuLD8JHM27!(+Q0gk}{i|E`~vZ=UBR-I|&~NqD&r;SqU`e6jy|mu+)6a}P%)WP7uhF03 zz{IG$+xz($s_mD7(o)R#ImLVS@4vnA^M^ip)osS-H~TX@5QD{g)rZCVd1nN5&Dkt# zy{F@_JzLI4wTNj)`{uS!398v{R`T2M!R_*YirG)*Bu9!_m&qCRE&k8`KoXC09|(cN z@Cz`c$qz%z5(N(z6HCF2*laN;2Y!+w2+JjMgY!0>EXCu1eD<><--OGQ8m zDuNi47M)zVuI$Z~Hx&VI;od{bBfvBU$u|p>{aCjZuado0pk=_(0M7^wemv7p9}Q)g e&p-$?RM#`Ah}iZ``p%gMQtRpJ=d#Wzp$P!#BxUFT literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerbucket.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerbucket.png new file mode 100644 index 0000000000000000000000000000000000000000..e8cde393db39780864761d2f461c48e788248020 GIT binary patch literal 1586 zcmaJ>eM}Q~7`_%u5GCl0sL1ek==_3STiU~(l+T0Fjj~!g!HpnCd)N!!hj#}pUs`EI z7q?6^7G=hvviJ@7$NWf$AlsBVXNcJxn+o`m0b8AgAOnTjT`S=J7`xov@8h2Ld7t0= zKDiH#S#N~|hX(@y5Teh(OyZd2dx8SR_i1ulk2ow5(sG4trbw{k904R-nL+~8Q}`Cb zMBvu4ZP$r-00@9cbFPqU$V4p+CC7ajxr1WGXaI;$bg;Okm=M51Vhc&@AWush1d>)A zl%p{y3~VZ4BQwf5BD*}xY$-3cXsu9U0vPW=MFNTtaL_?*rFqn$gZ#XxIQMPC5a@>p z#X9Jvs9b{)Ol3F%)W~CFEDEI(L=d@Btw9iFG^kQ2Rj@+5kr<^K)gY)U4xGFoF&k$s zLQPouWG-=~gKUDpqA+Z?+vWCHIm2y%m0GRV$DvZih=>@zj23W549!PPF<=C5;Yd~> z85;C4;)P6!po2uEFONX6)3h`{SthYyumfjdrCi}V(iG5O_Fr1lTwoX;iXk!G1w=pc3nvH;~a!A_B*!k6dyupC# zXNh^wI)tWd&o2u5VOH(S-;w{xPc7llc>0YG|Ok0qNOcOHLW*lWTUkCZo`OxuLT&TWsrHoIDi zmo9)Z4&4b-UD^{C*!X-A6>jTFwB7ywPT$5Q#?^H}Da-4wCOx!$+}D+tNW1y4oUQa` z#~0lXT1PL#9sSzTcu$2UqGPC$8>?Cy2_?IkB_Rf;M&njDgnz&kc z%NQtrxxZ=gjlZNrj(a0D-AiLCoy)WrqH7Nu2cQ?w@#~Oeu)E*sejdE5`smzw66nhM zkc>A!Re+@>R}ln)JrYOcJisq5^Q zB$m}48-20j%KDtveHT|64t9?11bXd^G=Z*{^z`&d^UmC^m59fiNDr}{Ki9j1t&m>Y zUY*_g?5hW8Z{Pci2RHD**o(#mPgl5GtWgoqfX|#kW3KRmyU6|Z6|lsfuaiwwdS&?@ z!I&L9KCtvj!mNq&zkVyLKN@;4)99*hKQgJO07-4`v8e$jt-%@hGwVIl>j^-}-W}mp zA32-}&d&Mi-@I`lOrXy_*6w~gX;wzSJy-E*y@zP}{bofc5PGVprMqdo`effG*VuEX z+EumFUzK4pNq)f9__ukD?AX4WMR?_^h|)h_zf=<-LDw#CZX39q-`pk1IrCoCGEj;+ zcZZ*|?Ksj+H^iOz{I~pq_{au$olbVoJ(8z!bqtsL3lY8WTA4StHtWRD(qp-E$H!&k zPxFS)&X4_LG%+$#+GJkyvK?(FBoTF)*R~By&dzSQ_1$@Izpl-6>Pzn&(G7#4#ZJFE d@0#tw3PAStll-QZALjY~;`+2KtSP0S`X8ykQ&<21 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerkeg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerkeg.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8a5156ed46cb37346d2b704216ec65c9256c34 GIT binary patch literal 741 zcmV(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;Ye_^wRCwC#o4ZaMK@^5Ro5d(1($e4*6i5*w7F8r#THb*-LE?dUjnru~~m6@9-(VW>i(iC3r+UNiFTy}PMsH%$kFxVk*4m<%>B;!f>bf|ND zsa8h-UxE9GgxANt^6{Sl*a5C17C#@?%GaO(J^&X2#Lvft@;MlQGeP3#e0rl&xTfLsG|7jT~pO)%U~6J!%$-DNWLF(L8uE8b0)6qu5p&0JGpirsSq zDdN|bY1K`J{-{()VKOxG=>j9$FcM&103ICoPY%E+p#qozG`$8qgaR;WdJ!y|o&w2r zf#N?D!I?^(Vj+bJ4bYhyGeD`8+oF3H!CfC%`lDuNZw+zS?PZTs?jaeCPGaacsh;%C}>ell?LP XrW}G5hU!BU00000NkvXXu0mjfq;fc! literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/bucket_fluid.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/bucket_fluid.png new file mode 100644 index 0000000000000000000000000000000000000000..8efdbd9cd82e2994c2a4d067f40b80122cd5c82e GIT binary patch literal 225 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 DWk+Y} literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/keg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/keg.png new file mode 100644 index 0000000000000000000000000000000000000000..bf56bd2700dcd26279b6338e24bdd5eee1a7b37c GIT binary patch literal 1386 zcmV-w1(o`VP)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ=@JU2LRCwCFSxs-;L>PYF8Gr0{n`~%Aqf&aHDzxH4q#{mSD>(Pme}KdhK`Z(P z%AtP%PMrE1%1`K}632dAsDgk7qNK?-S=%!Y2e0k*+T+?V>G-hYo$!@a;YpmMq-qDX|%hxaQOZ`jLSmE=ca|dxqNXt_ZbB|SX z&P~2%bM>MHjW0f4#wPI4WZJU2n*-P2xe2Usuf7UE<4P$#>kERas9b^W25=csiCp;t zV3V>N;c_>CYc&P-#esOkDPkvpZvhc+dhpe70HIe!R89baQv{`#loiL~)^_(i+7iPX z09-AXlRjix6pr~MYn2j^X$FacC567avR=&10Pl0 z*IsqN)T!*cl<+*>Mmz7;foYR<8fFQu>2*=~`7|<>5m@76R0xAB@ z@kt3Y2dtwg0*-ocV1aE7O3>5Z`mOan4t>TJ0E0^{S!fq{#KwM0bod2Y9)&$EDJ>v7%BlQ1xoTV zLjg!B0JO-WSSU6zXMi+l=RiFeWza+98bOeOu)~t43}JgPIy;0s!2cR615EPzXjKUf z-d3|N5g5EN6ONF!FkBBoZ=qfJz-uh3xbHzGGn)cBT4B81dGdPU*3V2f-wQ{hbpdnV zLDHH(o*(X)8Qy2X$fP2oME_8j)y!=LvjV{0ubZEY&bDvh%BS5M{9wCoqG1dWv}grT zXL%X0W(U4JU|C6LOWSk;D2L|WU9nV=y$^uNmj8IjApqj3f7@e2&>aA*_Dz0v)JF%7 zmJHi-d$~7A3D?$r1Gw~lJAlBU1JTKRZ&v`(I!&Mdwn*sDUASN}Ype6JC=Nr~G$l+1 z2?J5!B6xx%;!!*z_xA+T%|QU}0Wm7fm;R>>ZnjhD5W%Uo4gkAv1;DOb1W$a`!o?v+ ze$;mi>!eZ#@U-gQCQSwbd6cY=lt^9z2|(KX5Fjs!ird^-iL80d#O6i~Swa5uxtOfpYjK&BR|4dLM&D0AzdKIFJbX zir`rlwi9n@x-qJf#{`1v~B9k0%iGo_3i(0}aG&G|v>vr~y zYrC7nuHqDB$o!kDRGYVEG5*3Sq@)0V18n6LZP%^Y9Cu((g}lX`mV&zV?)VlG@3*E2 sZnaW%+@9aSBN%VQ4IbsH-30LO0Pn6a?^Sx|aR2}S07*qoM6N<$f>M)q3jhEB literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/lme.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/lme.png new file mode 100644 index 0000000000000000000000000000000000000000..13ad1a4971bf662293bc4cf7911f094192b60fb6 GIT binary patch literal 4394 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 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/priming_sugar.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/priming_sugar.png new file mode 100644 index 0000000000000000000000000000000000000000..045c3ea2edc2f80cb7eae308eea92301551982b9 GIT binary patch literal 3052 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 Of4jMO5idFKO8Pe(W)dm@ literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/rhizome.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/rhizome.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c61dc73100ecb6427a3ef79cedf525aab47ee3 GIT binary patch literal 7346 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 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/watergallon.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/watergallon.png new file mode 100644 index 0000000000000000000000000000000000000000..cb3b94156dfd8a513de9c8c480b2abb493f7c09c GIT binary patch literal 5855 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 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/waterkeg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/waterkeg.png new file mode 100644 index 0000000000000000000000000000000000000000..1d030694d3d53201b265ceaa204dc421206bb296 GIT binary patch literal 768 zcmV+b1ONPqP)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;hDk(0RCwC#n?Fz6Kp2M~CzJ{`k~2^`bVCRtrXtp^>>aCqfzJIB{V2@+2A#XG z6E;ML5(W^sr3mL3a;UC3+vkgs?mgct-4H8Ie!s`>dw*;nN-4^%A@+eo;1*Dxv|Fud zzfQQ(YfAv{fNPJ8m)o`0_$&b40%snZe{5%3Yo`F#fFl9sAKQ`E+z4O=yZ8d^6%QoI z-~x|Asrh>06n049O~OqK;O1hxbN*wP-H0c--Rf&r{* z56%E4K9Bvzas8>rNoN3j9RV7&bqgT0jxYjfIC&=k06VU0f!Dyfv`)~lCIHv~W+tz7 ztHEuHAC?l^z^rWvY!FUVda28RRATy9Wb4=kz*y28z;u70>SEfKz&M~17`p&S0|F2; zpzi?EzL!AEfY=AbQK0=|=$^v;G~qMBd*Fr9YXyK2izlri#YicY*_J>~crkBV0(lXT z@Di8;z*5L;$8(X>*cchSeVc zf**@Hm%uEb5}3JU!14bpMA56kV;2C^@&UoC!Kq6LoCB8ur2i$Q_Z(~i)TWN0sP)hU zU>X2`=`sL%p8>H1q|F4|i~u$OPFU>05j7JmXjR&SGk`z9so?ZK)gGJyNFNCrwGWo< zL?m~BwgA2h2GFS8X4~9L;1`ezdsX%dcmw?XcU+miY_)UrGmB@1Qg)8!T64447JG+3 y0(Sz;-)XIM4FKQ(_~B_b8cBfw literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortbucket.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortbucket.png new file mode 100644 index 0000000000000000000000000000000000000000..e8cde393db39780864761d2f461c48e788248020 GIT binary patch literal 1586 zcmaJ>eM}Q~7`_%u5GCl0sL1ek==_3STiU~(l+T0Fjj~!g!HpnCd)N!!hj#}pUs`EI z7q?6^7G=hvviJ@7$NWf$AlsBVXNcJxn+o`m0b8AgAOnTjT`S=J7`xov@8h2Ld7t0= zKDiH#S#N~|hX(@y5Teh(OyZd2dx8SR_i1ulk2ow5(sG4trbw{k904R-nL+~8Q}`Cb zMBvu4ZP$r-00@9cbFPqU$V4p+CC7ajxr1WGXaI;$bg;Okm=M51Vhc&@AWush1d>)A zl%p{y3~VZ4BQwf5BD*}xY$-3cXsu9U0vPW=MFNTtaL_?*rFqn$gZ#XxIQMPC5a@>p z#X9Jvs9b{)Ol3F%)W~CFEDEI(L=d@Btw9iFG^kQ2Rj@+5kr<^K)gY)U4xGFoF&k$s zLQPouWG-=~gKUDpqA+Z?+vWCHIm2y%m0GRV$DvZih=>@zj23W549!PPF<=C5;Yd~> z85;C4;)P6!po2uEFONX6)3h`{SthYyumfjdrCi}V(iG5O_Fr1lTwoX;iXk!G1w=pc3nvH;~a!A_B*!k6dyupC# zXNh^wI)tWd&o2u5VOH(S-;w{xPc7llc>0YG|Ok0qNOcOHLW*lWTUkCZo`OxuLT&TWsrHoIDi zmo9)Z4&4b-UD^{C*!X-A6>jTFwB7ywPT$5Q#?^H}Da-4wCOx!$+}D+tNW1y4oUQa` z#~0lXT1PL#9sSzTcu$2UqGPC$8>?Cy2_?IkB_Rf;M&njDgnz&kc z%NQtrxxZ=gjlZNrj(a0D-AiLCoy)WrqH7Nu2cQ?w@#~Oeu)E*sejdE5`smzw66nhM zkc>A!Re+@>R}ln)JrYOcJisq5^Q zB$m}48-20j%KDtveHT|64t9?11bXd^G=Z*{^z`&d^UmC^m59fiNDr}{Ki9j1t&m>Y zUY*_g?5hW8Z{Pci2RHD**o(#mPgl5GtWgoqfX|#kW3KRmyU6|Z6|lsfuaiwwdS&?@ z!I&L9KCtvj!mNq&zkVyLKN@;4)99*hKQgJO07-4`v8e$jt-%@hGwVIl>j^-}-W}mp zA32-}&d&Mi-@I`lOrXy_*6w~gX;wzSJy-E*y@zP}{bofc5PGVprMqdo`effG*VuEX z+EumFUzK4pNq)f9__ukD?AX4WMR?_^h|)h_zf=<-LDw#CZX39q-`pk1IrCoCGEj;+ zcZZ*|?Ksj+H^iOz{I~pq_{au$olbVoJ(8z!bqtsL3lY8WTA4StHtWRD(qp-E$H!&k zPxFS)&X4_LG%+$#+GJkyvK?(FBoTF)*R~By&dzSQ_1$@Izpl-6>Pzn&(G7#4#ZJFE d@0#tw3PAStll-QZALjY~;`+2KtSP0S`X8ykQ&<21 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortkeg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortkeg.png new file mode 100644 index 0000000000000000000000000000000000000000..5d714e4e9627a41f64e2d88f8717d8edc515e139 GIT binary patch literal 907 zcmV;619bd}P)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ<5lKWrRCwC#n=xZ=0 zVCkN)Rb`-ATD2i{QriqZM^$j)rn&b0e}3=o-kpyqir8#9b_9F{?trKv z?N0f0l;yZqYe4{SfSU#h-)uL^$65fq1TGpZK4}-q*Gd6A0nQu{pR_aOb7cTd9TK0k zQxgC}Cs+uv{^L{NH{fl4@5{RZO|TE&7P^nGRVvKZ0c@Hy`1^00EMEDd3tLb5o@u54 z8Y?~t+7zEE0dR=Bc31^~k;4E+WdZbneTM<;D-G5FUI7D#0SuG|YXB~XzmbN*02(+0 zgP) zY2Oh-#I?5&tG3=J`JJwAugHcr0EYFh0Yq(&`_m7B@B2m%QJ_Ka`w~8n3NJJ zb*F6YELPQY~LAXkxB$9MMlX0df?3{kp07!WqEq8@m^Y=~q z?WRE+0Mix$nA)VkxJe46l&ejX^&_@b{T>8an<`@)02AGZ&3#2iW{p!5n-sVNu38ZO zS7f~BkhioOw*bI6KW+-9fnzo)1EBK}Fs^7Zv=#gK{l42Nkg};-Dg}NKUq5lxBBj9^ zz#KStMXly7mUB|J!%YD=l?Ix37;=3#0Wi*??CcB>CrSRbxf5!<-X`KYzOHtXr`6=z z++*Mm?j4t311|u79e_;=_`qjyYC|woKKoUqKw|HK1))q~mlA-u*43tHt@z?->z7dOtCj=9jU|(VYiDCd*c+v;~ll%-It_Z9q zmS#!}Bw0n#iMS{`XF^mkLDvsrWC+%0p?LyiA`=g0kwYj9G|K?;r!Jbe-rm-Lfd7Or zgAE{mIduZ-05+x4iC_d2u1?T|!N5o)6sC#_EOiP) z{+EIokwKu7XiO570^U}{`%=T01`wX7e}zD%VX^-RQy70IikC7C7M`X7gKBD!$=h-L ziDodJi2vipzoHq=ku;))6Olm;qZ4@N;V=J-%*)+>H?$4pd4sm6lX!=M4>6+>!pKAl z)7s1c!utaCBl)3`7)>oC$`l1RgJaB5Fqn=7iZ?JQEw~oOR8!O9m&U(w;V4}T9XQei zj)9xQVCE|rZAXz3W4~`E{SLNZ!YG)a?z%ABA!X5J5#A4 zzbe2XkjkVo0;x2xDGmu%b|q2#s1b}~+sE@)v}Qy)DV*qML8p?zf94lW`WO31lm9F3 zzqo$?pPXs%oYB}Wj{j9GzqWW4xV`+R^m#A;G!K!&>liw(HHNlwbO8VnthE`&nKd%! zF61E|AhBg)Vii~i+{ssPJ`Zep7fcr{JW^K$K2lPeMkLLj)E_*lJ`#06>$d<3LN97!b%D=yHARKs`ZOtXGC@g8HJw zcZoB~ZqViQv{!pAx?wkKQe-y4q~YcFrStPnXlaT-S~H_&l{UYU!(X3ZZ?Ah=Rj0jY zbFjOmR@q<7M-n;R?-Q~3LMT^BXDH>{+zp%5gof(Xw6ciSzCh1Oz2=`K7*pej#o@+h z3RyR$DrIiPtE|ZCD{wYRI3+<2r%L`x^YmeV1rNy|@5BLMq+@g2>DsB^(++SA5Qqm$ zKV#&mY@71|j;YFra&LZ~J*u;m`!)1NXTez1)>Jy+puPadF*JH}Bwz`co57Y+r9fh1 zsm)0bBo)G$?WrX#z}n)OdeIR0>eplO*HdSG(9G^6>X;#?_#kLL^wX7P<1|0MeLsR) zLtXrB^Q#fu0=q9VGdDW-x<`om&JO2Q&w`Xbk20Po*uA-GsMc_+psZ{KQezY~*SYpl z^_x?R;b`N1+r!c{(DWX|)zMFWq8t}i79izr^^)NoF?Y#RYF_&@fw%KWNZ)g&INXY7 z^v|5w?qwnF+EIj_&o}R=$)cv*GqqLPjFzz{Ho>Mxg2W~B8&0{@zr6i1Owy`X^W&}| z4A#MH;6<>Bev3=DeWAxP{N7i%P1CD5S1TJ&iEB0Kuk6}FWLAs0&(!W$B~Zw4OK(V; z(9(LzO;dwW&u=HSNTs`zg$`|YiS!mF|osJK#pAKnev|M2M?=4df2wU=EmH#G zq1I|ft^kSBdLZ4A6U>9iv7LZ5gBbp@tLK(=&i}D5LGM$an&qj^{(X4Go>q0UJ)M~< zkJ&k)pS#+^uj|jRSTjWW#aTNn0C8JDq^dKYm)zI<6Kkq4J8N_)F<8$j^E&Qn1YL+? zdfsh^LhtGG20nhl1V`KK6d)ErEY1M{Vug{^v6!Pc-15D-n_Zmv1&erViw!~|gED_)~*`S)(&JF zJaHYsb-lkm;NY0H%fq4T@k&6AqJ7rfkH9+fJcjd^G?okj^$f;zG!V+Zl-de{y1=uT zH?nV|fQJ6RxeOMr+j?nT@lD=HR^13w2WTDoV#(eSydGaQVTI#1s;f6zGJ;wVkR2}@|vbkgGVtN9uyvSK)VMaEtG_wC>UfE6`(9<(* z(z4DO-ra+JeKm0HtkI(qwU72&xTH_!-zaR4+LJ^s>c|98QoeK-6~qJa`31Q0q=z3; z#x_pDs&IU#@$FUKnkggR&M1`L(k1CDgWwo2}B!T{|X!`WC@~2WIGofTB{A zpAXwwlV7i5D{6#WB!rY+G3&P0_UMLk1+|du6c9MRz*{T-y3c{>QAzvWyvkJ0ur`pL zyLEhKnYG(G?qqrkEICK&&8pH4w{tQT{_Q~9Jwiup>`pPFGkqQE`oKyQS){Cb=77!UvE564%e?B#qV0>Pwkv- zy;Y9bz`3Dae4$)f_NAZBV_}ikdt-Z|WhHe^VRM^T!-X&LZT=S8`;PVj9~M?ZBdo!q z2JR1iUZ)(1GqM~MK3OhCkT&Zxq-Rb$4?K^4BNPs_z9@JhSnGzs*5p$%u;aesv`|@} zvjM;1Z1xUE*;d#=W~EzM89Xm;0noj}Gr1FZeD6y@mB@ZCWi{fOl zaonnpYbBI1ZqwN7_Yz#oaIfBT)gt>M^;<5OnO0UNw9{-Pd!nsI##g^DDEDEXm%3kE z#eZi%`?yX|hjP<8{y0%HE)Bx$YkGTUu{%{rOx7~;TE@7a(e6@%l49TE!^bqmwAX8I zmA!UyKcJe#kWRjcaC_TDl1zW?6R%Kb5r>&neRN(pare)oPlT25OBtV{<}4)Dukep7 z_C0dfi)eLd-e`&uuYX@)k2B7yZBYx->}1R2@Q-;oja z!=c3mPHhsehjQ$F|7f^MNX=M^0%{cXrM3ioltLyVlc2*{F_0N|{RrK4z#+FGp;L+->KhZA?!F4!Uh z0q@|CcWKPL0k2g6^~Z%numbNyr|6d*C62zHXmjdS>Hi8+*>QV%tF}g*ALr(F_r^oe zo-k~}Rzlg%umvGDS|1#5>ox&QJZFo&tkUB0vhzLX!$4wkhXA=k;rZvzvuBcTPmb>b zd5R`Yq4f0LCR*REm^ph9GMJI>(k1scsP57DvVzIR3}1&WAG;K!DF5VhZe~s#=G*rM zgJ&s+E!{n#(D2i1u=(kMW8x-!1FSg(8rM5buyE6B*Zynj6n&$m9%q&MoB&mk@C8m~ zWo&Y%GWzs#M_-AU(uIJj$phX^V@qHLJ-NSqf7X3bR@m>DVwx3|CE2Fh+k-D(P+lo7 zE=C`6&BYW2&w#=B6F5R=qL{p`3ql*2;p#kKQ6?l(KXUPO;fM<6>{wj26jN;)>M^K# zYCHkxxLY7M2RERW5i!X5p4|4>4IZ=8!M#^=%|1L9e|A7EXfp;Naqm;@0P4I(skhX% z$nSGsR|?d-izX%{Vv${mdT-m_zF6vaU7C{YTFrR?1v#klCGGLX{a~tDpx;x&$5wSEHV&aM&4<=9KFkMEK*wm)iU(Z^}?sW5cCo-b;^AbQ~3S-~&{uKYK+1b`21me(1h$C@l->YmC`RJ%c zo5y8sWPh$8ve^Oj?#Muxam1PFg>oI{H_vwqYsWs@{pXIpPalZTT0qs* z9CyU`6^JB+3p;%LaaPJ`Xy_8t#-``8*OzcG<;u)i>XoY9+&ayO-i)V~hFdcUz2@-R zTI2+z=C=BG=E5hKs%uxzf_mH(MYz3CD_{JX&*8jl*XS2&kWWb9qP&qJfLdZcc(c3w zutBub@#EiqC)#+c%31*fV>cHT_hvK-9-P_v!#<7=@P^KQa^!9ubNh$Y+T6~p)Wj$L EKjLP|v;Y7A literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/BBSMod.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/BBSMod.class new file mode 100644 index 0000000000000000000000000000000000000000..661e42c1914979486068c8d2fc1f111d44613831 GIT binary patch literal 2338 zcmbtVZBrXn6n<_3Y!X%qQL0!e!BPwXv(@4&DQy!=OAQoB#qpD~Np8|*_J!Hqpw;n5 zS!Z-Mi;J&pGEl_uRk#`SULT+xRAfIqYOm!ksi;!>)$A zDcqaIeU#OAC4(>UAcZ|;AExj~*?kRy)c#h$lEwkYT;q9hTuLs{bUehR-YX@GF&P&G~H?$miVg**+ zmiJxP3(e5-+(5$tvG#jd`o8N*zhav~AOnG|sw+dov0T|8e%NAO(r7uhK}N@O4Z^Qo z1e0g_%=dnHE>IYiQS{%aM8QYOmqCRw95t&cn-|WRhHXhVRBHlxW>M_dU5x84Ml8ij zoX*DUISk`Q}YdQqGT9(q!m3{fW z^q=QymeaA#(BlqjRCvHsP4cy$;`g6*tRSc1iH;+DrQ-_b1#XTQ7@g3vjbqu8zKkY| zQ7R4R%2`2fP@)`AtGQi{yJHd^rQJ>ULWh2zUGgX*;%n207I}e@{fjgH6^u#^b(f*+qNVjE3 zO>p*8JNbpxI!iKxk_JyR?toteuwyl zFA2QMr-A~hZt$sh9k50s@SRemmkR!tHbJ|z`5O|yBKZQz?DQX)N#F%EuBG~bS@Htc zpfQaFEK}FlBk-$TfEb)mcn^7!T-37}QBuh<cmq`|uBWj8VuGJY!g_`A2-fy_l<>*EXqCz3qC3q1e=sV3_r#68m`)i1d&LF?r^F9rC!tQ)%sy zvuOGEE8lt_CuX`Dev-7XQmN(L6E&pbmWDp;6@IF;X&p#M+QM8NoB4Jpq)qN$5mk`mAdKpiW-?PEC;o%!XTRzB@k%{QY zOcLkkN@+v=wIYu9$BVlF8p%r2llL__pSf-~^lbK0R7@WRN?hQ@z1AhtBxJ*^`m z_@_%buK1ZL3lZ5el6qyF;ORverO=(C9xp_f=do$2%y1P7Y@$TJihT;SNNmuo=<5mD z)>GQJ_X+I7Fn+<>6bI(u(tGJ=2BtAfmW|EfBE_i_suZ(0jiC*c=O;d+_z{!u$yvZD uRCNgD4q?k9s0GTICeI?RC4o!0j0r3c3$NfR?L}Op_YAEHrIctV?mqz4Ko4~Q literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$2.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$2.class new file mode 100644 index 0000000000000000000000000000000000000000..6616233bb64c03d009dffbfdf3d44242f2f5ceb2 GIT binary patch literal 1024 zcmbVL+iuf95IviwaTC%OdV_Flfl`u!a3LThijZh%rATf;O_f))u_wtEd$+PT5#_7k z1rQH>03U@ITanrTMF>ml^_k0=*)!|!KfZng@CfTAIJoBE`V^K+$YG^~8@TD{Lbl9##+PAR#wx`l zW8U^vB2aE>O>rZXNkR;tc)p3;Sazjv5?c@4PA7R2nZWg9l2#4L%1+`oMu4f3t*zGT z!%czQyN$HcZ=DIu^vH5#(>JEB&|3R@onDt0HQv zL~+kAv^JLO8_hl58&B?}o`YMDXo(~e4IT=?bK_tUeo-rL#_O~O;yCEGWFgWF|Hp(ya+3@uIPkbIl4rsgOW z(;V$nPbD@!7I69|R_~22V-0s4RLiJgUf}T=RDU0fz}mRZr^3gEC{X{80s=)I?Q04{ zvfSdIuI0Gqr{+u)>=+ZU*vsQBo?L}d2;VBM@{+o85Zb0rtkgbX0|owB(kI7@FpCLYG{&Oj2Kd^*y_RbsKBpDSUWvs0dWhJoVT#24g0Ve$hT wb2y=@WK`vhwm70%;FxK)Eb>|+T*M_zppqqC#ueW4xXSMtUL_7G@Xo#e1h(Q3V*mgE literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$3.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$3.class new file mode 100644 index 0000000000000000000000000000000000000000..1b81b973fa3e48d50d9b8eb7276f4579848cc201 GIT binary patch literal 1022 zcmbVLYj4vq6g}>`W-ZwUd%<{hz!>d7WT+q{hLBj(sBvaopA;u_wo!7{3a> z0OA8bfFFgpDV4SYLx@O@b6@8kpX+@4{^cuxhgh$`!!-}rr%NVx6=ZD*D4ZPq&s#iofR!)&Ou+#RHmwEH|t$TJrj!IKWRDz`_@ zqU)=S!Eb3TZ8PCnCdqsp3X=wwceyZ`Ys5hmWv^2c2f|A3)RA;N%7W&|AgF9>tG(LT zWGKAd$UFVUjA5oH9c8wJ(Jd!ahLu`9)Y1hh5f#+S1&aJZ9&9@<-VoaI-atE*%8tqu zael6~an#>v;&^YoxNB@r2Hi9XtW5Yoi@vl$TgCE~PL2s`@`xt`Qla*bWmHmXhOO=0 zeTGWg46KklDwlELmt)`0&q{i4Ymu0Yrtng_zKK2D_A!Mr!-F%lG|_<+E+b9NVJ@aQ z+>X>JEbOzMl$HK5SuJft%u^}=v{-Xi0rP1yf6BEHd zUCMFAPfc0MI4>iqtK$SuF2X2gEKp|aXE%JY~KmBi(_COuD$EidE=q0PPS8?R$^q!Ud! z?-*k}@moVVZVU%^tm`V?i6ib*B>G17l;bVkRybobmn+1vhpNp(2-#(*3#LUQ*V{a^b9)}4UG+tmGlV@ zvv?j0*`t;xeE%E-m3(&idcOyP2x)xM(b#h~9uPh`*UK}4voyCaoGoH06V^-B5&g(F zOyY%+3Y!?ESC@V{TGTi&jMM2E$*HEWw*Cd|V`eXo#i`UHSP|M7VPTEX4SDcICYwnzx;q2AvqArr z`p|+8{s4cJcy|rfD1vlhKJJ}+?!9}?{r3IKR{)RDs9_dYseoGHq2XyDC-G z^MTgJQhlST$L(qGz$8P-2XVv`8Hr4XBbo3(_2nxaeV|mcV-aPd`9UQGat!S!fB%IB9Ti$6oQ|LmgzoEo(r^ABvz@;4Au(ZC9Km~ Q#%0=FS~UtO(+SM|0EVXdX#fBK literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.class new file mode 100644 index 0000000000000000000000000000000000000000..cb5091828fb66b8aa32558a87074c35aa94c4fd5 GIT binary patch literal 1233 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 Kd`#mQF8mE7?h{o2 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.class new file mode 100644 index 0000000000000000000000000000000000000000..3b00cc8a6d9aa1a0e9a171e8a65bd4d4661d155f GIT binary patch literal 8836 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 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.class new file mode 100644 index 0000000000000000000000000000000000000000..007b9343c748763e246c070054262de1e4e1051b GIT binary patch literal 3425 zcmb_fTUQ%Z6#h;!laMe#no3*Rpha5?q3x(uT8W@EK$#jSwpeVf!Y~3_tw(^|t_? z#79YFa5{l~cs|LcAeZqtCX!HbMjj>;cmZdV*okv-Of@5k7vngegobIU^-?n~;G&d% zSuU57cm=PMrM@X|<`P^iDNvM)EzQlxu@J|iKqRmQMhli#)+^?`X?cEdtfp&sC#plZ7cBgxsqpH@pa2{1JiNsim#75R>hk%tt(Sb$sTb7Cs@r1#GY|nCm0kc zcNbhc(90CIXgAOu_p0p%US(A`jE!yX|AFl}FQDYTA_HkF5O89pJZD#?%()V8(gn{l zOXtmsBhR%j*SEfn6Rm-D1hE5Vz6a zd9Siy>r%pJx;6zFYr?0ehFi3+hZQs>ursKbu0L;ALS!R^5_o=lB+Nc*M6Xh%S1YC( zd(P--gb$H*i5r?EYBKaiM)tVCgMTO8w2=>i>^9lI@IpX!WL%7~j>f{0@%{E>zDe(N~t8vQr3`Vx`rFr z71Ii)oq(NrdZ8Yb@ERV%;~F~gpoYift{Xi9nS1rB z3{I+C)^G)-ILaDacp8?lEO4+v>s~dZp#nzVeNSPDv8Bc&95GjLHI8cKz$!x}!&@S)^p6sH98{~oDMy+Bt(_*^Q5OpT1sj15f;7e>y`Vm+r#>TALBGqNj)vXOvO}x>$QwctRiM3_12TNn=uFINGJHSc%ZVIR+^O6@g#BE*crtk( z<>$`qEr{&luMpuTn(e&><#S#~@G#e1R02{^umcIC(ZZLWG#kn0 zJ2R=o;%q88+pe^$w-8%Le0nV^KK<>-wFuX5X-4WFN+qP??BEW()2CEbGo9_qhK7{= zNyZZmrZXe0WAjk6%Pp25w8Qx4&`Vylo^XxM|8Sf=Bu!p-WddWu@ zwGVTr^7aIda2I8~BRI-kg!;QexhS=EgmMZD-c+BGg*t0NjWwMJyAivKh`5WGxP#+& zpx%Yxu7?KsEmOS|%a>v>U2Q~5)6sT1y@z2vN|%pAM?XCn;5m;cLNW%K z%zc!9BBTHqt_9SFr*Mq#DPq?|s>u4$w4Uek0DK&O|jMfh23+!IUo=?#vZFL;ENziJ|^rMyg z<8$zX1 zm4UEhmT5~;6`|I%l#3E+mUf3~RPBWFE5_nD8AqOLYx)i!4AZR`)kpZr|2_y??d*Zj k5Fn$E^sZy?XB4RRvlIu;hJKNL?h|!y5;boGqmlB)@6xtxW&i*H literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.class new file mode 100644 index 0000000000000000000000000000000000000000..c5d1a5f046ba1d45cd932a4145224b76a762f7c1 GIT binary patch literal 1822 zcmbtU?Q+{h6g}&Y$Whd!b`wg0ei64(OsRktC^&6t(>O8Mr6is}|G=!JjoDUSWu#SU zcnE&?HGnjoftfx455;g-R-HD4fgzgF)xE2|=iI$}cK`VEx90$^V%rjBCdG#F$TQGEECh7Oq!tqk@|@9DHWs7DM^#_MP4u18XxJTaHws zxzd|FOhu8nb{QttR@$p;Jrg})u>0J9IEbTE1q>HDN@#B=mGEP}rM*F5ZB#w*cWk+_d^<~nexL;9!nGF zgC+gFOc-t+fqpfW)DW8*m9K@Nbp*JVdcrU{?i$0&5kU7_#Ber<`43d|c+d6t+Yxlus+Oa-lPv*5a{FW081+RMO!gb#I%V(t@|uz^wNx2JcmJ>X}eF zOOWajxlz31(Za^N!f??&a2WR|j%Q_(FF)RpKT<{Iozb^2^cl__NX`knFOD{8_ROIr zjc3s24TSEE*4E{U4~#gjxr>J*Q(FS+P3+~}@LtU%zN?4w{YxIhR9~tf2V-y#cIEIZ z$_UY-9q5QHO=2al7i}}l8S&>>K{pC`xK5W89W=L{Jtl3z?HHYUAy)%$L&s7LntvZz z+{AghgR69j7I6wSoB+ctMFq@J{Mt+LNm2mmGMmZBf0JguMbWo3*IdH0jZ4qK8ddB* zMUg&Fo}%<~hIE>24JESEC}W1M_~V3I#TgnoH_F9X^2{?!^}J2U#+yf-uuHgri#eBu zmEqJIyD0Br;ulzZs5B^=q}MJM$(pychpBz;>5O9z$7ntCIGOP_MmS^MIu_t&ymc&6 ybp@)Rjs|%}RPYWi+S>q literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity$1.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity$1.class new file mode 100644 index 0000000000000000000000000000000000000000..02aeac40b31d8c09fede9a20f8b7016bd9ea97b6 GIT binary patch literal 890 zcmb_bU279T6g`t{^Q}!=TdP)$kcT9KYtc7FgtVoRRD_nk%IxeknPztecBVpqmf#2Y z;1BRei6=?X7ay}QbLZZB_S~WFZ!fi>K3U>6Un*sJ29KqX9#?>-ke z8Y`E_g}ji;`S2o*lf-|_T^hUOQmf$OBy(!!W94j+#_GbyCq@|7RRuHP7=c~t_fk!7O8 zOnR@W9~w(9Qi#w6Q^&h{&xQ+P9R8K!Yz3 t-%$R?*;v@Onaa+BcV~(F%Ui=8vN3yXlemypL~^IE>42 z6yvy(L{P_)rdVE0(&<}5Y!(NJYa?t-Q`{TeTS?E5*AD46MkoH*XrY!wqMZ z>n$}*dJ+u7nxi&W9Io8I%#E6^S`4|8p*nIyGgQUm>(07q)m2#>v*lvX;VFjLv}S0| z3`01bStY!@SyLH?N+iDAYE)IL!mB#1jFe1;>#N+-#N1zuI2#&~Tr4SOLnbh;n6`7S zCReNWTEnc#X7!$`IJR8XP368VE2iOaQf%4slBQT@nP^uuU0pC7&DkU}dn}dL7A>=} zJYQiro(@_f8&yZ9oeHn#%|_E~8MP_Fd4SN}8N>L?CCHJkzm|B@w<7t-BKK5G7j$tq zpu0gCQn*nx9M$5Ab4znJ7*6-9R$aU0rp`B2OZL1_b|+JryJVNQQ8XB`J%}%mB>OhF zo##zn)pT+z!_6LCFC)ll4bza7=La>_mbay*dH`FFrW3d#DOI z8;12)VEa<4E(2NTMqR$<-dh5m4BEFV-&QJ9!n@XV<>F42Gq1pW+SM3jveVOah#?j9 zb-=~R6|-e2>LL{!hC_V{(1Zwqgrhh{CGB-ov}0!(3a>+vAXSs_F2*Hfkza}| z^T~9fQ0TQ~=W$Y*4!BSL|K{XXvVta_F^anKpihtQ1CS{&OavghBeY!?#p|Z?3OZP< zEG(^Eo?9-I7H+KN=gM>Q#Zs|yhv94=RWELa^ej@i?J%6^j+I{|GhNx}FVRH}(}NE5 zcue7KyaVcQ?(7JS=n~U7Mk6XT^gT|qIYem$?8|O}W&c3vPIfr4g~)G+{_F~#ps#p~ z0z-&k1Se@Ec_K(7Lo<3KAm^*wAb4?hESuXxEH@HwW8gbd{wt#HB=HxLZR`=M!w{-R zNGXVM6mMbBWjy9W9Prfm5Tp>NaGF3STuCMjqhjKtUiVQ)1*&w5kOW{Gd)pYyJtK*b zi#15cK(@!o`h8@*FvY_e?cj|1I20_r=c}({z-5!pwlVZQ#&e{7ct76o{@d8s#{T^n z{q_gMBR?S$e(G`*)(KyOoV1OU?jWUcj-LFUMNx!K%+gz1)H@<60`q`=1>ND?FF5!k zqLHWB+^H=b63Qc8=1d??o=6Z~0dmBX>3|I50wzf>>A{D%NM=mY*o&Xoo2EVAr3rjQ zTOrKg68$Db6d7jSFBM+G6s(^3tWqAULE`4QI`zz@_onc6H@yo)Z<3;Xv5Q`+Lod~# pm)b#3?B%!VjrjBmSRe@D*jf7Rp&G&>Er#$hWs^u-=EjYN{{eq$nhO8` literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.class new file mode 100644 index 0000000000000000000000000000000000000000..20c4345aea65d8e58e75432fdf3eacbde7321b6a GIT binary patch literal 11369 zcmc&)349dib$?G97q)B?&aZ1uyb_9eZwcEyR?Iul|9%&nTx9NS~b>jTr_l-ugqgf1Xeyx9I z=9`)Kz4yNN{_lP7d#l&J^Z73k(Kh}-h`vBy4ATI8DMUX@FNf()dc~lh3)0Wa@E3yg zWx2l^!sQpkw3>cNM!y`Q*XZ>+`W5<$JbpDqt@Nux_q7oH8vVMAz8c>38Y(LiA0#9HQT+KQQPI!?cqA$e=$q=ud?Gp9=Y(h3L=eTVeVO`pYmz ze8mdoGB7xa{mVr{f~0_C%OEy(Ep3@_}4J~8~uA2@BTwn{7?DtUk3em znBJgo%X+^f-`>Q9Da6cGGO7-7fNLOxYvp3dB^c%qhr{$5*M-^S1z^Mr!!TWah#PoO zm>YRdEEOT}-w8-MwmJ=haT!mC9R*Vk(!#>;=axYciHS zZe@$P{1g)(0>>SxY^u1Esk)_gKU1JLm$aDb2cXhWDKl>6$KvB@ylEWBCF1G*@q9|2 z?U#Y#M5@5lJ&?#{qF6vYkt-CpCZpryg$FXZWHdK^6v7L7S%qjOo|pjNLUb^d$me?U z)(I=$BP)h(AyH!x!qZHVky5sp%2@kTg%pH!XS2CtT-E?t9pwu@oXa1vqK7l-Xx>W4 zOWDMPm5+|5lGboGJq5Nk$K&Y|)Ni@UX=3Bvfmq+r7|eCVDk}8`;!{?hskx=KoJ+J+ zOr@iWWW>rQt-K-xi*TyYUrMKYOXCpT=8tR&MjSF40a?ulGJowT*=P9&^Cq02*|Y>Jd72s zOB1Gr@NukYWp*LXCdE+uuG&yXY@#EKzwrTZm0yIidqAeDl`oxHkM^t;jyP%A7qfp9Gu#a$Xh`3 z9IlyeoEJE5UFIlzbJ=1X2_g@BnYpa`(49<*TaNtSm;xEFp4LbW!6K(96O< z6B3-clH3C)tU?htD=xPM%1(pvNtF~;nqO`38iUtjTVh%QcY>m5_2=??(|~0L>6hs% z-_r$of!*KVAM^MMQd7mLXrHdvJd*TJl7e^8zdw|z2FE-qMbEht3O+*}6!YUJ~ z;@v=UzaAdcH>9>e#wx}^I4MSubb6Hv3Ii28t2`5&MJrXYY1xobR!;U{gFE*Yyc!%- z=5v`r<(RgXc?qo2iuHV%){p55-Pf|uA;~q&hBs=H;|LCf_}Bg)odrx{i?@RV_`$=K z1H)rx2a5I?#!ISjzr!B2}CivFk>r%+-qUGvX|pYeG|3a11mZ^Sxm<*lq#ZHw*W!vi4Zh#x2lyQ($8n(%8Z~*G6HL1*;Gxo~aV|}{pl5K>WQz}*^bvZ* z zfsJUN!H=5!7@souag$H;69&J>5ux1*ZD zzOn9s`KLz@p=>g;HP21l;h(`BiVEqu$8Lc%g4@0<9^&cLLsoJqolM$1<>!k<>fEfXAiXdvj^k)efA_#>A2tk^iR_Oe zOg7iqtjCn{caC3*>~itz&1ELzc~!W0s}F5zVsVcn6Fx~IfWp0r%Pt;v= zwbCWf@+54vRApXWM5{(7%B``H?xE3veZ8t5>OEWfPJ$sfRe-Hjk-AA(h+zoNt7^{G z2gcFYyYMp4L-E*^2=4LNMo;z)aWO(LRT!}{xgyf+#(Ak|{&t9^IW1v3obU8%<1@>P zSFP0ih=)Ev?|$8{?(s6d(o+1>72K!W&^@xhs0P0@m`8{ANoool=o=lwt*={d3jjz( zX0L0|E8b^azP6sfte6~xB`(Vop{KI255(AK(4?B{P9e8r=AK+W^^o)i)4JYdTIcVs zves@LW)4rHCyCh6o|`L>d~oEmLa*n1%Nn4QT!tv!C>#yHCpRI{|$&V_EcO zd(-hk!NS{3Z{>rHG7aYOl(Zg6iVFQgGzvF*Amv91ezK4l&SobSrqN7VRUzSEBSe0c zIL`u?>TJ2D(oa>I7Tg2ij{c?Gq<4uM@as8U*=Y4?-{4$;-|n)zODU#p?y_rG{S?;a z&E9TT$6_(bN{0H$YWOhI(w0N5uGpR{ZGs?4B~dTy$aUlT4lkH|aP2X(KdeQSO=Y{9 z{;@+aqEf|Ny9HTgaClcAN@ic-J~LqF6+XOYTO;UFp?{**cY8&acB{=Bq#n>flIIMh z2xglu;bLx1=+6IwY{v zMFEV6cDGFvpQkF^s%NkZwKdkx;0N)x#^4Nv4z#tsMBy2#n%54)4+8IZsT_1v z4mv6a9hHN&%2m=H)DrmX@L~uOF1No#>(A0R+B;@w!whZQ9+1)XGOCf$CK=Vrs98qF zW~}HUwN%l|)Ve(w2_lG}r8SYjMM5k13^he+)aa}Pd;9j_bCedEcA?QS(O=F`qfLF5WcKzTOa=H_96wE`F*3mS;|lyiF|*^K%Z`ICI}W;RJLm~eZl{_z zp-RZ0_ZakEgPt_#sq+7yCfcxJ?VHde;3mRcruWhNZ3vwK=)-u|gv=LJcA23YX6Qy` z9WNe_tHmAG6C72WUPBqK%04D)NKi$9)3XrE(p$FG_%Oc60-C3(^DM0tyl>qehy-4tZD(jfdq*VjGHts+ zZ`1L3lfJ=v^H(b0Rv`e8d5GVj#Rff%FP}g-XccxL1xgZZXm_Q78QSjMu|A|E=^d-V zk<_48C!6Mv(@)qOzXgocfn%rSp)*tyIHzqNj)Y-*xT*SF1X;AJT3+wKzgzKd=M3Ez z5SeooIIDHi8`WQm};{eGgXgTEEKtHK;nbcAoT{<0XcRJSZbimSySwE%x)u}Km z(CDORfqcPgr$WA9yHg=wu-&PUAA;=l^c;L0R#psARpUNqN%jj%i= zi`qD3qb=|vbuK?cH?((PkJ3TwWLxD|Y$<^Ybh{eYN`8BeHeZRjx{SCQ>?46!ks%Rd z-2&+u>X`#_n+pEtq1mSZ*q=sr`84&=XOIg&i)Bw^TYU-1;B$cac?Z~70Vt&^l+o;7 zdCE3uE#g#4lxpxR*#YnbC>K!mx2Z?vv`@A!fl1Cml&(GcaTkaOFVVJx=c(75r@r7q zu>YPXSgumlh7@9-0WYSX!4fonZ^2#g8`FgshafzrY33owG_ayOhOS}vC; z=qL|`J|_a*<>0F>y_Y)}TyFCQCwdX)tpfkg(Tpu+A7qP^W$hjj{TFF>6_zB$m6Xc5 z;(XmDVwodinImEu{B{8|f^^ZT-rFHc{;O}?bAe(nN_Bq6i&QV5V8vRe+zptt5mP^p W_f>R>kKrCB{6Q`Loc8GLk?#V(&tjec literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.class new file mode 100644 index 0000000000000000000000000000000000000000..42ba56875806a26ff5802e9e2e3601467e0bd6bc GIT binary patch literal 5080 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 BObh@3 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.class new file mode 100644 index 0000000000000000000000000000000000000000..30b0d096880ff45e4166bf3cd8fffcfed7f66141 GIT binary patch literal 5136 zcmb_g`F~Vb75~1>@+LEnC20r*QVM~llLZE7u}CmY2on;>LNjU7AT_>BUXp=X;>;Ts zwbDhaRa5r`x8l-96cK14p=hnUt=3lkNBmVkRs5d!US^>r=_fIKxbK{M&pG$(_uhHq zzpuOs-~s%j6x(pZj}YR1B#;y|<;NsGB2Zd}j0&?9S)BC4hf@NbF2xyq)ZKC(@RQ(U zf__|v$9?#OA7}A|AWzEhlnhVH@JS*4R4HXV6TqkO89(aqYyh?RtRD^doXmY*(5V2P z!xsYhBEBTUmsNZvfEs*N*uN&w*HwH&RQaY1=Tv-4Bz;@OcSO#2ReVn<<0_t4;Op#( z^tbl3g%z}QMN^4TS|8J+sf>C5XlP_4Gn`0`hEgNPji{Lkjl@&Y6PZv#k50srMkdr9 zi>6ci)5a+y-DgB&lSZaVftE=aaWj@2?}}wi1)D9QG|Yz8L+!uB2gx5>y~cRn1V$G!mgs4iQt2o@iRmYBP0NX`G%k(lH|$ zHEaV`bsg7F>Y=O|i-)@PNs_b_&n%{p#U9s_AxoIUn0Rbpq- zG{%jzB{MK?n4QUtsZ(_Y;b7hWC7kZI)F{QR>Y~GYvWXERZADFicV8?SGn*B-f^`E5 z%DYlgJwBkPV-i${#%)f-G72j6(b0G1ih|+ba)PxmZ+oXG<&7mLv*u0(8yBXYqufOx zZDg`>Cayo92nv*TR?1w=h;}MiVdWb$!m+i2?k_UZ7ISP_M%FE+x64RUS5G);rq3{~ zI+IBw-4@p~8H0XbQ=C>?Eh=W8hfG3VSsb%7lXG#4+=+3qJYTRZCF!49iqxXwTc!%l zO)Ac_St=-FCz{mLMy_wrTMsQSQb(CPEWYRorkf2go9<##9LVbNNKsGR;?(BCUGePV zRLku!skHy&}*A~^kbs%n+{ME1nJ2gCn78T#u@B{o%!!F#f;zt@@z>6B* zhX*yh9}g<1UZ{#xOl$ZtE{Ld~X!t2EsJN)%XEM`<0~#&~^mANLpvGft)#e!$mo;3$ zRShr6+RHLrli|7yJ?PaigLW0O8gAef4L9)%fqp5_s~UcV*EIYZzftj94Zp+hSw9;7 zfIn*Z6JBR}7geX-Uo^ad*EJl)2Q~azh*lI4Y4{7?)bLll#Y4qf$p=}(+xQ!cGe7Nk zUBlmnzIEC669udD!h5Z24Uew8g6s!r-Attw1ZA%~7ifo`nb@yqjM2H1Fq$@Wlksm{ zuwskZSY8|F--5>qJCZ+XoDwc#Y~~c6SJau7BE2nRcqm)fA@X|$JHoB~3aaKSb+T8_ zTgXjvf_fs49Bl1Vuyr2SOBq<(brRrBuB$sd?Ce@P*xDcN8$KL9$g{J%HPT^&JLi!! zcgf_HaxxQY<-#au#zTXrg_h7n*WeAj8S2unSqYp{=we9 zen*`==ot#PM(88o{_vc#o^bb({vieT%pV^o@-E&k6dWql$xf=K0xjpAapGy2;t6MCk{I8BMXKl1E!CoQC6j=tC{UM9d{gPGtX zFd!bXlS0mK1slk8TNTVb3MBM$Y8a+Is++pC8xI5jm|VpjK~zAlcd?{Bfz5mzh4}Py zW4$zPLgmt~q3|&Xlwdb;cI+I!hd7&e4&RGX{%gWM&U}Cz)%?nz`zn;n{3>YX=(T1m zDUauZO{tVPv$ORxD5;-?>l)nrc&@=~f7JS$@C{u>=?wff6v#muq4E`F_~&)3bjVf} zE!qsLZL*TL^JFq5i{)jrD9^FnWfQ8tJYhv{aZL`Yw8@&EAlVh#Rbp9JOAmnlb7M6E zD5HnUQH2e(v>M~Mo3GZ5Ja{&tl~kJLiCOHoe9d<#4%q&{W%7GT(Ny2icpYo6V%-aH zU#Wi??uN!~H&ErqAQA7jweDH0zkv-d3s<+T@yw#y#ziHUrBWq4gzv=)zM$9RKGY+K zy&Oe_W_ue)1#XBi+AX!3aF9@mD1i<_E(_|!A*v>GhtWm3-Gp6GR*;2fs;#}Un^P(m zrbOWzxLe`Dx>1IENJaHGDL97|fz1kDL(N`yeM1%Lwg~2%!Pax=75rYoYxAsoJyjlu zIV6z7?X7RD@)mKg6x`zWU7o)6=Jc)S=s-z8x8;u-{x$$?rx$k654$kN^ghkRej0o5 z3}>FDb>f=`Xx|t^b_5Z6DToiDpO9ETmGjqB&R!x z)3@FVT%sU5dUiG+;*ULDY)w5ZtRpO(hjSL!u)rivlCR;M?O{YM+a)?ub~e>0sl*2w zT<>5NL$O2Rpuk}C-fe`sL?alf#)~w<3R9sG161Qt8gZ0H9HSABEy;-SI~w7`1f|+W qY@t!|7r2RSLo?X^5)|nUh3$A1Nn)HU!EyBQ>*s0>`^CfF(*FUxHBn&z literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.class new file mode 100644 index 0000000000000000000000000000000000000000..e0359197f733b553bbb44f91aa3fce9aef601618 GIT binary patch literal 11480 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 O&RB>t*(%u#Wvpx<-R(ZQyS29V|DAj1&YhbH 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 AIsgCw literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.class new file mode 100644 index 0000000000000000000000000000000000000000..589f886d84732578f4053370f59eae5cadb43eb6 GIT binary patch literal 2866 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 SCoO9l!~vb?3TJ1z^8WzB7Wv5l literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.class new file mode 100644 index 0000000000000000000000000000000000000000..413c4e5bbd5f0e02fdfe8c93b5fe200445f46b9e GIT binary patch literal 1641 zcmbVMTW=Fb7(HVfuj4LFFu6cOOMn87ldv@jlqPAoUrbG@k}8F#YHUxOrS`719!KI2 zwXdyILexlo>_dN4!Or@ z^IR6p?phw#@wI~+dE`(w%Qt3OG^R@qmUH;l!HR>M0>>lO^t(Ee+7E-Sz{%(!&M)AcG^wVyD2tID!au^Xvw z*o*3FmC6Ouve6Kz6f1`)`+o$Pw$f5SRG3#s>P;4DP0RW(th`OYcIp-z?clb+NK@(6 zgDo2?PRC;2YufT*_|aQ6Y?E+%kC z;Kabxxj2D>i&@OM7{fS|cX1c@1SYJhowazd?)3atLq#s`&hfn& z;fs_)!E_9KLhNajd-jd{46zBE;(D5=XGqf)I8}NLQQAf7`D>(KAyb;!!Le7!{$ag8 z<6596;Bw88qrey^F-c@R_Qx4~&J!cy3u3%MIE$%-@p`D5YzNIZQ_4A}72`*SsUvfW( z)E+J)?ckzta0w{~mmL)M==>Jr#$e_%FpUz4Ol3Rd0E~jMd=A28o8a q&@)uZTf#3U$O^qokkKU5!l%r!6zBPV%&ESZqqxExKwr-?fAt3Fu!t-G literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModels.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModels.class new file mode 100644 index 0000000000000000000000000000000000000000..5ff55dfa5fdf0fd695ab2f1cc48446548cfe309a GIT binary patch literal 4651 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 literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.class new file mode 100644 index 0000000000000000000000000000000000000000..16978447f7e6723e4d340565b7f9f0aac0446b30 GIT binary patch literal 2073 zcmbVNU3U{z6y3K;JLzQlK^qDcEYPY=)51_e5sM&HD}|(Ji≈$>fp@OlELq+GT%= zzra`JAy8b)d^3kj*IwE!(0ZJboAjP9hY%MEg$Q+ifcON z@ri~{H7p49Tyi`ox-5{&Ppt~1=lzNl7$`cPTw1G_WpLXnyOazSecN(Zt-w*|EnzyU zIibMCqV3nsz9N(iSeI=GGII4(8T1hrba7INpFoGi*t{Ygy4GlL96j9Q!WZ)J)XJ!Vzz_NiA z+@_CxDq>(969&G-s)nx&e2qIA?i%<8-wIr5w>fYg0=*RrRExVSSRAjI%tRrp4%^Vm~t6AZa z{4t7~?=DI2#fMx|Kjvgo25Kvhb(guYN;|+5DdBB@3x<-gg{v}3NEU1)OrNCRb|S<@ z-Gj6f|3Qs_B0p&uc5xfz?KYasCqQ>L*KUdG$FcT^TMR8V8(+X+Iy;WzyK?C?VNLqt z5~zX0qH~(e>}Ryy(aCsH+BDDaiD?gAa+HyjRXhbsGOVc?Hv6yPI!qYz^y_1G7zo_k zf6Og*JobURer{?Nr}%q0%wG|Zf>2Y6>rtLeeg(hXg{Kg|a?^!Tu063(!yDWii2{z{ zI8VKJbKCeA-gHrR;|aPNNNpl5aI>(9Zh@bWeZkafC^V35z$pHPzB|)H{ZBDadWOLU4mB`TNX;}b+$zinx@j_m3L0CRHbMXZ literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/items/ItemBase.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/items/ItemBase.class new file mode 100644 index 0000000000000000000000000000000000000000..844bb64046266624e357c62b9409a6ecd1d2d9d3 GIT binary patch literal 1579 zcma)6Yg5xu5IwgA(w5L-<>3nz1Z{&56;QE=+RCF^9s<(QFHV|XYM3Trl9aK|_@m@Q z8Fj`V;E!_Ln--z89c`wY``CNV-rckL_51rz0JC@#K^&tJ#v%xa_pK1d#c)EH+YwyA z9bpn-B%z4WWEgib)r)DUVcf(05FSJ@gINi45*|u;#L%-~ScbRAFqp{gYloUz)~u4c z?Ky^3N+ow0x-xc=GsJR+#n&rlfjc`|p-e0BoULo+UClAXys_BjeKcGKHK*IA>S%kK zZoA%0Q7shQ52jsI?ZQ6SJy$h6Zn|ogY+7@9ifAm&^g&yKV2C=rWVjx8)+m%R!3Pr} zvdFewadf_Hh-mswu%-ooi~(F{7(Ne{t{CMacNiu*#8>f*vbx3hxWg@-U_*_-r)50G zyo@JE$ymTs8H;!(;kk?#NXy9JrGzCJ%UF@HDkFTtof*tR04bj2APnHG@-PxU`HHyE#UMpYHIqDw~nBNe8SE!S; zB1xjD_c#0&O(owmjC3HR#E`0p>ATEWbuytRU-3?>? zSAG#jXZ!*FD93Yl7ec}^q?y^hckiC_oael5{{8Q-e*i4uM;%jmq~TK?pW(5N9O^oj z@i`x_=y-ysynDvGRUHj{!H;V?*72o=uQW6Tip#cVM=Jso)%hKPe8cZ5fy*u1Q=5Ia zqk`vV$Dxx-%ePEt#|&(KP7m|Zo*fD-v@GA1fw^m1ei%LI%1$Tz#r3;#Kk$EhB^!>d zyl9K}b%85^>e*qWf@Y-Lw(`0vP=SD~wmcO{m+V@E6iJ(2OO~lOTQAK6Q#z*CliN{X zd%b#0l_dnOpQ}gSxGFLQ1o@e>yX?dnBmr$dP)&+~!0HHxT|ek4x$8QT{BwOzssnOF zu5Yxq5*6EY?BC7E_PsTJ6VnnDtS7^qUK@v)b5;mwY)0%s7M)9`l&thSJb7uz^j6 z`&Pr2f$z{Za1*yQZ1Y++a0l=6t*n8pUgeVyFstEv13OHiI_^}uP&DrTcz|j6fvRQ5 zw=>#%r25-=3n14l3?op=u zG(AaL1+9gJLx?|UlS3sH0`1eS z{s@Hu68}K}X-<JlE5)-{ms569m2bV~1 zfNY!~8-#o}My5fKBCn*#MMl0fz)XTMN0`-9Sj7{pB4N!DMv30f6UH=o@-bbUAquN8 zigb@WUyPBGB;_f*HIltY7w37A)(PCFdyX>Ar=0f(bS?c1q3{VF#`rp&e2A~{(QN5| DGTyYw literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/CommonProxy.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/CommonProxy.class new file mode 100644 index 0000000000000000000000000000000000000000..5e80b968bc24c9765c03d19e3fea768286381fe3 GIT binary patch literal 4767 zcmbtX`BxKH6#gEIL*ghBl~b)!7eJua!3DLAMM(rr8xRRgwF{ku0Y;J;Ix|sY_kFM3 zce}4YmLHJTbNUDLkLu}tZxS-V41`n8$;`a_-u>Qpmv`^upMU@Q8^AIA9!49+!gvIi z!l=dN5FW*25+3IR5SVa(zw304?8xzw(MBOxEcRa^_B3D>!5fq&iLvZuLnfqy;26$%ob zmGB(HhEuwsJKYS`ZSA8BHF0x7W2jH+hBlDTr8R3IPA}!OZX9CHqe4IxGvXHb(K%Hq6+Zxmx><^->z#PTTn39eetgbU$|nefVRI>i zVp%gYV@r5}cn%e_ia|~ohGxaHs%>kOoX31=yODI2tb&MMa|uF(u~w{LIPAxFRc(gG zrDvruTRJZT>jhgDJtfU8R)pQrZaPe%ls;vsPTr!VySQ#cS4Zb(Y{yXEaP*uus@pmp z`yRtE9g*+k*r=Z|%MZ)6YD{D`OG)L^cE-}vns7BS-&6`BKjMUz^g~jihr zh5zjgFCKSAIA!LojMk^~YPiKy(+=^PBH<+}FT%K3-d?np3fpl%!#r;4Hz%4`>P2O= zqeH^WGG0N4j92;KH5sqt4Td8D<=-M`sebxsQ5BI#78nd#wQG&0U9OVBD-ycJfdYqj!XEI zv;K?xX_i1@IJ-`SVG49FCBIYfUq)k#cGcuGR zTZ=t#Jja=&1rrIM%lHCcR%}kjG#r)ev5E!_s+pPfnd660wv3@+3C&r;XV?|ch>Icl zO2*f?#q;wU8QY=s@MbN%Q(n{NLx=prZxQ{aJ5C?JUr-V69qk<$ z9*>Qr7`oP|7QzjsqFO2&RPT=ZZ0E7wSB<)+wb(Vcw|VYHZY)F}>{=a|X0Msnj56T9 z%l6kL22#U41Myyl6KmKMfI(L64#=cfEJa0v`0Ix4sN%fc6Lbf4*AiHyWGt1Y^KM&W zIPYV2g>(~T9O0>rQ<_t@zq75~569(T=~SW;BK#!{B6!fp)q(4&vG}&QKn1F0RzVP5 zBUg$D1?8NY(@OL_?(>$9RmX;LH*i^D0~Fk>XW`cRhwb2&q7bFqLYoiI6(hJ^FIlU z--PISFO3v>GkVu{+y?uDKB{n#o*RU4H}0cv*5c=iNo~d$_e__aM^OjCZX8j zP8Jop>Jc0jVANdDMO$&%ahyOky-(tPdUDt-jrm;j0;(2JJ%^e*sJ(O>8|EP`piYcK zG!E0ayz@>X4YIQu`{-*wwxSu0XrZrG!KTs0Tx8RX2N0zl8BXEB;?4!^Szt zcd&`J**uT>@-|_ypdDMth1@$XY{MdK1HpC+*wZ*ugzchr!q_s5>)?YP2(}2p2%?8n zLx`b|?BPDSDSQN+?wH4xJ7^$Ykw3Au3hsCtjkk+&q%m^W0(Q9Kog}{774M4dCNU>a zEh6l?tCQ?Fj6D>X0~DGQ6qarZOgZYOaSrE6hez7Y11@=pMi0}k3Q6?Sn;SDg?-1RE zON4KcD|up#xJ;TZ&EcNg*h9~G?48Fx4|zVfU(D^FNAt?L7BSZ{kJi#$*^G$Dv6I+E z*>jToHcT-s(;rzupGyXbmP`NQ68hB`qM0hB7Nw&!?xkOZq;Witvt;5hUc^Xi=s(z( BlBWOw literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/GuiProxy.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/GuiProxy.class new file mode 100644 index 0000000000000000000000000000000000000000..fbfdf8f04e85798b5fbcbcb24b25710832e4e14b GIT binary patch literal 2554 zcmb_eT~8ZF6g}gwwYN?nC6qd}X#)8$G-OEAPaKjK2gtT2K>|@BwW`+Z1vcz@(Rv}F zKcesLub@&@OGT>E*Z!cswd&cmy|$M?-Lwy$y)$#?+;h*&o$>E~{qie-_whu<1>8~a zo{9wSsvP-1!G{Vy%Hd;tq9TJi1tkUdROB$P;J%7H9w_)!#rdHBnSuocWr55+t8V%C z1(L<74S`hIt(gKt6{~JO-gl~|x2{)hj=WxR4c*?*JuB$92UGrz)eyK@F)AE=Wzd#1O`EDb)em%O>-BB}i23jPmMtCK-;oQpYwWJNjewg^ zaj(Zb>1ehot)MzHaQU=zF35+WJaieVvMWT?m1t)3(YD z#cIfEK&>I8#SOV)8J@e!xLq7lQPbd5tx7VB)L@q$m4-QB0@bh2*Oi)3W@%z7Z{G0q`;lNv$5rR+os%dY#uwuaqE(^ zEUsOtG0r2sUb9V4V6tzG^j}sZEb(G+3-Bf@^t<;IE6*z{rYo<2R*V(k$-`Qjin+Wr zJ`1DRANTZ|MIdL@4><37yf$WH@crwwj$`{06ma5{BP^*!-lhMi+5p!4GMNC4tieWyzd=U8#C;8=F$99xG$*7)(kwyY< zu+4;n!x*ETZ#m#i6xb8EgmJdP;y?IK=lI>MHOy6RzdjYkH*N(&yk&_{tOXLHR9wO~AMt+B* zvt+YQCIQ2*S}fWO$p>%Y?U3~bF4H>^aKshLkPNK}&Za_Zl2$sjuF=Xc!ZNPo1{C5x zz)cj9#T4iBNc@Re1=9-Noh0(Djt1faW2^Kq`qDU|!PPMLx!f`Gn+3LQL2^{1iF0j1 z&YvO3P_H1DNf1nEh$)R>f+6nX~HLM#MZ$)8J>tbru!;Ve9WhZ3_EHp7E?F!TOA zUjVk4GBAb-VIE9lV>03BwQ-R!TGbcA?CkrX%+5NKox@(lU%zg}LlBnAcRYxjP(G%O q=2FIM=QZz>b^I?A7K6^6xHtSHTcc7%AQbrlKxN)SIS|G<3shg=g(q_W literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/Reference.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/Reference.class new file mode 100644 index 0000000000000000000000000000000000000000..015cf2813c0609cf6cc20ba5e1653b0bbd2cc7e6 GIT binary patch literal 697 zcma)(O>fgc5Qg8)rwQo?0Se`-DYQ^H*ax_QkQ&z@3p=Tt5{}i{*_N$rFIwA$3h|>j zA#vab@S_l8D@uKX%V?gN-FIf+{r%_XF90v_xQ8Ylbg|XNkfH5Q4%`EVfp^BwxfS#D z)SBj6rl&6%R&14KIZyK$j|*X7o1rz{_ZlEu zizF2Kh=(y%2A+y|JmXrHyePKvk1}I;;zcU4G(X{y%JS!PD-5&aM9r-tm$4Oy6QM;K z33^{|stO&6H?ovmU3SdUiau^)gJJi-v>4Ve?VE&WBFf32#axDskq~+~(&Dqw7sIJc zikRn0(*iqR&xOvUO20Ae(J1qBZF6zm{G`>F3)7CJNb|!o|L0MaBr2_rVjB(mZlH@z zw9qEsJ4B6&jT&E}ey_$?iTgEPAzrQV8u2==E%gS(*K2%(I;^yi;w_qJRSdMB{Q&!3 ct#F%ShsvPEHYxV2yp21!OT=)GVgvX80=OoXXaE2J literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.class new file mode 100644 index 0000000000000000000000000000000000000000..3f72918a40570c587891c6a682fa4bff137eaf38 GIT binary patch literal 2228 zcmbVNZByJ-6n^e55Oy~$h!k9{+E$7S#fIA2s*5N^kku?Gi)h;qPBvVY)NIm8vK{#Y z{)heoKkEmbbw;Ot^*{JW97la_(y*Ixfx*n=<(zx(InQ~{OMd_R=U)Nb!u=x7!zf}J ziv`@kn;LGGsD4Ys?Go%d$C8HkN+@Aj!}}UO5ExlDxW<9y?YS}tjcwU-!YDZ0NEB6p^S)P$WII`qfrh&Rqp2jI*E~-KtF9G>l5TEQ zOixBeo6u}Ji}wAXB@OvldeM>XH6_iYCaNl=;dqC@jWeGXn94?d_$ZCsJgc##>;c1J z+=dFix=bPp4X5Q1_Y!)arO;?}nxP#yO&QZn++)61XTi8B;R1ICqPJZ~Whu#3--+Nbu@sk{qJ&_x zfcl7H1!UI}u&3D;IM;|Q`|G;(C@xzKs{+M_-wABF?x@ zhDL2&wLu!en#TsKYS`4Vg->;ShHb{Hqk$bApM%A4^`u^{ZCGKP9vxp`oZe5`d|YD- zj4J{S*YaA%R`a2>BMn~)7@1&C?_Sa$+li+LTP3g}pEKefVGXc!Y61jGEg7Xm2`pCT z&O|NCedZWC)Ci56xyBDpoZ8M>y+Inx9)6RfPffh6MnH@Fl_0PV1uB&X$^Jgxs&fN$ z0t*A;Kei+ocd{mf71vcA`hQAFb?7KNG)@8sBgyN9k|u`%Y6n)hDZe2L{Gr_E55Z8lBtmLFM^gq}wh= z1Hq)$ literal 0 HcmV?d00001 diff --git a/classes/production/bbs_mod_main/mcmod.info b/classes/production/bbs_mod_main/mcmod.info new file mode 100644 index 0000000..27270d7 --- /dev/null +++ b/classes/production/bbs_mod_main/mcmod.info @@ -0,0 +1,16 @@ +[ +{ + "modid": "bbs_mod", + "name": "Beer Brewery Simulator", + "description": "Base Mod for Beer Brewery Simulator Modpack.", + "version": "${version}", + "mcversion": "${mcversion}", + "url": "https://github.com/rafacost/bbs_mod", + "updateUrl": "https://github.com/rafacost/bbs_mod/version.json", + "authorList": ["rafacost3d"], + "credits": "All rights reserved for rafacost3d", + "logoFile": "", + "screenshots": [], + "dependencies": [] +} +] diff --git a/classes/production/bbs_mod_main/pack.mcmeta b/classes/production/bbs_mod_main/pack.mcmeta new file mode 100644 index 0000000..edbb563 --- /dev/null +++ b/classes/production/bbs_mod_main/pack.mcmeta @@ -0,0 +1,7 @@ +{ + "pack": { + "description": "BBSMod resources", + "pack_format": 3, + "_comment": "A pack_format of 3 should be used starting with Minecraft 1.11. All resources, including language files, should be lowercase (eg: en_us.lang). A pack_format of 2 will load your mod resources with LegacyV2Adapter, which requires language files to have uppercase letters (eg: en_US.lang)." + } +} From b7fe318a133a1fbc952240b62519caaeccc05164 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sun, 18 Mar 2018 22:29:39 -0400 Subject: [PATCH 03/23] Porting from Idea to 1.12.2 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c85f97b..4759d1a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Beer Brewing Simulator Mod For now this is the basic foundation for a future mod called Beer Brewing Simulator. -It's being developed by rafacost3d, for Minecraft 1.11.2 +It's being developed by rafacost3d, for Minecraft 1.12.2 -**Resource Links for 1.11.2** +**Resource Links for 1.12.2** If your site is at the list below, thank you so much for your tutorials/code repositories, you guys helped me a lot! From c1ce09f55ea75af53d48f3ad7553b57e81892069 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sun, 18 Mar 2018 22:34:50 -0400 Subject: [PATCH 04/23] Porting from Idea to 1.12.2 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2c770e0..33057ae 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ bin # idea out +classes *.ipr *.iws *.iml From 162c7198ffbadab92bce74f08b03f046a2a3679f Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sun, 18 Mar 2018 22:45:16 -0400 Subject: [PATCH 05/23] Porting from Idea to 1.12.2 --- .../assets/bbs_mod/blockstates/beer.json | 21 - .../bbs_mod/blockstates/fermentorbucket.json | 43 -- .../bbs_mod/blockstates/hopadmiral.crop.json | 12 - .../bbs_mod/blockstates/hopahtanum.crop.json | 12 - .../bbs_mod/blockstates/hopamarillo.crop.json | 12 - .../bbs_mod/blockstates/hopaquila.crop.json | 12 - .../bbs_mod/blockstates/hoparamis.crop.json | 12 - .../bbs_mod/blockstates/hopaurora.crop.json | 12 - .../bbs_mod/blockstates/hopbanner.crop.json | 12 - .../blockstates/hopbcgolding.crop.json | 12 - .../blockstates/hopbittergold.crop.json | 12 - .../bbs_mod/blockstates/hopblanc.crop.json | 12 - .../bbs_mod/blockstates/hopbobek.crop.json | 12 - .../blockstates/hopbramlingcross.crop.json | 12 - .../bbs_mod/blockstates/hopbravo.crop.json | 12 - .../hopbrewersgoldgermany.crop.json | 12 - .../blockstates/hopbrewersgoldusa.crop.json | 12 - .../bbs_mod/blockstates/hopbullion.crop.json | 12 - .../bbs_mod/blockstates/hopcascade.crop.json | 12 - .../bbs_mod/blockstates/hopceleia.crop.json | 12 - .../blockstates/hopcentennial.crop.json | 12 - .../blockstates/hopchallenger.crop.json | 12 - .../bbs_mod/blockstates/hopchelan.crop.json | 12 - .../bbs_mod/blockstates/hopchinook.crop.json | 12 - .../bbs_mod/blockstates/hopcitra.crop.json | 12 - .../bbs_mod/blockstates/hopcluster.crop.json | 12 - .../bbs_mod/blockstates/hopcolumbus.crop.json | 12 - .../bbs_mod/blockstates/hopcomet.crop.json | 12 - .../bbs_mod/blockstates/hopcrystal.crop.json | 12 - .../bbs_mod/blockstates/hopdrrudi.crop.json | 12 - .../blockstates/hopeastkentgolding.crop.json | 12 - .../bbs_mod/blockstates/hopekuanot.crop.json | 12 - .../bbs_mod/blockstates/hopella.crop.json | 12 - .../bbs_mod/blockstates/hoperoica.crop.json | 12 - .../blockstates/hopfalconersflight.crop.json | 12 - .../blockstates/hopfirstgold.crop.json | 12 - .../bbs_mod/blockstates/hopfuggleuk.crop.json | 12 - .../bbs_mod/blockstates/hopgalaxy.crop.json | 12 - .../bbs_mod/blockstates/hopgalena.crop.json | 12 - .../bbs_mod/blockstates/hopglacier.crop.json | 12 - .../bbs_mod/blockstates/hopgold.crop.json | 12 - .../blockstates/hopgoldinguk.crop.json | 12 - .../blockstates/hopgoldingusa.crop.json | 12 - .../blockstates/hopgreenbullet.crop.json | 12 - .../hophallertaumittelfruh.crop.json | 12 - .../blockstates/hophallertauusa.crop.json | 12 - .../hophbc431experimental.crop.json | 12 - .../hophbc438experimental.crop.json | 12 - .../hophbc472experimental.crop.json | 12 - .../hophbc682experimental.crop.json | 12 - .../bbs_mod/blockstates/hophelga.crop.json | 12 - .../bbs_mod/blockstates/hopherald.crop.json | 12 - .../bbs_mod/blockstates/hopherkules.crop.json | 12 - .../blockstates/hophersbrucker.crop.json | 12 - .../bbs_mod/blockstates/hophorizon.crop.json | 12 - .../blockstates/hophuellmelon.crop.json | 12 - .../blockstates/hophullerbitterer.crop.json | 12 - .../bbs_mod/blockstates/hopkohatu.crop.json | 12 - .../bbs_mod/blockstates/hopliberty.crop.json | 12 - .../bbs_mod/blockstates/hoploral.crop.json | 12 - .../bbs_mod/blockstates/hoplubelska.crop.json | 12 - .../bbs_mod/blockstates/hopmagnum.crop.json | 12 - .../blockstates/hopmandarinabavaria.crop.json | 12 - .../bbs_mod/blockstates/hopmerkur.crop.json | 12 - .../blockstates/hopmillenium.crop.json | 12 - .../bbs_mod/blockstates/hopmosaic.crop.json | 12 - .../bbs_mod/blockstates/hopmotueka.crop.json | 12 - .../blockstates/hopmounthood.crop.json | 12 - .../blockstates/hopmountrainier.crop.json | 12 - .../blockstates/hopnelsonsauvin.crop.json | 12 - .../bbs_mod/blockstates/hopnewport.crop.json | 12 - .../blockstates/hopnorthdown.crop.json | 12 - .../blockstates/hopnorthernbrewer.crop.json | 12 - .../bbs_mod/blockstates/hopnugget.crop.json | 12 - .../bbs_mod/blockstates/hopolympic.crop.json | 12 - .../bbs_mod/blockstates/hopomega.crop.json | 12 - .../bbs_mod/blockstates/hopopal.crop.json | 12 - .../bbs_mod/blockstates/hoporion.crop.json | 12 - .../bbs_mod/blockstates/hoppacifica.crop.json | 12 - .../blockstates/hoppacificgem.crop.json | 12 - .../blockstates/hoppacificjade.crop.json | 12 - .../bbs_mod/blockstates/hoppalisade.crop.json | 12 - .../blockstates/hopperlegermany.crop.json | 12 - .../bbs_mod/blockstates/hopperleusa.crop.json | 12 - .../bbs_mod/blockstates/hopphoenix.crop.json | 12 - .../bbs_mod/blockstates/hoppilgrim.crop.json | 12 - .../bbs_mod/blockstates/hoppioneer.crop.json | 12 - .../bbs_mod/blockstates/hoppolaris.crop.json | 12 - .../bbs_mod/blockstates/hoppremiant.crop.json | 12 - .../blockstates/hopprideofringwood.crop.json | 12 - .../bbs_mod/blockstates/hopprogress.crop.json | 12 - .../bbs_mod/blockstates/hoprakau.crop.json | 12 - .../bbs_mod/blockstates/hoprecord.crop.json | 12 - .../bbs_mod/blockstates/hopriwaka.crop.json | 12 - .../bbs_mod/blockstates/hopsaaz.crop.json | 12 - .../bbs_mod/blockstates/hopsantiam.crop.json | 12 - .../bbs_mod/blockstates/hopsaphir.crop.json | 12 - .../bbs_mod/blockstates/hopsatus.crop.json | 12 - .../blockstates/hopsavinjskigolding.crop.json | 12 - .../bbs_mod/blockstates/hopselect.crop.json | 12 - .../bbs_mod/blockstates/hopsimcoe.crop.json | 12 - .../bbs_mod/blockstates/hopsmaragd.crop.json | 12 - .../blockstates/hopsorachiace.crop.json | 12 - .../blockstates/hopsoutherncross.crop.json | 12 - .../blockstates/hopsovereign.crop.json | 12 - .../bbs_mod/blockstates/hopspalt.crop.json | 12 - .../bbs_mod/blockstates/hopsterling.crop.json | 12 - .../blockstates/hopsticklebract.crop.json | 12 - .../blockstates/hopstrisselspalt.crop.json | 12 - .../blockstates/hopstyriangolding.crop.json | 12 - .../bbs_mod/blockstates/hopsummer.crop.json | 12 - .../bbs_mod/blockstates/hopsummit.crop.json | 12 - .../blockstates/hopsuperalpha.crop.json | 12 - .../blockstates/hopsuperpride.crop.json | 12 - .../bbs_mod/blockstates/hopsussex.crop.json | 12 - .../bbs_mod/blockstates/hopsylva.crop.json | 12 - .../bbs_mod/blockstates/hoptahoma.crop.json | 12 - .../bbs_mod/blockstates/hoptalisman.crop.json | 12 - .../bbs_mod/blockstates/hoptarget.crop.json | 12 - .../hoptettnangergermany.crop.json | 12 - .../blockstates/hoptettnangerusa.crop.json | 12 - .../bbs_mod/blockstates/hoptomahawk.crop.json | 12 - .../blockstates/hoptradition.crop.json | 12 - .../blockstates/hoptriplepearl.crop.json | 12 - .../bbs_mod/blockstates/hoptriskel.crop.json | 12 - .../bbs_mod/blockstates/hopultra.crop.json | 12 - .../bbs_mod/blockstates/hopvanguard.crop.json | 12 - .../bbs_mod/blockstates/hopwaiiti.crop.json | 12 - .../bbs_mod/blockstates/hopwaimea.crop.json | 12 - .../bbs_mod/blockstates/hopwakatu.crop.json | 12 - .../bbs_mod/blockstates/hopwarrior.crop.json | 12 - .../blockstates/hopwhitbreadgolding.crop.json | 12 - .../blockstates/hopwillamette.crop.json | 12 - .../blockstates/hopyakimacluster.crop.json | 12 - .../blockstates/hopyamhillgolding.crop.json | 12 - .../bbs_mod/blockstates/hopyeoman.crop.json | 12 - .../bbs_mod/blockstates/hopzenith.crop.json | 12 - .../bbs_mod/blockstates/hopzeus.crop.json | 12 - .../bbs_mod/blockstates/hopzythos.crop.json | 12 - .../bbs_mod/blockstates/microbrewer.json | 26 - .../assets/bbs_mod/blockstates/micropack.json | 10 - .../bbs_mod/blockstates/modelblock.json | 10 - .../assets/bbs_mod/blockstates/pelleter.json | 43 -- .../assets/bbs_mod/blockstates/wort.json | 22 - .../assets/bbs_mod/lang/en_us.lang | 595 ------------------ .../bbs_mod/models/block/hops_stage0.json | 6 - .../bbs_mod/models/block/hops_stage1.json | 6 - .../bbs_mod/models/block/hops_stage2.json | 6 - .../bbs_mod/models/block/hops_stage3.json | 6 - .../bbs_mod/models/block/hops_stage4.json | 6 - .../bbs_mod/models/block/hops_stage5.json | 6 - .../bbs_mod/models/block/hops_stage6.json | 6 - .../bbs_mod/models/block/hops_stage7.json | 6 - .../bbs_mod/models/block/microbrewer.json | 204 ------ .../models/block/microbrewer_empty.json | 139 ---- .../bbs_mod/models/block/micropack.json | 74 --- .../bbs_mod/models/block/modelblock.json | 6 - .../models/item/admiral.crop_stage0.json | 18 - .../models/item/admiral.crop_stage1.json | 18 - .../models/item/admiral.crop_stage2.json | 18 - .../models/item/admiral.crop_stage3.json | 18 - .../models/item/admiral.crop_stage4.json | 18 - .../models/item/admiral.crop_stage5.json | 18 - .../models/item/admiral.crop_stage6.json | 18 - .../models/item/admiral.crop_stage7.json | 18 - .../bbs_mod/models/item/admiral.hop.json | 6 - .../bbs_mod/models/item/admiral.pellet.json | 6 - .../bbs_mod/models/item/admiral.rhizome.json | 6 - .../models/item/ahtanum.crop_stage0.json | 18 - .../models/item/ahtanum.crop_stage1.json | 18 - .../models/item/ahtanum.crop_stage2.json | 18 - .../models/item/ahtanum.crop_stage3.json | 18 - .../models/item/ahtanum.crop_stage4.json | 18 - .../models/item/ahtanum.crop_stage5.json | 18 - .../models/item/ahtanum.crop_stage6.json | 18 - .../models/item/ahtanum.crop_stage7.json | 18 - .../bbs_mod/models/item/ahtanum.hop.json | 6 - .../bbs_mod/models/item/ahtanum.pellet.json | 6 - .../bbs_mod/models/item/ahtanum.rhizome.json | 6 - .../bbs_mod/models/item/aluminiumpot.json | 43 -- .../models/item/amarillo.crop_stage0.json | 18 - .../models/item/amarillo.crop_stage1.json | 18 - .../models/item/amarillo.crop_stage2.json | 18 - .../models/item/amarillo.crop_stage3.json | 18 - .../models/item/amarillo.crop_stage4.json | 18 - .../models/item/amarillo.crop_stage5.json | 18 - .../models/item/amarillo.crop_stage6.json | 18 - .../models/item/amarillo.crop_stage7.json | 18 - .../bbs_mod/models/item/amarillo.hop.json | 6 - .../bbs_mod/models/item/amarillo.pellet.json | 6 - .../bbs_mod/models/item/amarillo.rhizome.json | 6 - .../models/item/aquila.crop_stage0.json | 18 - .../models/item/aquila.crop_stage1.json | 18 - .../models/item/aquila.crop_stage2.json | 18 - .../models/item/aquila.crop_stage3.json | 18 - .../models/item/aquila.crop_stage4.json | 18 - .../models/item/aquila.crop_stage5.json | 18 - .../models/item/aquila.crop_stage6.json | 18 - .../models/item/aquila.crop_stage7.json | 18 - .../bbs_mod/models/item/aquila.hop.json | 6 - .../bbs_mod/models/item/aquila.pellet.json | 6 - .../bbs_mod/models/item/aquila.rhizome.json | 6 - .../models/item/aramis.crop_stage0.json | 18 - .../models/item/aramis.crop_stage1.json | 18 - .../models/item/aramis.crop_stage2.json | 18 - .../models/item/aramis.crop_stage3.json | 18 - .../models/item/aramis.crop_stage4.json | 18 - .../models/item/aramis.crop_stage5.json | 18 - .../models/item/aramis.crop_stage6.json | 18 - .../models/item/aramis.crop_stage7.json | 18 - .../bbs_mod/models/item/aramis.hop.json | 6 - .../bbs_mod/models/item/aramis.pellet.json | 6 - .../bbs_mod/models/item/aramis.rhizome.json | 6 - .../models/item/aurora.crop_stage0.json | 18 - .../models/item/aurora.crop_stage1.json | 18 - .../models/item/aurora.crop_stage2.json | 18 - .../models/item/aurora.crop_stage3.json | 18 - .../models/item/aurora.crop_stage4.json | 18 - .../models/item/aurora.crop_stage5.json | 18 - .../models/item/aurora.crop_stage6.json | 18 - .../models/item/aurora.crop_stage7.json | 18 - .../bbs_mod/models/item/aurora.hop.json | 6 - .../bbs_mod/models/item/aurora.pellet.json | 6 - .../bbs_mod/models/item/aurora.rhizome.json | 6 - .../models/item/banner.crop_stage0.json | 18 - .../models/item/banner.crop_stage1.json | 18 - .../models/item/banner.crop_stage2.json | 18 - .../models/item/banner.crop_stage3.json | 18 - .../models/item/banner.crop_stage4.json | 18 - .../models/item/banner.crop_stage5.json | 18 - .../models/item/banner.crop_stage6.json | 18 - .../models/item/banner.crop_stage7.json | 18 - .../bbs_mod/models/item/banner.hop.json | 6 - .../bbs_mod/models/item/banner.pellet.json | 6 - .../bbs_mod/models/item/banner.rhizome.json | 6 - .../models/item/bcgolding.crop_stage0.json | 18 - .../models/item/bcgolding.crop_stage1.json | 18 - .../models/item/bcgolding.crop_stage2.json | 18 - .../models/item/bcgolding.crop_stage3.json | 18 - .../models/item/bcgolding.crop_stage4.json | 18 - .../models/item/bcgolding.crop_stage5.json | 18 - .../models/item/bcgolding.crop_stage6.json | 18 - .../models/item/bcgolding.crop_stage7.json | 18 - .../bbs_mod/models/item/bcgolding.hop.json | 6 - .../bbs_mod/models/item/bcgolding.pellet.json | 6 - .../models/item/bcgolding.rhizome.json | 6 - .../bbs_mod/models/item/beerbucket_srm0.json | 18 - .../bbs_mod/models/item/beerbucket_srm1.json | 18 - .../bbs_mod/models/item/beerbucket_srm10.json | 18 - .../bbs_mod/models/item/beerbucket_srm2.json | 18 - .../bbs_mod/models/item/beerbucket_srm3.json | 18 - .../bbs_mod/models/item/beerbucket_srm4.json | 18 - .../bbs_mod/models/item/beerbucket_srm5.json | 18 - .../bbs_mod/models/item/beerbucket_srm6.json | 18 - .../bbs_mod/models/item/beerbucket_srm7.json | 18 - .../bbs_mod/models/item/beerbucket_srm8.json | 18 - .../bbs_mod/models/item/beerbucket_srm9.json | 18 - .../assets/bbs_mod/models/item/beerkeg.json | 6 - .../models/item/bittergold.crop_stage0.json | 18 - .../models/item/bittergold.crop_stage1.json | 18 - .../models/item/bittergold.crop_stage2.json | 18 - .../models/item/bittergold.crop_stage3.json | 18 - .../models/item/bittergold.crop_stage4.json | 18 - .../models/item/bittergold.crop_stage5.json | 18 - .../models/item/bittergold.crop_stage6.json | 18 - .../models/item/bittergold.crop_stage7.json | 18 - .../bbs_mod/models/item/bittergold.hop.json | 6 - .../models/item/bittergold.pellet.json | 6 - .../models/item/bittergold.rhizome.json | 6 - .../models/item/blanc.crop_stage0.json | 18 - .../models/item/blanc.crop_stage1.json | 18 - .../models/item/blanc.crop_stage2.json | 18 - .../models/item/blanc.crop_stage3.json | 18 - .../models/item/blanc.crop_stage4.json | 18 - .../models/item/blanc.crop_stage5.json | 18 - .../models/item/blanc.crop_stage6.json | 18 - .../models/item/blanc.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/blanc.hop.json | 6 - .../bbs_mod/models/item/blanc.pellet.json | 6 - .../bbs_mod/models/item/blanc.rhizome.json | 6 - .../models/item/bobek.crop_stage0.json | 18 - .../models/item/bobek.crop_stage1.json | 18 - .../models/item/bobek.crop_stage2.json | 18 - .../models/item/bobek.crop_stage3.json | 18 - .../models/item/bobek.crop_stage4.json | 18 - .../models/item/bobek.crop_stage5.json | 18 - .../models/item/bobek.crop_stage6.json | 18 - .../models/item/bobek.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/bobek.hop.json | 6 - .../bbs_mod/models/item/bobek.pellet.json | 6 - .../bbs_mod/models/item/bobek.rhizome.json | 6 - .../item/bramlingcross.crop_stage0.json | 18 - .../item/bramlingcross.crop_stage1.json | 18 - .../item/bramlingcross.crop_stage2.json | 18 - .../item/bramlingcross.crop_stage3.json | 18 - .../item/bramlingcross.crop_stage4.json | 18 - .../item/bramlingcross.crop_stage5.json | 18 - .../item/bramlingcross.crop_stage6.json | 18 - .../item/bramlingcross.crop_stage7.json | 18 - .../models/item/bramlingcross.hop.json | 6 - .../models/item/bramlingcross.pellet.json | 6 - .../models/item/bramlingcross.rhizome.json | 6 - .../models/item/bravo.crop_stage0.json | 18 - .../models/item/bravo.crop_stage1.json | 18 - .../models/item/bravo.crop_stage2.json | 18 - .../models/item/bravo.crop_stage3.json | 18 - .../models/item/bravo.crop_stage4.json | 18 - .../models/item/bravo.crop_stage5.json | 18 - .../models/item/bravo.crop_stage6.json | 18 - .../models/item/bravo.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/bravo.hop.json | 6 - .../bbs_mod/models/item/bravo.pellet.json | 6 - .../bbs_mod/models/item/bravo.rhizome.json | 6 - .../item/brewersgoldgermany.crop_stage0.json | 18 - .../item/brewersgoldgermany.crop_stage1.json | 18 - .../item/brewersgoldgermany.crop_stage2.json | 18 - .../item/brewersgoldgermany.crop_stage3.json | 18 - .../item/brewersgoldgermany.crop_stage4.json | 18 - .../item/brewersgoldgermany.crop_stage5.json | 18 - .../item/brewersgoldgermany.crop_stage6.json | 18 - .../item/brewersgoldgermany.crop_stage7.json | 18 - .../models/item/brewersgoldgermany.hop.json | 6 - .../item/brewersgoldgermany.pellet.json | 6 - .../item/brewersgoldgermany.rhizome.json | 6 - .../item/brewersgoldusa.crop_stage0.json | 18 - .../item/brewersgoldusa.crop_stage1.json | 18 - .../item/brewersgoldusa.crop_stage2.json | 18 - .../item/brewersgoldusa.crop_stage3.json | 18 - .../item/brewersgoldusa.crop_stage4.json | 18 - .../item/brewersgoldusa.crop_stage5.json | 18 - .../item/brewersgoldusa.crop_stage6.json | 18 - .../item/brewersgoldusa.crop_stage7.json | 18 - .../models/item/brewersgoldusa.hop.json | 6 - .../models/item/brewersgoldusa.pellet.json | 6 - .../models/item/brewersgoldusa.rhizome.json | 6 - .../models/item/bullion.crop_stage0.json | 18 - .../models/item/bullion.crop_stage1.json | 18 - .../models/item/bullion.crop_stage2.json | 18 - .../models/item/bullion.crop_stage3.json | 18 - .../models/item/bullion.crop_stage4.json | 18 - .../models/item/bullion.crop_stage5.json | 18 - .../models/item/bullion.crop_stage6.json | 18 - .../models/item/bullion.crop_stage7.json | 18 - .../bbs_mod/models/item/bullion.hop.json | 6 - .../bbs_mod/models/item/bullion.pellet.json | 6 - .../bbs_mod/models/item/bullion.rhizome.json | 6 - .../models/item/cascade.crop_stage0.json | 18 - .../models/item/cascade.crop_stage1.json | 18 - .../models/item/cascade.crop_stage2.json | 18 - .../models/item/cascade.crop_stage3.json | 18 - .../models/item/cascade.crop_stage4.json | 18 - .../models/item/cascade.crop_stage5.json | 18 - .../models/item/cascade.crop_stage6.json | 18 - .../models/item/cascade.crop_stage7.json | 18 - .../bbs_mod/models/item/cascade.hop.json | 6 - .../bbs_mod/models/item/cascade.pellet.json | 6 - .../bbs_mod/models/item/cascade.rhizome.json | 6 - .../models/item/celeia.crop_stage0.json | 18 - .../models/item/celeia.crop_stage1.json | 18 - .../models/item/celeia.crop_stage2.json | 18 - .../models/item/celeia.crop_stage3.json | 18 - .../models/item/celeia.crop_stage4.json | 18 - .../models/item/celeia.crop_stage5.json | 18 - .../models/item/celeia.crop_stage6.json | 18 - .../models/item/celeia.crop_stage7.json | 18 - .../bbs_mod/models/item/celeia.hop.json | 6 - .../bbs_mod/models/item/celeia.pellet.json | 6 - .../bbs_mod/models/item/celeia.rhizome.json | 6 - .../models/item/centennial.crop_stage0.json | 18 - .../models/item/centennial.crop_stage1.json | 18 - .../models/item/centennial.crop_stage2.json | 18 - .../models/item/centennial.crop_stage3.json | 18 - .../models/item/centennial.crop_stage4.json | 18 - .../models/item/centennial.crop_stage5.json | 18 - .../models/item/centennial.crop_stage6.json | 18 - .../models/item/centennial.crop_stage7.json | 18 - .../bbs_mod/models/item/centennial.hop.json | 6 - .../models/item/centennial.pellet.json | 6 - .../models/item/centennial.rhizome.json | 6 - .../models/item/challenger.crop_stage0.json | 18 - .../models/item/challenger.crop_stage1.json | 18 - .../models/item/challenger.crop_stage2.json | 18 - .../models/item/challenger.crop_stage3.json | 18 - .../models/item/challenger.crop_stage4.json | 18 - .../models/item/challenger.crop_stage5.json | 18 - .../models/item/challenger.crop_stage6.json | 18 - .../models/item/challenger.crop_stage7.json | 18 - .../bbs_mod/models/item/challenger.hop.json | 6 - .../models/item/challenger.pellet.json | 6 - .../models/item/challenger.rhizome.json | 6 - .../models/item/chelan.crop_stage0.json | 18 - .../models/item/chelan.crop_stage1.json | 18 - .../models/item/chelan.crop_stage2.json | 18 - .../models/item/chelan.crop_stage3.json | 18 - .../models/item/chelan.crop_stage4.json | 18 - .../models/item/chelan.crop_stage5.json | 18 - .../models/item/chelan.crop_stage6.json | 18 - .../models/item/chelan.crop_stage7.json | 18 - .../bbs_mod/models/item/chelan.hop.json | 6 - .../bbs_mod/models/item/chelan.pellet.json | 6 - .../bbs_mod/models/item/chelan.rhizome.json | 6 - .../models/item/chinook.crop_stage0.json | 18 - .../models/item/chinook.crop_stage1.json | 18 - .../models/item/chinook.crop_stage2.json | 18 - .../models/item/chinook.crop_stage3.json | 18 - .../models/item/chinook.crop_stage4.json | 18 - .../models/item/chinook.crop_stage5.json | 18 - .../models/item/chinook.crop_stage6.json | 18 - .../models/item/chinook.crop_stage7.json | 18 - .../bbs_mod/models/item/chinook.hop.json | 6 - .../bbs_mod/models/item/chinook.pellet.json | 6 - .../bbs_mod/models/item/chinook.rhizome.json | 6 - .../models/item/citra.crop_stage0.json | 18 - .../models/item/citra.crop_stage1.json | 18 - .../models/item/citra.crop_stage2.json | 18 - .../models/item/citra.crop_stage3.json | 18 - .../models/item/citra.crop_stage4.json | 18 - .../models/item/citra.crop_stage5.json | 18 - .../models/item/citra.crop_stage6.json | 18 - .../models/item/citra.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/citra.hop.json | 6 - .../bbs_mod/models/item/citra.pellet.json | 6 - .../bbs_mod/models/item/citra.rhizome.json | 6 - .../models/item/cluster.crop_stage0.json | 18 - .../models/item/cluster.crop_stage1.json | 18 - .../models/item/cluster.crop_stage2.json | 18 - .../models/item/cluster.crop_stage3.json | 18 - .../models/item/cluster.crop_stage4.json | 18 - .../models/item/cluster.crop_stage5.json | 18 - .../models/item/cluster.crop_stage6.json | 18 - .../models/item/cluster.crop_stage7.json | 18 - .../bbs_mod/models/item/cluster.hop.json | 6 - .../bbs_mod/models/item/cluster.pellet.json | 6 - .../bbs_mod/models/item/cluster.rhizome.json | 6 - .../models/item/columbus.crop_stage0.json | 18 - .../models/item/columbus.crop_stage1.json | 18 - .../models/item/columbus.crop_stage2.json | 18 - .../models/item/columbus.crop_stage3.json | 18 - .../models/item/columbus.crop_stage4.json | 18 - .../models/item/columbus.crop_stage5.json | 18 - .../models/item/columbus.crop_stage6.json | 18 - .../models/item/columbus.crop_stage7.json | 18 - .../bbs_mod/models/item/columbus.hop.json | 6 - .../bbs_mod/models/item/columbus.pellet.json | 6 - .../bbs_mod/models/item/columbus.rhizome.json | 6 - .../models/item/comet.crop_stage0.json | 18 - .../models/item/comet.crop_stage1.json | 18 - .../models/item/comet.crop_stage2.json | 18 - .../models/item/comet.crop_stage3.json | 18 - .../models/item/comet.crop_stage4.json | 18 - .../models/item/comet.crop_stage5.json | 18 - .../models/item/comet.crop_stage6.json | 18 - .../models/item/comet.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/comet.hop.json | 6 - .../bbs_mod/models/item/comet.pellet.json | 6 - .../bbs_mod/models/item/comet.rhizome.json | 6 - .../models/item/crystal.crop_stage0.json | 18 - .../models/item/crystal.crop_stage1.json | 18 - .../models/item/crystal.crop_stage2.json | 18 - .../models/item/crystal.crop_stage3.json | 18 - .../models/item/crystal.crop_stage4.json | 18 - .../models/item/crystal.crop_stage5.json | 18 - .../models/item/crystal.crop_stage6.json | 18 - .../models/item/crystal.crop_stage7.json | 18 - .../bbs_mod/models/item/crystal.hop.json | 6 - .../bbs_mod/models/item/crystal.pellet.json | 6 - .../bbs_mod/models/item/crystal.rhizome.json | 6 - .../models/item/drrudi.crop_stage0.json | 18 - .../models/item/drrudi.crop_stage1.json | 18 - .../models/item/drrudi.crop_stage2.json | 18 - .../models/item/drrudi.crop_stage3.json | 18 - .../models/item/drrudi.crop_stage4.json | 18 - .../models/item/drrudi.crop_stage5.json | 18 - .../models/item/drrudi.crop_stage6.json | 18 - .../models/item/drrudi.crop_stage7.json | 18 - .../bbs_mod/models/item/drrudi.hop.json | 6 - .../bbs_mod/models/item/drrudi.pellet.json | 6 - .../bbs_mod/models/item/drrudi.rhizome.json | 6 - .../item/eastkentgolding.crop_stage0.json | 18 - .../item/eastkentgolding.crop_stage1.json | 18 - .../item/eastkentgolding.crop_stage2.json | 18 - .../item/eastkentgolding.crop_stage3.json | 18 - .../item/eastkentgolding.crop_stage4.json | 18 - .../item/eastkentgolding.crop_stage5.json | 18 - .../item/eastkentgolding.crop_stage6.json | 18 - .../item/eastkentgolding.crop_stage7.json | 18 - .../models/item/eastkentgolding.hop.json | 6 - .../models/item/eastkentgolding.pellet.json | 6 - .../models/item/eastkentgolding.rhizome.json | 6 - .../models/item/ekuanot.crop_stage0.json | 18 - .../models/item/ekuanot.crop_stage1.json | 18 - .../models/item/ekuanot.crop_stage2.json | 18 - .../models/item/ekuanot.crop_stage3.json | 18 - .../models/item/ekuanot.crop_stage4.json | 18 - .../models/item/ekuanot.crop_stage5.json | 18 - .../models/item/ekuanot.crop_stage6.json | 18 - .../models/item/ekuanot.crop_stage7.json | 18 - .../bbs_mod/models/item/ekuanot.hop.json | 6 - .../bbs_mod/models/item/ekuanot.pellet.json | 6 - .../bbs_mod/models/item/ekuanot.rhizome.json | 6 - .../bbs_mod/models/item/ella.crop_stage0.json | 18 - .../bbs_mod/models/item/ella.crop_stage1.json | 18 - .../bbs_mod/models/item/ella.crop_stage2.json | 18 - .../bbs_mod/models/item/ella.crop_stage3.json | 18 - .../bbs_mod/models/item/ella.crop_stage4.json | 18 - .../bbs_mod/models/item/ella.crop_stage5.json | 18 - .../bbs_mod/models/item/ella.crop_stage6.json | 18 - .../bbs_mod/models/item/ella.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/ella.hop.json | 6 - .../bbs_mod/models/item/ella.pellet.json | 6 - .../bbs_mod/models/item/ella.rhizome.json | 6 - .../models/item/eroica.crop_stage0.json | 18 - .../models/item/eroica.crop_stage1.json | 18 - .../models/item/eroica.crop_stage2.json | 18 - .../models/item/eroica.crop_stage3.json | 18 - .../models/item/eroica.crop_stage4.json | 18 - .../models/item/eroica.crop_stage5.json | 18 - .../models/item/eroica.crop_stage6.json | 18 - .../models/item/eroica.crop_stage7.json | 18 - .../bbs_mod/models/item/eroica.hop.json | 6 - .../bbs_mod/models/item/eroica.pellet.json | 6 - .../bbs_mod/models/item/eroica.rhizome.json | 6 - .../item/falconersflight.crop_stage0.json | 18 - .../item/falconersflight.crop_stage1.json | 18 - .../item/falconersflight.crop_stage2.json | 18 - .../item/falconersflight.crop_stage3.json | 18 - .../item/falconersflight.crop_stage4.json | 18 - .../item/falconersflight.crop_stage5.json | 18 - .../item/falconersflight.crop_stage6.json | 18 - .../item/falconersflight.crop_stage7.json | 18 - .../models/item/falconersflight.hop.json | 6 - .../models/item/falconersflight.pellet.json | 6 - .../models/item/falconersflight.rhizome.json | 6 - .../models/item/firstgold.crop_stage0.json | 18 - .../models/item/firstgold.crop_stage1.json | 18 - .../models/item/firstgold.crop_stage2.json | 18 - .../models/item/firstgold.crop_stage3.json | 18 - .../models/item/firstgold.crop_stage4.json | 18 - .../models/item/firstgold.crop_stage5.json | 18 - .../models/item/firstgold.crop_stage6.json | 18 - .../models/item/firstgold.crop_stage7.json | 18 - .../bbs_mod/models/item/firstgold.hop.json | 6 - .../bbs_mod/models/item/firstgold.pellet.json | 6 - .../models/item/firstgold.rhizome.json | 6 - .../models/item/fuggleuk.crop_stage0.json | 18 - .../models/item/fuggleuk.crop_stage1.json | 18 - .../models/item/fuggleuk.crop_stage2.json | 18 - .../models/item/fuggleuk.crop_stage3.json | 18 - .../models/item/fuggleuk.crop_stage4.json | 18 - .../models/item/fuggleuk.crop_stage5.json | 18 - .../models/item/fuggleuk.crop_stage6.json | 18 - .../models/item/fuggleuk.crop_stage7.json | 18 - .../bbs_mod/models/item/fuggleuk.hop.json | 6 - .../bbs_mod/models/item/fuggleuk.pellet.json | 6 - .../bbs_mod/models/item/fuggleuk.rhizome.json | 6 - .../models/item/galaxy.crop_stage0.json | 18 - .../models/item/galaxy.crop_stage1.json | 18 - .../models/item/galaxy.crop_stage2.json | 18 - .../models/item/galaxy.crop_stage3.json | 18 - .../models/item/galaxy.crop_stage4.json | 18 - .../models/item/galaxy.crop_stage5.json | 18 - .../models/item/galaxy.crop_stage6.json | 18 - .../models/item/galaxy.crop_stage7.json | 18 - .../bbs_mod/models/item/galaxy.hop.json | 6 - .../bbs_mod/models/item/galaxy.pellet.json | 6 - .../bbs_mod/models/item/galaxy.rhizome.json | 6 - .../models/item/galena.crop_stage0.json | 18 - .../models/item/galena.crop_stage1.json | 18 - .../models/item/galena.crop_stage2.json | 18 - .../models/item/galena.crop_stage3.json | 18 - .../models/item/galena.crop_stage4.json | 18 - .../models/item/galena.crop_stage5.json | 18 - .../models/item/galena.crop_stage6.json | 18 - .../models/item/galena.crop_stage7.json | 18 - .../bbs_mod/models/item/galena.hop.json | 6 - .../bbs_mod/models/item/galena.pellet.json | 6 - .../bbs_mod/models/item/galena.rhizome.json | 6 - .../models/item/glacier.crop_stage0.json | 18 - .../models/item/glacier.crop_stage1.json | 18 - .../models/item/glacier.crop_stage2.json | 18 - .../models/item/glacier.crop_stage3.json | 18 - .../models/item/glacier.crop_stage4.json | 18 - .../models/item/glacier.crop_stage5.json | 18 - .../models/item/glacier.crop_stage6.json | 18 - .../models/item/glacier.crop_stage7.json | 18 - .../bbs_mod/models/item/glacier.hop.json | 6 - .../bbs_mod/models/item/glacier.pellet.json | 6 - .../bbs_mod/models/item/glacier.rhizome.json | 6 - .../bbs_mod/models/item/gold.crop_stage0.json | 18 - .../bbs_mod/models/item/gold.crop_stage1.json | 18 - .../bbs_mod/models/item/gold.crop_stage2.json | 18 - .../bbs_mod/models/item/gold.crop_stage3.json | 18 - .../bbs_mod/models/item/gold.crop_stage4.json | 18 - .../bbs_mod/models/item/gold.crop_stage5.json | 18 - .../bbs_mod/models/item/gold.crop_stage6.json | 18 - .../bbs_mod/models/item/gold.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/gold.hop.json | 6 - .../bbs_mod/models/item/gold.pellet.json | 6 - .../bbs_mod/models/item/gold.rhizome.json | 6 - .../models/item/goldinguk.crop_stage0.json | 18 - .../models/item/goldinguk.crop_stage1.json | 18 - .../models/item/goldinguk.crop_stage2.json | 18 - .../models/item/goldinguk.crop_stage3.json | 18 - .../models/item/goldinguk.crop_stage4.json | 18 - .../models/item/goldinguk.crop_stage5.json | 18 - .../models/item/goldinguk.crop_stage6.json | 18 - .../models/item/goldinguk.crop_stage7.json | 18 - .../bbs_mod/models/item/goldinguk.hop.json | 6 - .../bbs_mod/models/item/goldinguk.pellet.json | 6 - .../models/item/goldinguk.rhizome.json | 6 - .../models/item/goldingusa.crop_stage0.json | 18 - .../models/item/goldingusa.crop_stage1.json | 18 - .../models/item/goldingusa.crop_stage2.json | 18 - .../models/item/goldingusa.crop_stage3.json | 18 - .../models/item/goldingusa.crop_stage4.json | 18 - .../models/item/goldingusa.crop_stage5.json | 18 - .../models/item/goldingusa.crop_stage6.json | 18 - .../models/item/goldingusa.crop_stage7.json | 18 - .../bbs_mod/models/item/goldingusa.hop.json | 6 - .../models/item/goldingusa.pellet.json | 6 - .../models/item/goldingusa.rhizome.json | 6 - .../models/item/greenbullet.crop_stage0.json | 18 - .../models/item/greenbullet.crop_stage1.json | 18 - .../models/item/greenbullet.crop_stage2.json | 18 - .../models/item/greenbullet.crop_stage3.json | 18 - .../models/item/greenbullet.crop_stage4.json | 18 - .../models/item/greenbullet.crop_stage5.json | 18 - .../models/item/greenbullet.crop_stage6.json | 18 - .../models/item/greenbullet.crop_stage7.json | 18 - .../bbs_mod/models/item/greenbullet.hop.json | 6 - .../models/item/greenbullet.pellet.json | 6 - .../models/item/greenbullet.rhizome.json | 6 - .../item/hallertaumittelfruh.crop_stage0.json | 18 - .../item/hallertaumittelfruh.crop_stage1.json | 18 - .../item/hallertaumittelfruh.crop_stage2.json | 18 - .../item/hallertaumittelfruh.crop_stage3.json | 18 - .../item/hallertaumittelfruh.crop_stage4.json | 18 - .../item/hallertaumittelfruh.crop_stage5.json | 18 - .../item/hallertaumittelfruh.crop_stage6.json | 18 - .../item/hallertaumittelfruh.crop_stage7.json | 18 - .../models/item/hallertaumittelfruh.hop.json | 6 - .../item/hallertaumittelfruh.pellet.json | 6 - .../item/hallertaumittelfruh.rhizome.json | 6 - .../models/item/hallertauusa.crop_stage0.json | 18 - .../models/item/hallertauusa.crop_stage1.json | 18 - .../models/item/hallertauusa.crop_stage2.json | 18 - .../models/item/hallertauusa.crop_stage3.json | 18 - .../models/item/hallertauusa.crop_stage4.json | 18 - .../models/item/hallertauusa.crop_stage5.json | 18 - .../models/item/hallertauusa.crop_stage6.json | 18 - .../models/item/hallertauusa.crop_stage7.json | 18 - .../bbs_mod/models/item/hallertauusa.hop.json | 6 - .../models/item/hallertauusa.pellet.json | 6 - .../models/item/hallertauusa.rhizome.json | 6 - .../item/hbc431experimental.crop_stage0.json | 18 - .../item/hbc431experimental.crop_stage1.json | 18 - .../item/hbc431experimental.crop_stage2.json | 18 - .../item/hbc431experimental.crop_stage3.json | 18 - .../item/hbc431experimental.crop_stage4.json | 18 - .../item/hbc431experimental.crop_stage5.json | 18 - .../item/hbc431experimental.crop_stage6.json | 18 - .../item/hbc431experimental.crop_stage7.json | 18 - .../models/item/hbc431experimental.hop.json | 6 - .../item/hbc431experimental.pellet.json | 6 - .../item/hbc431experimental.rhizome.json | 6 - .../item/hbc438experimental.crop_stage0.json | 18 - .../item/hbc438experimental.crop_stage1.json | 18 - .../item/hbc438experimental.crop_stage2.json | 18 - .../item/hbc438experimental.crop_stage3.json | 18 - .../item/hbc438experimental.crop_stage4.json | 18 - .../item/hbc438experimental.crop_stage5.json | 18 - .../item/hbc438experimental.crop_stage6.json | 18 - .../item/hbc438experimental.crop_stage7.json | 18 - .../models/item/hbc438experimental.hop.json | 6 - .../item/hbc438experimental.pellet.json | 6 - .../item/hbc438experimental.rhizome.json | 6 - .../item/hbc472experimental.crop_stage0.json | 18 - .../item/hbc472experimental.crop_stage1.json | 18 - .../item/hbc472experimental.crop_stage2.json | 18 - .../item/hbc472experimental.crop_stage3.json | 18 - .../item/hbc472experimental.crop_stage4.json | 18 - .../item/hbc472experimental.crop_stage5.json | 18 - .../item/hbc472experimental.crop_stage6.json | 18 - .../item/hbc472experimental.crop_stage7.json | 18 - .../models/item/hbc472experimental.hop.json | 6 - .../item/hbc472experimental.pellet.json | 6 - .../item/hbc472experimental.rhizome.json | 6 - .../item/hbc682experimental.crop_stage0.json | 18 - .../item/hbc682experimental.crop_stage1.json | 18 - .../item/hbc682experimental.crop_stage2.json | 18 - .../item/hbc682experimental.crop_stage3.json | 18 - .../item/hbc682experimental.crop_stage4.json | 18 - .../item/hbc682experimental.crop_stage5.json | 18 - .../item/hbc682experimental.crop_stage6.json | 18 - .../item/hbc682experimental.crop_stage7.json | 18 - .../models/item/hbc682experimental.hop.json | 6 - .../item/hbc682experimental.pellet.json | 6 - .../item/hbc682experimental.rhizome.json | 6 - .../models/item/helga.crop_stage0.json | 18 - .../models/item/helga.crop_stage1.json | 18 - .../models/item/helga.crop_stage2.json | 18 - .../models/item/helga.crop_stage3.json | 18 - .../models/item/helga.crop_stage4.json | 18 - .../models/item/helga.crop_stage5.json | 18 - .../models/item/helga.crop_stage6.json | 18 - .../models/item/helga.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/helga.hop.json | 6 - .../bbs_mod/models/item/helga.pellet.json | 6 - .../bbs_mod/models/item/helga.rhizome.json | 6 - .../models/item/herald.crop_stage0.json | 18 - .../models/item/herald.crop_stage1.json | 18 - .../models/item/herald.crop_stage2.json | 18 - .../models/item/herald.crop_stage3.json | 18 - .../models/item/herald.crop_stage4.json | 18 - .../models/item/herald.crop_stage5.json | 18 - .../models/item/herald.crop_stage6.json | 18 - .../models/item/herald.crop_stage7.json | 18 - .../bbs_mod/models/item/herald.hop.json | 6 - .../bbs_mod/models/item/herald.pellet.json | 6 - .../bbs_mod/models/item/herald.rhizome.json | 6 - .../models/item/herkules.crop_stage0.json | 18 - .../models/item/herkules.crop_stage1.json | 18 - .../models/item/herkules.crop_stage2.json | 18 - .../models/item/herkules.crop_stage3.json | 18 - .../models/item/herkules.crop_stage4.json | 18 - .../models/item/herkules.crop_stage5.json | 18 - .../models/item/herkules.crop_stage6.json | 18 - .../models/item/herkules.crop_stage7.json | 18 - .../bbs_mod/models/item/herkules.hop.json | 6 - .../bbs_mod/models/item/herkules.pellet.json | 6 - .../bbs_mod/models/item/herkules.rhizome.json | 6 - .../models/item/hersbrucker.crop_stage0.json | 18 - .../models/item/hersbrucker.crop_stage1.json | 18 - .../models/item/hersbrucker.crop_stage2.json | 18 - .../models/item/hersbrucker.crop_stage3.json | 18 - .../models/item/hersbrucker.crop_stage4.json | 18 - .../models/item/hersbrucker.crop_stage5.json | 18 - .../models/item/hersbrucker.crop_stage6.json | 18 - .../models/item/hersbrucker.crop_stage7.json | 18 - .../bbs_mod/models/item/hersbrucker.hop.json | 6 - .../models/item/hersbrucker.pellet.json | 6 - .../models/item/hersbrucker.rhizome.json | 6 - .../models/item/horizon.crop_stage0.json | 18 - .../models/item/horizon.crop_stage1.json | 18 - .../models/item/horizon.crop_stage2.json | 18 - .../models/item/horizon.crop_stage3.json | 18 - .../models/item/horizon.crop_stage4.json | 18 - .../models/item/horizon.crop_stage5.json | 18 - .../models/item/horizon.crop_stage6.json | 18 - .../models/item/horizon.crop_stage7.json | 18 - .../bbs_mod/models/item/horizon.hop.json | 6 - .../bbs_mod/models/item/horizon.pellet.json | 6 - .../bbs_mod/models/item/horizon.rhizome.json | 6 - .../bbs_mod/models/item/hotwortkeg.json | 6 - .../models/item/huellmelon.crop_stage0.json | 18 - .../models/item/huellmelon.crop_stage1.json | 18 - .../models/item/huellmelon.crop_stage2.json | 18 - .../models/item/huellmelon.crop_stage3.json | 18 - .../models/item/huellmelon.crop_stage4.json | 18 - .../models/item/huellmelon.crop_stage5.json | 18 - .../models/item/huellmelon.crop_stage6.json | 18 - .../models/item/huellmelon.crop_stage7.json | 18 - .../bbs_mod/models/item/huellmelon.hop.json | 6 - .../models/item/huellmelon.pellet.json | 6 - .../models/item/huellmelon.rhizome.json | 6 - .../item/hullerbitterer.crop_stage0.json | 18 - .../item/hullerbitterer.crop_stage1.json | 18 - .../item/hullerbitterer.crop_stage2.json | 18 - .../item/hullerbitterer.crop_stage3.json | 18 - .../item/hullerbitterer.crop_stage4.json | 18 - .../item/hullerbitterer.crop_stage5.json | 18 - .../item/hullerbitterer.crop_stage6.json | 18 - .../item/hullerbitterer.crop_stage7.json | 18 - .../models/item/hullerbitterer.hop.json | 6 - .../models/item/hullerbitterer.pellet.json | 6 - .../models/item/hullerbitterer.rhizome.json | 6 - .../assets/bbs_mod/models/item/keg.json | 6 - .../models/item/kohatu.crop_stage0.json | 18 - .../models/item/kohatu.crop_stage1.json | 18 - .../models/item/kohatu.crop_stage2.json | 18 - .../models/item/kohatu.crop_stage3.json | 18 - .../models/item/kohatu.crop_stage4.json | 18 - .../models/item/kohatu.crop_stage5.json | 18 - .../models/item/kohatu.crop_stage6.json | 18 - .../models/item/kohatu.crop_stage7.json | 18 - .../bbs_mod/models/item/kohatu.hop.json | 6 - .../bbs_mod/models/item/kohatu.pellet.json | 6 - .../bbs_mod/models/item/kohatu.rhizome.json | 6 - .../models/item/liberty.crop_stage0.json | 18 - .../models/item/liberty.crop_stage1.json | 18 - .../models/item/liberty.crop_stage2.json | 18 - .../models/item/liberty.crop_stage3.json | 18 - .../models/item/liberty.crop_stage4.json | 18 - .../models/item/liberty.crop_stage5.json | 18 - .../models/item/liberty.crop_stage6.json | 18 - .../models/item/liberty.crop_stage7.json | 18 - .../bbs_mod/models/item/liberty.hop.json | 6 - .../bbs_mod/models/item/liberty.pellet.json | 6 - .../bbs_mod/models/item/liberty.rhizome.json | 6 - .../assets/bbs_mod/models/item/lme.json | 6 - .../assets/bbs_mod/models/item/lme_amber.json | 6 - .../assets/bbs_mod/models/item/lme_dark.json | 6 - .../bbs_mod/models/item/lme_extralight.json | 6 - .../assets/bbs_mod/models/item/lme_light.json | 6 - .../bbs_mod/models/item/lme_munich.json | 6 - .../bbs_mod/models/item/lme_pilsen.json | 6 - .../assets/bbs_mod/models/item/lme_wheat.json | 6 - .../models/item/loral.crop_stage0.json | 18 - .../models/item/loral.crop_stage1.json | 18 - .../models/item/loral.crop_stage2.json | 18 - .../models/item/loral.crop_stage3.json | 18 - .../models/item/loral.crop_stage4.json | 18 - .../models/item/loral.crop_stage5.json | 18 - .../models/item/loral.crop_stage6.json | 18 - .../models/item/loral.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/loral.hop.json | 6 - .../bbs_mod/models/item/loral.pellet.json | 6 - .../bbs_mod/models/item/loral.rhizome.json | 6 - .../models/item/lubelska.crop_stage0.json | 18 - .../models/item/lubelska.crop_stage1.json | 18 - .../models/item/lubelska.crop_stage2.json | 18 - .../models/item/lubelska.crop_stage3.json | 18 - .../models/item/lubelska.crop_stage4.json | 18 - .../models/item/lubelska.crop_stage5.json | 18 - .../models/item/lubelska.crop_stage6.json | 18 - .../models/item/lubelska.crop_stage7.json | 18 - .../bbs_mod/models/item/lubelska.hop.json | 6 - .../bbs_mod/models/item/lubelska.pellet.json | 6 - .../bbs_mod/models/item/lubelska.rhizome.json | 6 - .../models/item/magnum.crop_stage0.json | 18 - .../models/item/magnum.crop_stage1.json | 18 - .../models/item/magnum.crop_stage2.json | 18 - .../models/item/magnum.crop_stage3.json | 18 - .../models/item/magnum.crop_stage4.json | 18 - .../models/item/magnum.crop_stage5.json | 18 - .../models/item/magnum.crop_stage6.json | 18 - .../models/item/magnum.crop_stage7.json | 18 - .../bbs_mod/models/item/magnum.hop.json | 6 - .../bbs_mod/models/item/magnum.pellet.json | 6 - .../bbs_mod/models/item/magnum.rhizome.json | 6 - .../item/mandarinabavaria.crop_stage0.json | 18 - .../item/mandarinabavaria.crop_stage1.json | 18 - .../item/mandarinabavaria.crop_stage2.json | 18 - .../item/mandarinabavaria.crop_stage3.json | 18 - .../item/mandarinabavaria.crop_stage4.json | 18 - .../item/mandarinabavaria.crop_stage5.json | 18 - .../item/mandarinabavaria.crop_stage6.json | 18 - .../item/mandarinabavaria.crop_stage7.json | 18 - .../models/item/mandarinabavaria.hop.json | 6 - .../models/item/mandarinabavaria.pellet.json | 6 - .../models/item/mandarinabavaria.rhizome.json | 6 - .../assets/bbs_mod/models/item/mashkeg.json | 6 - .../models/item/merkur.crop_stage0.json | 18 - .../models/item/merkur.crop_stage1.json | 18 - .../models/item/merkur.crop_stage2.json | 18 - .../models/item/merkur.crop_stage3.json | 18 - .../models/item/merkur.crop_stage4.json | 18 - .../models/item/merkur.crop_stage5.json | 18 - .../models/item/merkur.crop_stage6.json | 18 - .../models/item/merkur.crop_stage7.json | 18 - .../bbs_mod/models/item/merkur.hop.json | 6 - .../bbs_mod/models/item/merkur.pellet.json | 6 - .../bbs_mod/models/item/merkur.rhizome.json | 6 - .../models/item/millenium.crop_stage0.json | 18 - .../models/item/millenium.crop_stage1.json | 18 - .../models/item/millenium.crop_stage2.json | 18 - .../models/item/millenium.crop_stage3.json | 18 - .../models/item/millenium.crop_stage4.json | 18 - .../models/item/millenium.crop_stage5.json | 18 - .../models/item/millenium.crop_stage6.json | 18 - .../models/item/millenium.crop_stage7.json | 18 - .../bbs_mod/models/item/millenium.hop.json | 6 - .../bbs_mod/models/item/millenium.pellet.json | 6 - .../models/item/millenium.rhizome.json | 6 - .../models/item/mosaic.crop_stage0.json | 18 - .../models/item/mosaic.crop_stage1.json | 18 - .../models/item/mosaic.crop_stage2.json | 18 - .../models/item/mosaic.crop_stage3.json | 18 - .../models/item/mosaic.crop_stage4.json | 18 - .../models/item/mosaic.crop_stage5.json | 18 - .../models/item/mosaic.crop_stage6.json | 18 - .../models/item/mosaic.crop_stage7.json | 18 - .../bbs_mod/models/item/mosaic.hop.json | 6 - .../bbs_mod/models/item/mosaic.pellet.json | 6 - .../bbs_mod/models/item/mosaic.rhizome.json | 6 - .../models/item/motueka.crop_stage0.json | 18 - .../models/item/motueka.crop_stage1.json | 18 - .../models/item/motueka.crop_stage2.json | 18 - .../models/item/motueka.crop_stage3.json | 18 - .../models/item/motueka.crop_stage4.json | 18 - .../models/item/motueka.crop_stage5.json | 18 - .../models/item/motueka.crop_stage6.json | 18 - .../models/item/motueka.crop_stage7.json | 18 - .../bbs_mod/models/item/motueka.hop.json | 6 - .../bbs_mod/models/item/motueka.pellet.json | 6 - .../bbs_mod/models/item/motueka.rhizome.json | 6 - .../models/item/mounthood.crop_stage0.json | 18 - .../models/item/mounthood.crop_stage1.json | 18 - .../models/item/mounthood.crop_stage2.json | 18 - .../models/item/mounthood.crop_stage3.json | 18 - .../models/item/mounthood.crop_stage4.json | 18 - .../models/item/mounthood.crop_stage5.json | 18 - .../models/item/mounthood.crop_stage6.json | 18 - .../models/item/mounthood.crop_stage7.json | 18 - .../bbs_mod/models/item/mounthood.hop.json | 6 - .../bbs_mod/models/item/mounthood.pellet.json | 6 - .../models/item/mounthood.rhizome.json | 6 - .../models/item/mountrainier.crop_stage0.json | 18 - .../models/item/mountrainier.crop_stage1.json | 18 - .../models/item/mountrainier.crop_stage2.json | 18 - .../models/item/mountrainier.crop_stage3.json | 18 - .../models/item/mountrainier.crop_stage4.json | 18 - .../models/item/mountrainier.crop_stage5.json | 18 - .../models/item/mountrainier.crop_stage6.json | 18 - .../models/item/mountrainier.crop_stage7.json | 18 - .../bbs_mod/models/item/mountrainier.hop.json | 6 - .../models/item/mountrainier.pellet.json | 6 - .../models/item/mountrainier.rhizome.json | 6 - .../models/item/nelsonsauvin.crop_stage0.json | 18 - .../models/item/nelsonsauvin.crop_stage1.json | 18 - .../models/item/nelsonsauvin.crop_stage2.json | 18 - .../models/item/nelsonsauvin.crop_stage3.json | 18 - .../models/item/nelsonsauvin.crop_stage4.json | 18 - .../models/item/nelsonsauvin.crop_stage5.json | 18 - .../models/item/nelsonsauvin.crop_stage6.json | 18 - .../models/item/nelsonsauvin.crop_stage7.json | 18 - .../bbs_mod/models/item/nelsonsauvin.hop.json | 6 - .../models/item/nelsonsauvin.pellet.json | 6 - .../models/item/nelsonsauvin.rhizome.json | 6 - .../models/item/newport.crop_stage0.json | 18 - .../models/item/newport.crop_stage1.json | 18 - .../models/item/newport.crop_stage2.json | 18 - .../models/item/newport.crop_stage3.json | 18 - .../models/item/newport.crop_stage4.json | 18 - .../models/item/newport.crop_stage5.json | 18 - .../models/item/newport.crop_stage6.json | 18 - .../models/item/newport.crop_stage7.json | 18 - .../bbs_mod/models/item/newport.hop.json | 6 - .../bbs_mod/models/item/newport.pellet.json | 6 - .../bbs_mod/models/item/newport.rhizome.json | 6 - .../models/item/northdown.crop_stage0.json | 18 - .../models/item/northdown.crop_stage1.json | 18 - .../models/item/northdown.crop_stage2.json | 18 - .../models/item/northdown.crop_stage3.json | 18 - .../models/item/northdown.crop_stage4.json | 18 - .../models/item/northdown.crop_stage5.json | 18 - .../models/item/northdown.crop_stage6.json | 18 - .../models/item/northdown.crop_stage7.json | 18 - .../bbs_mod/models/item/northdown.hop.json | 6 - .../bbs_mod/models/item/northdown.pellet.json | 6 - .../models/item/northdown.rhizome.json | 6 - .../item/northernbrewer.crop_stage0.json | 18 - .../item/northernbrewer.crop_stage1.json | 18 - .../item/northernbrewer.crop_stage2.json | 18 - .../item/northernbrewer.crop_stage3.json | 18 - .../item/northernbrewer.crop_stage4.json | 18 - .../item/northernbrewer.crop_stage5.json | 18 - .../item/northernbrewer.crop_stage6.json | 18 - .../item/northernbrewer.crop_stage7.json | 18 - .../models/item/northernbrewer.hop.json | 6 - .../models/item/northernbrewer.pellet.json | 6 - .../models/item/northernbrewer.rhizome.json | 6 - .../models/item/nugget.crop_stage0.json | 18 - .../models/item/nugget.crop_stage1.json | 18 - .../models/item/nugget.crop_stage2.json | 18 - .../models/item/nugget.crop_stage3.json | 18 - .../models/item/nugget.crop_stage4.json | 18 - .../models/item/nugget.crop_stage5.json | 18 - .../models/item/nugget.crop_stage6.json | 18 - .../models/item/nugget.crop_stage7.json | 18 - .../bbs_mod/models/item/nugget.hop.json | 6 - .../bbs_mod/models/item/nugget.pellet.json | 6 - .../bbs_mod/models/item/nugget.rhizome.json | 6 - .../models/item/olympic.crop_stage0.json | 18 - .../models/item/olympic.crop_stage1.json | 18 - .../models/item/olympic.crop_stage2.json | 18 - .../models/item/olympic.crop_stage3.json | 18 - .../models/item/olympic.crop_stage4.json | 18 - .../models/item/olympic.crop_stage5.json | 18 - .../models/item/olympic.crop_stage6.json | 18 - .../models/item/olympic.crop_stage7.json | 18 - .../bbs_mod/models/item/olympic.hop.json | 6 - .../bbs_mod/models/item/olympic.pellet.json | 6 - .../bbs_mod/models/item/olympic.rhizome.json | 6 - .../models/item/omega.crop_stage0.json | 18 - .../models/item/omega.crop_stage1.json | 18 - .../models/item/omega.crop_stage2.json | 18 - .../models/item/omega.crop_stage3.json | 18 - .../models/item/omega.crop_stage4.json | 18 - .../models/item/omega.crop_stage5.json | 18 - .../models/item/omega.crop_stage6.json | 18 - .../models/item/omega.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/omega.hop.json | 6 - .../bbs_mod/models/item/omega.pellet.json | 6 - .../bbs_mod/models/item/omega.rhizome.json | 6 - .../bbs_mod/models/item/opal.crop_stage0.json | 18 - .../bbs_mod/models/item/opal.crop_stage1.json | 18 - .../bbs_mod/models/item/opal.crop_stage2.json | 18 - .../bbs_mod/models/item/opal.crop_stage3.json | 18 - .../bbs_mod/models/item/opal.crop_stage4.json | 18 - .../bbs_mod/models/item/opal.crop_stage5.json | 18 - .../bbs_mod/models/item/opal.crop_stage6.json | 18 - .../bbs_mod/models/item/opal.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/opal.hop.json | 6 - .../bbs_mod/models/item/opal.pellet.json | 6 - .../bbs_mod/models/item/opal.rhizome.json | 6 - .../models/item/orion.crop_stage0.json | 18 - .../models/item/orion.crop_stage1.json | 18 - .../models/item/orion.crop_stage2.json | 18 - .../models/item/orion.crop_stage3.json | 18 - .../models/item/orion.crop_stage4.json | 18 - .../models/item/orion.crop_stage5.json | 18 - .../models/item/orion.crop_stage6.json | 18 - .../models/item/orion.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/orion.hop.json | 6 - .../bbs_mod/models/item/orion.pellet.json | 6 - .../bbs_mod/models/item/orion.rhizome.json | 6 - .../models/item/pacifica.crop_stage0.json | 18 - .../models/item/pacifica.crop_stage1.json | 18 - .../models/item/pacifica.crop_stage2.json | 18 - .../models/item/pacifica.crop_stage3.json | 18 - .../models/item/pacifica.crop_stage4.json | 18 - .../models/item/pacifica.crop_stage5.json | 18 - .../models/item/pacifica.crop_stage6.json | 18 - .../models/item/pacifica.crop_stage7.json | 18 - .../bbs_mod/models/item/pacifica.hop.json | 6 - .../bbs_mod/models/item/pacifica.pellet.json | 6 - .../bbs_mod/models/item/pacifica.rhizome.json | 6 - .../models/item/pacificgem.crop_stage0.json | 18 - .../models/item/pacificgem.crop_stage1.json | 18 - .../models/item/pacificgem.crop_stage2.json | 18 - .../models/item/pacificgem.crop_stage3.json | 18 - .../models/item/pacificgem.crop_stage4.json | 18 - .../models/item/pacificgem.crop_stage5.json | 18 - .../models/item/pacificgem.crop_stage6.json | 18 - .../models/item/pacificgem.crop_stage7.json | 18 - .../bbs_mod/models/item/pacificgem.hop.json | 6 - .../models/item/pacificgem.pellet.json | 6 - .../models/item/pacificgem.rhizome.json | 6 - .../models/item/pacificjade.crop_stage0.json | 18 - .../models/item/pacificjade.crop_stage1.json | 18 - .../models/item/pacificjade.crop_stage2.json | 18 - .../models/item/pacificjade.crop_stage3.json | 18 - .../models/item/pacificjade.crop_stage4.json | 18 - .../models/item/pacificjade.crop_stage5.json | 18 - .../models/item/pacificjade.crop_stage6.json | 18 - .../models/item/pacificjade.crop_stage7.json | 18 - .../bbs_mod/models/item/pacificjade.hop.json | 6 - .../models/item/pacificjade.pellet.json | 6 - .../models/item/pacificjade.rhizome.json | 6 - .../models/item/palisade.crop_stage0.json | 18 - .../models/item/palisade.crop_stage1.json | 18 - .../models/item/palisade.crop_stage2.json | 18 - .../models/item/palisade.crop_stage3.json | 18 - .../models/item/palisade.crop_stage4.json | 18 - .../models/item/palisade.crop_stage5.json | 18 - .../models/item/palisade.crop_stage6.json | 18 - .../models/item/palisade.crop_stage7.json | 18 - .../bbs_mod/models/item/palisade.hop.json | 6 - .../bbs_mod/models/item/palisade.pellet.json | 6 - .../bbs_mod/models/item/palisade.rhizome.json | 6 - .../models/item/perlegermany.crop_stage0.json | 18 - .../models/item/perlegermany.crop_stage1.json | 18 - .../models/item/perlegermany.crop_stage2.json | 18 - .../models/item/perlegermany.crop_stage3.json | 18 - .../models/item/perlegermany.crop_stage4.json | 18 - .../models/item/perlegermany.crop_stage5.json | 18 - .../models/item/perlegermany.crop_stage6.json | 18 - .../models/item/perlegermany.crop_stage7.json | 18 - .../bbs_mod/models/item/perlegermany.hop.json | 6 - .../models/item/perlegermany.pellet.json | 6 - .../models/item/perlegermany.rhizome.json | 6 - .../models/item/perleusa.crop_stage0.json | 18 - .../models/item/perleusa.crop_stage1.json | 18 - .../models/item/perleusa.crop_stage2.json | 18 - .../models/item/perleusa.crop_stage3.json | 18 - .../models/item/perleusa.crop_stage4.json | 18 - .../models/item/perleusa.crop_stage5.json | 18 - .../models/item/perleusa.crop_stage6.json | 18 - .../models/item/perleusa.crop_stage7.json | 18 - .../bbs_mod/models/item/perleusa.hop.json | 6 - .../bbs_mod/models/item/perleusa.pellet.json | 6 - .../bbs_mod/models/item/perleusa.rhizome.json | 6 - .../models/item/phoenix.crop_stage0.json | 18 - .../models/item/phoenix.crop_stage1.json | 18 - .../models/item/phoenix.crop_stage2.json | 18 - .../models/item/phoenix.crop_stage3.json | 18 - .../models/item/phoenix.crop_stage4.json | 18 - .../models/item/phoenix.crop_stage5.json | 18 - .../models/item/phoenix.crop_stage6.json | 18 - .../models/item/phoenix.crop_stage7.json | 18 - .../bbs_mod/models/item/phoenix.hop.json | 6 - .../bbs_mod/models/item/phoenix.pellet.json | 6 - .../bbs_mod/models/item/phoenix.rhizome.json | 6 - .../models/item/pilgrim.crop_stage0.json | 18 - .../models/item/pilgrim.crop_stage1.json | 18 - .../models/item/pilgrim.crop_stage2.json | 18 - .../models/item/pilgrim.crop_stage3.json | 18 - .../models/item/pilgrim.crop_stage4.json | 18 - .../models/item/pilgrim.crop_stage5.json | 18 - .../models/item/pilgrim.crop_stage6.json | 18 - .../models/item/pilgrim.crop_stage7.json | 18 - .../bbs_mod/models/item/pilgrim.hop.json | 6 - .../bbs_mod/models/item/pilgrim.pellet.json | 6 - .../bbs_mod/models/item/pilgrim.rhizome.json | 6 - .../models/item/pioneer.crop_stage0.json | 18 - .../models/item/pioneer.crop_stage1.json | 18 - .../models/item/pioneer.crop_stage2.json | 18 - .../models/item/pioneer.crop_stage3.json | 18 - .../models/item/pioneer.crop_stage4.json | 18 - .../models/item/pioneer.crop_stage5.json | 18 - .../models/item/pioneer.crop_stage6.json | 18 - .../models/item/pioneer.crop_stage7.json | 18 - .../bbs_mod/models/item/pioneer.hop.json | 6 - .../bbs_mod/models/item/pioneer.pellet.json | 6 - .../bbs_mod/models/item/pioneer.rhizome.json | 6 - .../models/item/polaris.crop_stage0.json | 18 - .../models/item/polaris.crop_stage1.json | 18 - .../models/item/polaris.crop_stage2.json | 18 - .../models/item/polaris.crop_stage3.json | 18 - .../models/item/polaris.crop_stage4.json | 18 - .../models/item/polaris.crop_stage5.json | 18 - .../models/item/polaris.crop_stage6.json | 18 - .../models/item/polaris.crop_stage7.json | 18 - .../bbs_mod/models/item/polaris.hop.json | 6 - .../bbs_mod/models/item/polaris.pellet.json | 6 - .../bbs_mod/models/item/polaris.rhizome.json | 6 - .../models/item/premiant.crop_stage0.json | 18 - .../models/item/premiant.crop_stage1.json | 18 - .../models/item/premiant.crop_stage2.json | 18 - .../models/item/premiant.crop_stage3.json | 18 - .../models/item/premiant.crop_stage4.json | 18 - .../models/item/premiant.crop_stage5.json | 18 - .../models/item/premiant.crop_stage6.json | 18 - .../models/item/premiant.crop_stage7.json | 18 - .../bbs_mod/models/item/premiant.hop.json | 6 - .../bbs_mod/models/item/premiant.pellet.json | 6 - .../bbs_mod/models/item/premiant.rhizome.json | 6 - .../item/prideofringwood.crop_stage0.json | 18 - .../item/prideofringwood.crop_stage1.json | 18 - .../item/prideofringwood.crop_stage2.json | 18 - .../item/prideofringwood.crop_stage3.json | 18 - .../item/prideofringwood.crop_stage4.json | 18 - .../item/prideofringwood.crop_stage5.json | 18 - .../item/prideofringwood.crop_stage6.json | 18 - .../item/prideofringwood.crop_stage7.json | 18 - .../models/item/prideofringwood.hop.json | 6 - .../models/item/prideofringwood.pellet.json | 6 - .../models/item/prideofringwood.rhizome.json | 6 - .../bbs_mod/models/item/priming_sugar.json | 6 - .../models/item/progress.crop_stage0.json | 18 - .../models/item/progress.crop_stage1.json | 18 - .../models/item/progress.crop_stage2.json | 18 - .../models/item/progress.crop_stage3.json | 18 - .../models/item/progress.crop_stage4.json | 18 - .../models/item/progress.crop_stage5.json | 18 - .../models/item/progress.crop_stage6.json | 18 - .../models/item/progress.crop_stage7.json | 18 - .../bbs_mod/models/item/progress.hop.json | 6 - .../bbs_mod/models/item/progress.pellet.json | 6 - .../bbs_mod/models/item/progress.rhizome.json | 6 - .../models/item/rakau.crop_stage0.json | 18 - .../models/item/rakau.crop_stage1.json | 18 - .../models/item/rakau.crop_stage2.json | 18 - .../models/item/rakau.crop_stage3.json | 18 - .../models/item/rakau.crop_stage4.json | 18 - .../models/item/rakau.crop_stage5.json | 18 - .../models/item/rakau.crop_stage6.json | 18 - .../models/item/rakau.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/rakau.hop.json | 6 - .../bbs_mod/models/item/rakau.pellet.json | 6 - .../bbs_mod/models/item/rakau.rhizome.json | 6 - .../models/item/record.crop_stage0.json | 18 - .../models/item/record.crop_stage1.json | 18 - .../models/item/record.crop_stage2.json | 18 - .../models/item/record.crop_stage3.json | 18 - .../models/item/record.crop_stage4.json | 18 - .../models/item/record.crop_stage5.json | 18 - .../models/item/record.crop_stage6.json | 18 - .../models/item/record.crop_stage7.json | 18 - .../bbs_mod/models/item/record.hop.json | 6 - .../bbs_mod/models/item/record.pellet.json | 6 - .../bbs_mod/models/item/record.rhizome.json | 6 - .../assets/bbs_mod/models/item/rhizome.json | 6 - .../models/item/riwaka.crop_stage0.json | 18 - .../models/item/riwaka.crop_stage1.json | 18 - .../models/item/riwaka.crop_stage2.json | 18 - .../models/item/riwaka.crop_stage3.json | 18 - .../models/item/riwaka.crop_stage4.json | 18 - .../models/item/riwaka.crop_stage5.json | 18 - .../models/item/riwaka.crop_stage6.json | 18 - .../models/item/riwaka.crop_stage7.json | 18 - .../bbs_mod/models/item/riwaka.hop.json | 6 - .../bbs_mod/models/item/riwaka.pellet.json | 6 - .../bbs_mod/models/item/riwaka.rhizome.json | 6 - .../bbs_mod/models/item/saaz.crop_stage0.json | 18 - .../bbs_mod/models/item/saaz.crop_stage1.json | 18 - .../bbs_mod/models/item/saaz.crop_stage2.json | 18 - .../bbs_mod/models/item/saaz.crop_stage3.json | 18 - .../bbs_mod/models/item/saaz.crop_stage4.json | 18 - .../bbs_mod/models/item/saaz.crop_stage5.json | 18 - .../bbs_mod/models/item/saaz.crop_stage6.json | 18 - .../bbs_mod/models/item/saaz.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/saaz.hop.json | 6 - .../bbs_mod/models/item/saaz.pellet.json | 6 - .../bbs_mod/models/item/saaz.rhizome.json | 6 - .../assets/bbs_mod/models/item/sanitizer.json | 6 - .../models/item/santiam.crop_stage0.json | 18 - .../models/item/santiam.crop_stage1.json | 18 - .../models/item/santiam.crop_stage2.json | 18 - .../models/item/santiam.crop_stage3.json | 18 - .../models/item/santiam.crop_stage4.json | 18 - .../models/item/santiam.crop_stage5.json | 18 - .../models/item/santiam.crop_stage6.json | 18 - .../models/item/santiam.crop_stage7.json | 18 - .../bbs_mod/models/item/santiam.hop.json | 6 - .../bbs_mod/models/item/santiam.pellet.json | 6 - .../bbs_mod/models/item/santiam.rhizome.json | 6 - .../models/item/saphir.crop_stage0.json | 18 - .../models/item/saphir.crop_stage1.json | 18 - .../models/item/saphir.crop_stage2.json | 18 - .../models/item/saphir.crop_stage3.json | 18 - .../models/item/saphir.crop_stage4.json | 18 - .../models/item/saphir.crop_stage5.json | 18 - .../models/item/saphir.crop_stage6.json | 18 - .../models/item/saphir.crop_stage7.json | 18 - .../bbs_mod/models/item/saphir.hop.json | 6 - .../bbs_mod/models/item/saphir.pellet.json | 6 - .../bbs_mod/models/item/saphir.rhizome.json | 6 - .../models/item/satus.crop_stage0.json | 18 - .../models/item/satus.crop_stage1.json | 18 - .../models/item/satus.crop_stage2.json | 18 - .../models/item/satus.crop_stage3.json | 18 - .../models/item/satus.crop_stage4.json | 18 - .../models/item/satus.crop_stage5.json | 18 - .../models/item/satus.crop_stage6.json | 18 - .../models/item/satus.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/satus.hop.json | 6 - .../bbs_mod/models/item/satus.pellet.json | 6 - .../bbs_mod/models/item/satus.rhizome.json | 6 - .../item/savinjskigolding.crop_stage0.json | 18 - .../item/savinjskigolding.crop_stage1.json | 18 - .../item/savinjskigolding.crop_stage2.json | 18 - .../item/savinjskigolding.crop_stage3.json | 18 - .../item/savinjskigolding.crop_stage4.json | 18 - .../item/savinjskigolding.crop_stage5.json | 18 - .../item/savinjskigolding.crop_stage6.json | 18 - .../item/savinjskigolding.crop_stage7.json | 18 - .../models/item/savinjskigolding.hop.json | 6 - .../models/item/savinjskigolding.pellet.json | 6 - .../models/item/savinjskigolding.rhizome.json | 6 - .../models/item/select.crop_stage0.json | 18 - .../models/item/select.crop_stage1.json | 18 - .../models/item/select.crop_stage2.json | 18 - .../models/item/select.crop_stage3.json | 18 - .../models/item/select.crop_stage4.json | 18 - .../models/item/select.crop_stage5.json | 18 - .../models/item/select.crop_stage6.json | 18 - .../models/item/select.crop_stage7.json | 18 - .../bbs_mod/models/item/select.hop.json | 6 - .../bbs_mod/models/item/select.pellet.json | 6 - .../bbs_mod/models/item/select.rhizome.json | 6 - .../models/item/simcoe.crop_stage0.json | 18 - .../models/item/simcoe.crop_stage1.json | 18 - .../models/item/simcoe.crop_stage2.json | 18 - .../models/item/simcoe.crop_stage3.json | 18 - .../models/item/simcoe.crop_stage4.json | 18 - .../models/item/simcoe.crop_stage5.json | 18 - .../models/item/simcoe.crop_stage6.json | 18 - .../models/item/simcoe.crop_stage7.json | 18 - .../bbs_mod/models/item/simcoe.hop.json | 6 - .../bbs_mod/models/item/simcoe.pellet.json | 6 - .../bbs_mod/models/item/simcoe.rhizome.json | 6 - .../models/item/smaragd.crop_stage0.json | 18 - .../models/item/smaragd.crop_stage1.json | 18 - .../models/item/smaragd.crop_stage2.json | 18 - .../models/item/smaragd.crop_stage3.json | 18 - .../models/item/smaragd.crop_stage4.json | 18 - .../models/item/smaragd.crop_stage5.json | 18 - .../models/item/smaragd.crop_stage6.json | 18 - .../models/item/smaragd.crop_stage7.json | 18 - .../bbs_mod/models/item/smaragd.hop.json | 6 - .../bbs_mod/models/item/smaragd.pellet.json | 6 - .../bbs_mod/models/item/smaragd.rhizome.json | 6 - .../models/item/sorachiace.crop_stage0.json | 18 - .../models/item/sorachiace.crop_stage1.json | 18 - .../models/item/sorachiace.crop_stage2.json | 18 - .../models/item/sorachiace.crop_stage3.json | 18 - .../models/item/sorachiace.crop_stage4.json | 18 - .../models/item/sorachiace.crop_stage5.json | 18 - .../models/item/sorachiace.crop_stage6.json | 18 - .../models/item/sorachiace.crop_stage7.json | 18 - .../bbs_mod/models/item/sorachiace.hop.json | 6 - .../models/item/sorachiace.pellet.json | 6 - .../models/item/sorachiace.rhizome.json | 6 - .../item/southerncross.crop_stage0.json | 18 - .../item/southerncross.crop_stage1.json | 18 - .../item/southerncross.crop_stage2.json | 18 - .../item/southerncross.crop_stage3.json | 18 - .../item/southerncross.crop_stage4.json | 18 - .../item/southerncross.crop_stage5.json | 18 - .../item/southerncross.crop_stage6.json | 18 - .../item/southerncross.crop_stage7.json | 18 - .../models/item/southerncross.hop.json | 6 - .../models/item/southerncross.pellet.json | 6 - .../models/item/southerncross.rhizome.json | 6 - .../models/item/sovereign.crop_stage0.json | 18 - .../models/item/sovereign.crop_stage1.json | 18 - .../models/item/sovereign.crop_stage2.json | 18 - .../models/item/sovereign.crop_stage3.json | 18 - .../models/item/sovereign.crop_stage4.json | 18 - .../models/item/sovereign.crop_stage5.json | 18 - .../models/item/sovereign.crop_stage6.json | 18 - .../models/item/sovereign.crop_stage7.json | 18 - .../bbs_mod/models/item/sovereign.hop.json | 6 - .../bbs_mod/models/item/sovereign.pellet.json | 6 - .../models/item/sovereign.rhizome.json | 6 - .../models/item/spalt.crop_stage0.json | 18 - .../models/item/spalt.crop_stage1.json | 18 - .../models/item/spalt.crop_stage2.json | 18 - .../models/item/spalt.crop_stage3.json | 18 - .../models/item/spalt.crop_stage4.json | 18 - .../models/item/spalt.crop_stage5.json | 18 - .../models/item/spalt.crop_stage6.json | 18 - .../models/item/spalt.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/spalt.hop.json | 6 - .../bbs_mod/models/item/spalt.pellet.json | 6 - .../bbs_mod/models/item/spalt.rhizome.json | 6 - .../assets/bbs_mod/models/item/spoon.json | 6 - .../models/item/sterling.crop_stage0.json | 18 - .../models/item/sterling.crop_stage1.json | 18 - .../models/item/sterling.crop_stage2.json | 18 - .../models/item/sterling.crop_stage3.json | 18 - .../models/item/sterling.crop_stage4.json | 18 - .../models/item/sterling.crop_stage5.json | 18 - .../models/item/sterling.crop_stage6.json | 18 - .../models/item/sterling.crop_stage7.json | 18 - .../bbs_mod/models/item/sterling.hop.json | 6 - .../bbs_mod/models/item/sterling.pellet.json | 6 - .../bbs_mod/models/item/sterling.rhizome.json | 6 - .../models/item/sticklebract.crop_stage0.json | 18 - .../models/item/sticklebract.crop_stage1.json | 18 - .../models/item/sticklebract.crop_stage2.json | 18 - .../models/item/sticklebract.crop_stage3.json | 18 - .../models/item/sticklebract.crop_stage4.json | 18 - .../models/item/sticklebract.crop_stage5.json | 18 - .../models/item/sticklebract.crop_stage6.json | 18 - .../models/item/sticklebract.crop_stage7.json | 18 - .../bbs_mod/models/item/sticklebract.hop.json | 6 - .../models/item/sticklebract.pellet.json | 6 - .../models/item/sticklebract.rhizome.json | 6 - .../bbs_mod/models/item/stirringspoon.json | 6 - .../item/strisselspalt.crop_stage0.json | 18 - .../item/strisselspalt.crop_stage1.json | 18 - .../item/strisselspalt.crop_stage2.json | 18 - .../item/strisselspalt.crop_stage3.json | 18 - .../item/strisselspalt.crop_stage4.json | 18 - .../item/strisselspalt.crop_stage5.json | 18 - .../item/strisselspalt.crop_stage6.json | 18 - .../item/strisselspalt.crop_stage7.json | 18 - .../models/item/strisselspalt.hop.json | 6 - .../models/item/strisselspalt.pellet.json | 6 - .../models/item/strisselspalt.rhizome.json | 6 - .../item/styriangolding.crop_stage0.json | 18 - .../item/styriangolding.crop_stage1.json | 18 - .../item/styriangolding.crop_stage2.json | 18 - .../item/styriangolding.crop_stage3.json | 18 - .../item/styriangolding.crop_stage4.json | 18 - .../item/styriangolding.crop_stage5.json | 18 - .../item/styriangolding.crop_stage6.json | 18 - .../item/styriangolding.crop_stage7.json | 18 - .../models/item/styriangolding.hop.json | 6 - .../models/item/styriangolding.pellet.json | 6 - .../models/item/styriangolding.rhizome.json | 6 - .../models/item/summer.crop_stage0.json | 18 - .../models/item/summer.crop_stage1.json | 18 - .../models/item/summer.crop_stage2.json | 18 - .../models/item/summer.crop_stage3.json | 18 - .../models/item/summer.crop_stage4.json | 18 - .../models/item/summer.crop_stage5.json | 18 - .../models/item/summer.crop_stage6.json | 18 - .../models/item/summer.crop_stage7.json | 18 - .../bbs_mod/models/item/summer.hop.json | 6 - .../bbs_mod/models/item/summer.pellet.json | 6 - .../bbs_mod/models/item/summer.rhizome.json | 6 - .../models/item/summit.crop_stage0.json | 18 - .../models/item/summit.crop_stage1.json | 18 - .../models/item/summit.crop_stage2.json | 18 - .../models/item/summit.crop_stage3.json | 18 - .../models/item/summit.crop_stage4.json | 18 - .../models/item/summit.crop_stage5.json | 18 - .../models/item/summit.crop_stage6.json | 18 - .../models/item/summit.crop_stage7.json | 18 - .../bbs_mod/models/item/summit.hop.json | 6 - .../bbs_mod/models/item/summit.pellet.json | 6 - .../bbs_mod/models/item/summit.rhizome.json | 6 - .../models/item/superalpha.crop_stage0.json | 18 - .../models/item/superalpha.crop_stage1.json | 18 - .../models/item/superalpha.crop_stage2.json | 18 - .../models/item/superalpha.crop_stage3.json | 18 - .../models/item/superalpha.crop_stage4.json | 18 - .../models/item/superalpha.crop_stage5.json | 18 - .../models/item/superalpha.crop_stage6.json | 18 - .../models/item/superalpha.crop_stage7.json | 18 - .../bbs_mod/models/item/superalpha.hop.json | 6 - .../models/item/superalpha.pellet.json | 6 - .../models/item/superalpha.rhizome.json | 6 - .../models/item/superpride.crop_stage0.json | 18 - .../models/item/superpride.crop_stage1.json | 18 - .../models/item/superpride.crop_stage2.json | 18 - .../models/item/superpride.crop_stage3.json | 18 - .../models/item/superpride.crop_stage4.json | 18 - .../models/item/superpride.crop_stage5.json | 18 - .../models/item/superpride.crop_stage6.json | 18 - .../models/item/superpride.crop_stage7.json | 18 - .../bbs_mod/models/item/superpride.hop.json | 6 - .../models/item/superpride.pellet.json | 6 - .../models/item/superpride.rhizome.json | 6 - .../models/item/sussex.crop_stage0.json | 18 - .../models/item/sussex.crop_stage1.json | 18 - .../models/item/sussex.crop_stage2.json | 18 - .../models/item/sussex.crop_stage3.json | 18 - .../models/item/sussex.crop_stage4.json | 18 - .../models/item/sussex.crop_stage5.json | 18 - .../models/item/sussex.crop_stage6.json | 18 - .../models/item/sussex.crop_stage7.json | 18 - .../bbs_mod/models/item/sussex.hop.json | 6 - .../bbs_mod/models/item/sussex.pellet.json | 6 - .../bbs_mod/models/item/sussex.rhizome.json | 6 - .../models/item/sylva.crop_stage0.json | 18 - .../models/item/sylva.crop_stage1.json | 18 - .../models/item/sylva.crop_stage2.json | 18 - .../models/item/sylva.crop_stage3.json | 18 - .../models/item/sylva.crop_stage4.json | 18 - .../models/item/sylva.crop_stage5.json | 18 - .../models/item/sylva.crop_stage6.json | 18 - .../models/item/sylva.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/sylva.hop.json | 6 - .../bbs_mod/models/item/sylva.pellet.json | 6 - .../bbs_mod/models/item/sylva.rhizome.json | 6 - .../models/item/tahoma.crop_stage0.json | 18 - .../models/item/tahoma.crop_stage1.json | 18 - .../models/item/tahoma.crop_stage2.json | 18 - .../models/item/tahoma.crop_stage3.json | 18 - .../models/item/tahoma.crop_stage4.json | 18 - .../models/item/tahoma.crop_stage5.json | 18 - .../models/item/tahoma.crop_stage6.json | 18 - .../models/item/tahoma.crop_stage7.json | 18 - .../bbs_mod/models/item/tahoma.hop.json | 6 - .../bbs_mod/models/item/tahoma.pellet.json | 6 - .../bbs_mod/models/item/tahoma.rhizome.json | 6 - .../models/item/talisman.crop_stage0.json | 18 - .../models/item/talisman.crop_stage1.json | 18 - .../models/item/talisman.crop_stage2.json | 18 - .../models/item/talisman.crop_stage3.json | 18 - .../models/item/talisman.crop_stage4.json | 18 - .../models/item/talisman.crop_stage5.json | 18 - .../models/item/talisman.crop_stage6.json | 18 - .../models/item/talisman.crop_stage7.json | 18 - .../bbs_mod/models/item/talisman.hop.json | 6 - .../bbs_mod/models/item/talisman.pellet.json | 6 - .../bbs_mod/models/item/talisman.rhizome.json | 6 - .../models/item/target.crop_stage0.json | 18 - .../models/item/target.crop_stage1.json | 18 - .../models/item/target.crop_stage2.json | 18 - .../models/item/target.crop_stage3.json | 18 - .../models/item/target.crop_stage4.json | 18 - .../models/item/target.crop_stage5.json | 18 - .../models/item/target.crop_stage6.json | 18 - .../models/item/target.crop_stage7.json | 18 - .../bbs_mod/models/item/target.hop.json | 6 - .../bbs_mod/models/item/target.pellet.json | 6 - .../bbs_mod/models/item/target.rhizome.json | 6 - .../item/tettnangergermany.crop_stage0.json | 18 - .../item/tettnangergermany.crop_stage1.json | 18 - .../item/tettnangergermany.crop_stage2.json | 18 - .../item/tettnangergermany.crop_stage3.json | 18 - .../item/tettnangergermany.crop_stage4.json | 18 - .../item/tettnangergermany.crop_stage5.json | 18 - .../item/tettnangergermany.crop_stage6.json | 18 - .../item/tettnangergermany.crop_stage7.json | 18 - .../models/item/tettnangergermany.hop.json | 6 - .../models/item/tettnangergermany.pellet.json | 6 - .../item/tettnangergermany.rhizome.json | 6 - .../item/tettnangerusa.crop_stage0.json | 18 - .../item/tettnangerusa.crop_stage1.json | 18 - .../item/tettnangerusa.crop_stage2.json | 18 - .../item/tettnangerusa.crop_stage3.json | 18 - .../item/tettnangerusa.crop_stage4.json | 18 - .../item/tettnangerusa.crop_stage5.json | 18 - .../item/tettnangerusa.crop_stage6.json | 18 - .../item/tettnangerusa.crop_stage7.json | 18 - .../models/item/tettnangerusa.hop.json | 6 - .../models/item/tettnangerusa.pellet.json | 6 - .../models/item/tettnangerusa.rhizome.json | 6 - .../bbs_mod/models/item/thermometer.json | 6 - .../models/item/tomahawk.crop_stage0.json | 18 - .../models/item/tomahawk.crop_stage1.json | 18 - .../models/item/tomahawk.crop_stage2.json | 18 - .../models/item/tomahawk.crop_stage3.json | 18 - .../models/item/tomahawk.crop_stage4.json | 18 - .../models/item/tomahawk.crop_stage5.json | 18 - .../models/item/tomahawk.crop_stage6.json | 18 - .../models/item/tomahawk.crop_stage7.json | 18 - .../bbs_mod/models/item/tomahawk.hop.json | 6 - .../bbs_mod/models/item/tomahawk.pellet.json | 6 - .../bbs_mod/models/item/tomahawk.rhizome.json | 6 - .../models/item/tradition.crop_stage0.json | 18 - .../models/item/tradition.crop_stage1.json | 18 - .../models/item/tradition.crop_stage2.json | 18 - .../models/item/tradition.crop_stage3.json | 18 - .../models/item/tradition.crop_stage4.json | 18 - .../models/item/tradition.crop_stage5.json | 18 - .../models/item/tradition.crop_stage6.json | 18 - .../models/item/tradition.crop_stage7.json | 18 - .../bbs_mod/models/item/tradition.hop.json | 6 - .../bbs_mod/models/item/tradition.pellet.json | 6 - .../models/item/tradition.rhizome.json | 6 - .../models/item/triplepearl.crop_stage0.json | 18 - .../models/item/triplepearl.crop_stage1.json | 18 - .../models/item/triplepearl.crop_stage2.json | 18 - .../models/item/triplepearl.crop_stage3.json | 18 - .../models/item/triplepearl.crop_stage4.json | 18 - .../models/item/triplepearl.crop_stage5.json | 18 - .../models/item/triplepearl.crop_stage6.json | 18 - .../models/item/triplepearl.crop_stage7.json | 18 - .../bbs_mod/models/item/triplepearl.hop.json | 6 - .../models/item/triplepearl.pellet.json | 6 - .../models/item/triplepearl.rhizome.json | 6 - .../models/item/triskel.crop_stage0.json | 18 - .../models/item/triskel.crop_stage1.json | 18 - .../models/item/triskel.crop_stage2.json | 18 - .../models/item/triskel.crop_stage3.json | 18 - .../models/item/triskel.crop_stage4.json | 18 - .../models/item/triskel.crop_stage5.json | 18 - .../models/item/triskel.crop_stage6.json | 18 - .../models/item/triskel.crop_stage7.json | 18 - .../bbs_mod/models/item/triskel.hop.json | 6 - .../bbs_mod/models/item/triskel.pellet.json | 6 - .../bbs_mod/models/item/triskel.rhizome.json | 6 - .../models/item/ultra.crop_stage0.json | 18 - .../models/item/ultra.crop_stage1.json | 18 - .../models/item/ultra.crop_stage2.json | 18 - .../models/item/ultra.crop_stage3.json | 18 - .../models/item/ultra.crop_stage4.json | 18 - .../models/item/ultra.crop_stage5.json | 18 - .../models/item/ultra.crop_stage6.json | 18 - .../models/item/ultra.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/ultra.hop.json | 6 - .../bbs_mod/models/item/ultra.pellet.json | 6 - .../bbs_mod/models/item/ultra.rhizome.json | 6 - .../models/item/vanguard.crop_stage0.json | 18 - .../models/item/vanguard.crop_stage1.json | 18 - .../models/item/vanguard.crop_stage2.json | 18 - .../models/item/vanguard.crop_stage3.json | 18 - .../models/item/vanguard.crop_stage4.json | 18 - .../models/item/vanguard.crop_stage5.json | 18 - .../models/item/vanguard.crop_stage6.json | 18 - .../models/item/vanguard.crop_stage7.json | 18 - .../bbs_mod/models/item/vanguard.hop.json | 6 - .../bbs_mod/models/item/vanguard.pellet.json | 6 - .../bbs_mod/models/item/vanguard.rhizome.json | 6 - .../models/item/waiiti.crop_stage0.json | 18 - .../models/item/waiiti.crop_stage1.json | 18 - .../models/item/waiiti.crop_stage2.json | 18 - .../models/item/waiiti.crop_stage3.json | 18 - .../models/item/waiiti.crop_stage4.json | 18 - .../models/item/waiiti.crop_stage5.json | 18 - .../models/item/waiiti.crop_stage6.json | 18 - .../models/item/waiiti.crop_stage7.json | 18 - .../bbs_mod/models/item/waiiti.hop.json | 6 - .../bbs_mod/models/item/waiiti.pellet.json | 6 - .../bbs_mod/models/item/waiiti.rhizome.json | 6 - .../models/item/waimea.crop_stage0.json | 18 - .../models/item/waimea.crop_stage1.json | 18 - .../models/item/waimea.crop_stage2.json | 18 - .../models/item/waimea.crop_stage3.json | 18 - .../models/item/waimea.crop_stage4.json | 18 - .../models/item/waimea.crop_stage5.json | 18 - .../models/item/waimea.crop_stage6.json | 18 - .../models/item/waimea.crop_stage7.json | 18 - .../bbs_mod/models/item/waimea.hop.json | 6 - .../bbs_mod/models/item/waimea.pellet.json | 6 - .../bbs_mod/models/item/waimea.rhizome.json | 6 - .../models/item/wakatu.crop_stage0.json | 18 - .../models/item/wakatu.crop_stage1.json | 18 - .../models/item/wakatu.crop_stage2.json | 18 - .../models/item/wakatu.crop_stage3.json | 18 - .../models/item/wakatu.crop_stage4.json | 18 - .../models/item/wakatu.crop_stage5.json | 18 - .../models/item/wakatu.crop_stage6.json | 18 - .../models/item/wakatu.crop_stage7.json | 18 - .../bbs_mod/models/item/wakatu.hop.json | 6 - .../bbs_mod/models/item/wakatu.pellet.json | 6 - .../bbs_mod/models/item/wakatu.rhizome.json | 6 - .../models/item/warrior.crop_stage0.json | 18 - .../models/item/warrior.crop_stage1.json | 18 - .../models/item/warrior.crop_stage2.json | 18 - .../models/item/warrior.crop_stage3.json | 18 - .../models/item/warrior.crop_stage4.json | 18 - .../models/item/warrior.crop_stage5.json | 18 - .../models/item/warrior.crop_stage6.json | 18 - .../models/item/warrior.crop_stage7.json | 18 - .../bbs_mod/models/item/warrior.hop.json | 6 - .../bbs_mod/models/item/warrior.pellet.json | 6 - .../bbs_mod/models/item/warrior.rhizome.json | 6 - .../bbs_mod/models/item/watergallon.json | 6 - .../assets/bbs_mod/models/item/waterkeg.json | 6 - .../item/whitbreadgolding.crop_stage0.json | 18 - .../item/whitbreadgolding.crop_stage1.json | 18 - .../item/whitbreadgolding.crop_stage2.json | 18 - .../item/whitbreadgolding.crop_stage3.json | 18 - .../item/whitbreadgolding.crop_stage4.json | 18 - .../item/whitbreadgolding.crop_stage5.json | 18 - .../item/whitbreadgolding.crop_stage6.json | 18 - .../item/whitbreadgolding.crop_stage7.json | 18 - .../models/item/whitbreadgolding.hop.json | 6 - .../models/item/whitbreadgolding.pellet.json | 6 - .../models/item/whitbreadgolding.rhizome.json | 6 - .../models/item/willamette.crop_stage0.json | 18 - .../models/item/willamette.crop_stage1.json | 18 - .../models/item/willamette.crop_stage2.json | 18 - .../models/item/willamette.crop_stage3.json | 18 - .../models/item/willamette.crop_stage4.json | 18 - .../models/item/willamette.crop_stage5.json | 18 - .../models/item/willamette.crop_stage6.json | 18 - .../models/item/willamette.crop_stage7.json | 18 - .../bbs_mod/models/item/willamette.hop.json | 6 - .../models/item/willamette.pellet.json | 6 - .../models/item/willamette.rhizome.json | 6 - .../bbs_mod/models/item/wortbucket.json | 6 - .../assets/bbs_mod/models/item/wortkeg.json | 6 - .../item/yakimacluster.crop_stage0.json | 18 - .../item/yakimacluster.crop_stage1.json | 18 - .../item/yakimacluster.crop_stage2.json | 18 - .../item/yakimacluster.crop_stage3.json | 18 - .../item/yakimacluster.crop_stage4.json | 18 - .../item/yakimacluster.crop_stage5.json | 18 - .../item/yakimacluster.crop_stage6.json | 18 - .../item/yakimacluster.crop_stage7.json | 18 - .../models/item/yakimacluster.hop.json | 6 - .../models/item/yakimacluster.pellet.json | 6 - .../models/item/yakimacluster.rhizome.json | 6 - .../item/yamhillgolding.crop_stage0.json | 18 - .../item/yamhillgolding.crop_stage1.json | 18 - .../item/yamhillgolding.crop_stage2.json | 18 - .../item/yamhillgolding.crop_stage3.json | 18 - .../item/yamhillgolding.crop_stage4.json | 18 - .../item/yamhillgolding.crop_stage5.json | 18 - .../item/yamhillgolding.crop_stage6.json | 18 - .../item/yamhillgolding.crop_stage7.json | 18 - .../models/item/yamhillgolding.hop.json | 6 - .../models/item/yamhillgolding.pellet.json | 6 - .../models/item/yamhillgolding.rhizome.json | 6 - .../assets/bbs_mod/models/item/yeast.json | 6 - .../models/item/yeoman.crop_stage0.json | 18 - .../models/item/yeoman.crop_stage1.json | 18 - .../models/item/yeoman.crop_stage2.json | 18 - .../models/item/yeoman.crop_stage3.json | 18 - .../models/item/yeoman.crop_stage4.json | 18 - .../models/item/yeoman.crop_stage5.json | 18 - .../models/item/yeoman.crop_stage6.json | 18 - .../models/item/yeoman.crop_stage7.json | 18 - .../bbs_mod/models/item/yeoman.hop.json | 6 - .../bbs_mod/models/item/yeoman.pellet.json | 6 - .../bbs_mod/models/item/yeoman.rhizome.json | 6 - .../models/item/zenith.crop_stage0.json | 18 - .../models/item/zenith.crop_stage1.json | 18 - .../models/item/zenith.crop_stage2.json | 18 - .../models/item/zenith.crop_stage3.json | 18 - .../models/item/zenith.crop_stage4.json | 18 - .../models/item/zenith.crop_stage5.json | 18 - .../models/item/zenith.crop_stage6.json | 18 - .../models/item/zenith.crop_stage7.json | 18 - .../bbs_mod/models/item/zenith.hop.json | 6 - .../bbs_mod/models/item/zenith.pellet.json | 6 - .../bbs_mod/models/item/zenith.rhizome.json | 6 - .../bbs_mod/models/item/zeus.crop_stage0.json | 18 - .../bbs_mod/models/item/zeus.crop_stage1.json | 18 - .../bbs_mod/models/item/zeus.crop_stage2.json | 18 - .../bbs_mod/models/item/zeus.crop_stage3.json | 18 - .../bbs_mod/models/item/zeus.crop_stage4.json | 18 - .../bbs_mod/models/item/zeus.crop_stage5.json | 18 - .../bbs_mod/models/item/zeus.crop_stage6.json | 18 - .../bbs_mod/models/item/zeus.crop_stage7.json | 18 - .../assets/bbs_mod/models/item/zeus.hop.json | 6 - .../bbs_mod/models/item/zeus.pellet.json | 6 - .../bbs_mod/models/item/zeus.rhizome.json | 6 - .../models/item/zythos.crop_stage0.json | 18 - .../models/item/zythos.crop_stage1.json | 18 - .../models/item/zythos.crop_stage2.json | 18 - .../models/item/zythos.crop_stage3.json | 18 - .../models/item/zythos.crop_stage4.json | 18 - .../models/item/zythos.crop_stage5.json | 18 - .../models/item/zythos.crop_stage6.json | 18 - .../models/item/zythos.crop_stage7.json | 18 - .../bbs_mod/models/item/zythos.hop.json | 6 - .../bbs_mod/models/item/zythos.pellet.json | 6 - .../bbs_mod/models/item/zythos.rhizome.json | 6 - .../assets/bbs_mod/recipes/keg.json | 20 - .../assets/bbs_mod/recipes/microbrewer.json | 22 - .../assets/bbs_mod/recipes/micropack.json | 19 - .../assets/bbs_mod/recipes/sanitizer.json | 20 - .../assets/bbs_mod/recipes/watergallon.json | 15 - .../assets/bbs_mod/recipes/waterkeg.json | 18 - .../assets/bbs_mod/recipes/wortkeg.json | 18 - .../assets/bbs_mod/recipes/yeast.json | 20 - .../bbs_mod/textures/block/hops_stage0.png | Bin 3609 -> 0 bytes .../bbs_mod/textures/block/hops_stage1.png | Bin 3774 -> 0 bytes .../bbs_mod/textures/block/hops_stage2.png | Bin 4803 -> 0 bytes .../bbs_mod/textures/block/hops_stage3.png | Bin 11390 -> 0 bytes .../bbs_mod/textures/block/hops_stage4.png | Bin 12061 -> 0 bytes .../bbs_mod/textures/block/hops_stage5.png | Bin 13142 -> 0 bytes .../bbs_mod/textures/block/hops_stage6.png | Bin 13654 -> 0 bytes .../bbs_mod/textures/block/hops_stage7.png | Bin 13897 -> 0 bytes .../bbs_mod/textures/block/microbrewer.png | Bin 1047 -> 0 bytes .../bbs_mod/textures/block/modeltexture.png | Bin 537 -> 0 bytes .../bbs_mod/textures/gui/microbrewer_gui.png | Bin 2196 -> 0 bytes .../bbs_mod/textures/gui/microbrewergui.png | Bin 1997 -> 0 bytes .../bbs_mod/textures/gui/micropackgui.png | Bin 1237 -> 0 bytes .../bbs_mod/textures/gui/micropackgui_old.png | Bin 1161 -> 0 bytes .../bbs_mod/textures/item/beerbucket.png | Bin 1586 -> 0 bytes .../assets/bbs_mod/textures/item/beerkeg.png | Bin 741 -> 0 bytes .../bbs_mod/textures/item/bucket_fluid.png | Bin 225 -> 0 bytes .../assets/bbs_mod/textures/item/hopsleaf.png | Bin 5339 -> 0 bytes .../assets/bbs_mod/textures/item/keg.png | Bin 1386 -> 0 bytes .../assets/bbs_mod/textures/item/lme.png | Bin 4394 -> 0 bytes .../assets/bbs_mod/textures/item/pellet.png | Bin 3588 -> 0 bytes .../bbs_mod/textures/item/priming_sugar.png | Bin 3052 -> 0 bytes .../assets/bbs_mod/textures/item/rhizome.png | Bin 7346 -> 0 bytes .../bbs_mod/textures/item/sanitizer.png | Bin 6707 -> 0 bytes .../assets/bbs_mod/textures/item/spoon.png | Bin 5016 -> 0 bytes .../bbs_mod/textures/item/stirringspoon.png | Bin 5016 -> 0 bytes .../bbs_mod/textures/item/thermometer.png | Bin 3394 -> 0 bytes .../bbs_mod/textures/item/watergallon.png | Bin 5855 -> 0 bytes .../assets/bbs_mod/textures/item/waterkeg.png | Bin 768 -> 0 bytes .../bbs_mod/textures/item/wortbucket.png | Bin 1586 -> 0 bytes .../assets/bbs_mod/textures/item/wortkeg.png | Bin 907 -> 0 bytes .../assets/bbs_mod/textures/item/yeast.png | Bin 3869 -> 0 bytes .../com/rafacost3d/bbs_mod/BBSMod.class | Bin 2338 -> 0 bytes .../creativetabs/CreativeTabsBBS$1.class | Bin 1022 -> 0 bytes .../creativetabs/CreativeTabsBBS$2.class | Bin 1024 -> 0 bytes .../creativetabs/CreativeTabsBBS$3.class | Bin 1022 -> 0 bytes .../creativetabs/CreativeTabsBBS$4.class | Bin 1098 -> 0 bytes .../creativetabs/CreativeTabsBBS$5.class | Bin 960 -> 0 bytes .../creativetabs/CreativeTabsBBS.class | Bin 1233 -> 0 bytes .../rafacost3d/bbs_mod/init/BlocksInit.class | Bin 1419 -> 0 bytes .../rafacost3d/bbs_mod/init/ItemInit.class | Bin 1771 -> 0 bytes .../bbs_mod/objects/blocks/ModelBlock.class | Bin 1798 -> 0 bytes .../blocks/containers/MicroPackBlock.class | Bin 8836 -> 0 bytes .../containers/MicroPackContainer.class | Bin 3425 -> 0 bytes .../blocks/containers/MicroPackGui.class | Bin 1822 -> 0 bytes .../containers/MicroPackTileEntity$1.class | Bin 890 -> 0 bytes .../containers/MicroPackTileEntity.class | Bin 3427 -> 0 bytes .../blocks/machines/MicroBrewerBlock.class | Bin 11369 -> 0 bytes .../machines/MicroBrewerContainer.class | Bin 5080 -> 0 bytes .../blocks/machines/MicroBrewerGui.class | Bin 3266 -> 0 bytes .../blocks/machines/MicroBrewerRecipes.class | Bin 5136 -> 0 bytes .../machines/TileEntityMicroBrewer.class | Bin 11480 -> 0 bytes .../machines/slots/SlotMicroBrewerFuel.class | Bin 956 -> 0 bytes .../slots/SlotMicroBrewerOutput.class | Bin 1620 -> 0 bytes .../bbs_mod/objects/crops/BlockBBSCrop.class | Bin 12939 -> 0 bytes .../bbs_mod/objects/crops/BlockRegistry.class | Bin 2866 -> 0 bytes .../bbs_mod/objects/crops/CropRegistry.class | Bin 11862 -> 0 bytes .../bbs_mod/objects/crops/ItemModelList.class | Bin 1641 -> 0 bytes .../bbs_mod/objects/crops/ItemModels.class | Bin 4651 -> 0 bytes .../bbs_mod/objects/crops/ItemRegistry.class | Bin 3189 -> 0 bytes .../objects/crops/ItemRenderRegister.class | Bin 2073 -> 0 bytes .../bbs_mod/objects/items/ItemBase.class | Bin 1579 -> 0 bytes .../bbs_mod/proxy/ClientProxy.class | Bin 2536 -> 0 bytes .../bbs_mod/proxy/CommonProxy.class | Bin 4767 -> 0 bytes .../rafacost3d/bbs_mod/proxy/GuiProxy.class | Bin 2554 -> 0 bytes .../rafacost3d/bbs_mod/util/IHasModel.class | Bin 158 -> 0 bytes .../rafacost3d/bbs_mod/util/Reference.class | Bin 697 -> 0 bytes .../util/handlers/RegistryHandler.class | Bin 2228 -> 0 bytes classes/production/bbs_mod_main/mcmod.info | 16 - classes/production/bbs_mod_main/pack.mcmeta | 7 - 1777 files changed, 25633 deletions(-) delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage0.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage1.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage2.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage3.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage4.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage5.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage6.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage7.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/microbrewer.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/block/modeltexture.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewer_gui.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewergui.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui_old.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerbucket.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerkeg.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/bucket_fluid.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/hopsleaf.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/keg.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/lme.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/pellet.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/priming_sugar.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/rhizome.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/sanitizer.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/spoon.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/stirringspoon.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/thermometer.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/watergallon.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/waterkeg.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortbucket.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortkeg.png delete mode 100644 classes/production/bbs_mod_main/assets/bbs_mod/textures/item/yeast.png delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/BBSMod.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$1.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$2.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$3.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$4.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$5.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/init/BlocksInit.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/init/ItemInit.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/ModelBlock.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity$1.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModels.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/items/ItemBase.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/ClientProxy.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/CommonProxy.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/GuiProxy.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/IHasModel.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/Reference.class delete mode 100644 classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.class delete mode 100644 classes/production/bbs_mod_main/mcmod.info delete mode 100644 classes/production/bbs_mod_main/pack.mcmeta diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json deleted file mode 100644 index f61ba24..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/beer.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "forge_marker": 1, - "variants": { - "fluid": { - "model": "forge:fluid", - "custom": { "fluid": "beer" } - }, - "inventory": { - "model": "forge:forgebucket", - "textures": { - "base": "forge:items/bucket_base", - "cover": "forge:items/bucket_cover" - }, - "transform": "forge:default-item", - "custom": { - "fluid": "beer", - "flipGas": true - } - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json deleted file mode 100644 index 8ede004..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/fermentorbucket.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "custom": { "flip-v": true }, - "model": "bbs_mod:boilingpot.obj" - }, - "variants": { - "normal": [{}], - "inventory": [{ - "transform": { - "gui": { - "rotation": [ - { - "x": 20 - }, - { - "y": 0 - }, - { - "z": 0 - } - ], - "translation": [ - 0, - 0.5, - 0 - ], - "scale": 2.0 - } - } - - } - ], - "facing": { - "north": {"y": 90}, - "south": {"y": 270}, - "west": {"y": 0}, - "east": {"y": 180}, - "up": {"x": 0}, - "down": {"x": 0} - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopadmiral.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopahtanum.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopamarillo.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaquila.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoparamis.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopaurora.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbanner.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbcgolding.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbittergold.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopblanc.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbobek.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbramlingcross.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbravo.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldgermany.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbrewersgoldusa.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopbullion.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcascade.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopceleia.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcentennial.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchallenger.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchelan.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopchinook.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcitra.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcluster.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcolumbus.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcomet.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopcrystal.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopdrrudi.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopeastkentgolding.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopekuanot.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopella.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoperoica.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfalconersflight.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfirstgold.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopfuggleuk.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalaxy.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgalena.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopglacier.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgold.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldinguk.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgoldingusa.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopgreenbullet.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertaumittelfruh.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophallertauusa.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc431experimental.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc438experimental.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc472experimental.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophbc682experimental.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophelga.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherald.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopherkules.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophersbrucker.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophorizon.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophuellmelon.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hophullerbitterer.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopkohatu.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopliberty.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoploral.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoplubelska.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmagnum.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmandarinabavaria.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmerkur.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmillenium.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmosaic.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmotueka.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmounthood.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopmountrainier.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnelsonsauvin.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnewport.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthdown.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnorthernbrewer.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopnugget.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopolympic.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopomega.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopopal.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoporion.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacifica.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificgem.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppacificjade.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppalisade.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperlegermany.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopperleusa.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopphoenix.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppilgrim.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppioneer.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppolaris.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoppremiant.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprideofringwood.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopprogress.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprakau.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoprecord.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopriwaka.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaaz.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsantiam.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsaphir.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsatus.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsavinjskigolding.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopselect.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsimcoe.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsmaragd.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsorachiace.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsoutherncross.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsovereign.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopspalt.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsterling.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsticklebract.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstrisselspalt.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopstyriangolding.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummer.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsummit.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperalpha.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsuperpride.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsussex.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopsylva.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptahoma.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptalisman.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptarget.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangergermany.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptettnangerusa.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptomahawk.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptradition.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriplepearl.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hoptriskel.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopultra.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopvanguard.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaiiti.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwaimea.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwakatu.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwarrior.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwhitbreadgolding.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopwillamette.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyakimacluster.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyamhillgolding.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopyeoman.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzenith.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzeus.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json deleted file mode 100644 index 0977ec7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/hopzythos.crop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "age=0": { "model": "bbs_mod:hops_stage0" }, - "age=1": { "model": "bbs_mod:hops_stage1" }, - "age=2": { "model": "bbs_mod:hops_stage2" }, - "age=3": { "model": "bbs_mod:hops_stage3" }, - "age=4": { "model": "bbs_mod:hops_stage4" }, - "age=5": { "model": "bbs_mod:hops_stage5" }, - "age=6": { "model": "bbs_mod:hops_stage6" }, - "age=7": { "model": "bbs_mod:hops_stage7" } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json deleted file mode 100644 index aff8f8b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/microbrewer.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "forge_marker": 1, - "defaults": - { - "textures": - { - "all": "bbs_mod:block/microbrewer" - }, - "custom": { "flip-v": true }, - "model": "bbs_mod:microbrewer_empty", - "uvlock": false - }, - "variants": - { - "facing=east,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 270}, - "facing=east,working=true": {"model": "bbs_mod:microbrewer", "y": 270}, - "facing=north,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 180}, - "facing=north,working=true": {"model": "bbs_mod:microbrewer", "y": 180}, - "facing=south,working=false": {"model": "bbs_mod:microbrewer_empty"}, - "facing=south,working=true": {"model": "bbs_mod:microbrewer"}, - "facing=west,working=false": {"model": "bbs_mod:microbrewer_empty", "y": 90}, - "facing=west,working=true": {"model": "bbs_mod:microbrewer", "y": 90}, - "inventory": {"model": "bbs_mod:microbrewer"}, - "normal": {"model": "bbs_mod:microbrewer_empty"} - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json deleted file mode 100644 index fbcb328..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/micropack.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "model": "bbs_mod:micropack" - }, - "variants": { - "normal": [{}], - "inventory": [{}] - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json deleted file mode 100644 index 5da8147..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/modelblock.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "model": "bbs_mod:modelblock" - }, - "variants": { - "normal": [{}], - "inventory": [{}] - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json deleted file mode 100644 index ef2679e..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/pelleter.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "custom": { "flip-v": true }, - "model": "bbs_mod:pelleter.obj" - }, - "variants": { - "normal": [{}], - "inventory": [{ - "transform": { - "gui": { - "rotation": [ - { - "x": 20 - }, - { - "y": 90 - }, - { - "z": 0 - } - ], - "translation": [ - 0, - 0, - 0 - ], - "scale": 1.0 - } - } - - } - ], - "facing": { - "north": {"y": 90}, - "south": {"y": 270}, - "west": {"y": 0}, - "east": {"y": 180}, - "up": {"x": 0}, - "down": {"x": 0} - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json b/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json deleted file mode 100644 index a4bfe5b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/blockstates/wort.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "forge_marker": 1, - "variants": { - "fluid": { - "model": "forge:fluid", - "custom": { "fluid": "wort" } - }, - "inventory": { - "model": "forge:forgebucket", - "textures": { - "base": "forge:items/bucket_base", - "fluid": "bbs_mod:item/bucket_fluid", - "cover": "forge:items/bucket_cover" - }, - "transform": "forge:default-item", - "custom": { - "fluid": "wort", - "flipGas": true - } - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang b/classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang deleted file mode 100644 index a91e680..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/lang/en_us.lang +++ /dev/null @@ -1,595 +0,0 @@ -language.name=English -language.region=United States -language.code=en_us - -itemGroup.bbs_mod.hops=Beer Brewing Simulator Hops -itemGroup.bbs_mod.pellets=Beer Brewing Simulator Pellets -itemGroup.bbs_mod.seeds=Beer Brewing Simulator Rhizomes -itemGroup.bbs_mod.machines=Beer Brewing Simulator Machines -itemGroup.bbs_mod.item=Beer Brewing Simulator Items -itemGroup.bbs_mod.fluid=Beer Brewing Simulator Fluids - -item.bbs_mod.spoon.name=Spoon -item.bbs_mod.sanitizer.name=Sanitizer -item.bbs_mod.watergallon.name=Water Gallon -item.bbs_mod.lme_pilsen.name=Liquid Malt Extract - Pilsen 3.3lb -item.bbs_mod.lme_extralight.name=Liquid Malt Extract - Extra Light 3.3lb -item.bbs_mod.lme_wheat.name=Liquid Malt Extract - Wheat 3.3lb -item.bbs_mod.lme_light.name=Liquid Malt Extract - Light 3.3lb -item.bbs_mod.lme_munich.name=Liquid Malt Extract - Munich 3.3lb -item.bbs_mod.lme_amber.name=Liquid Malt Extract - Amber 3.3lb -item.bbs_mod.lme_dark.name=Liquid Malt Extract - Dark 3.3lb -item.bbs_mod.priming_sugar.name=Priming Sugar -item.bbs_mod.yeast.name=Yeast -item.bbs_mod.thermometer.name=Thermometer -item.bbs_mod.waterkeg.name=Water Keg -item.bbs_mod.mashkeg.name=Mash Keg -item.bbs_mod.hotwortkeg.name=Hot Wort Keg -item.bbs_mod.wortkeg.name=Wort Keg -item.bbs_mod.beerkeg.name=Beer Keg -item.bbs_mod.keg.name=Empty Keg - -tile.bbs_mod.microbrewer.name=Micro Brewer -tile.bbs_mod.micropack.name=Micro Pack -tile.bbs_mod.modelblock.name=Basic Block - -tile.bbs_mod.beer.name=Beer -tile.bbs_mod.wort.name=Wort -fluid.beer=Beer -fluid.wort=Wort -item.bbs_mod.worttype.nullWort.name=Wort Bucket -tooltip.bbs_mod.worttype.nullWort.desc=No Hops -item.bbs_mod.beertype.nullBeer.name=Beer Bucket -tooltip.bbs_mod.beertype.nullBeer.desc=Unclassified Beer - -item.admiral.hop.name=Admiral -item.ahtanum.hop.name=Ahtanum -item.amarillo.hop.name=Amarillo® -item.aquila.hop.name=Aquila -item.aramis.hop.name=Aramis -item.aurora.hop.name=Aurora -item.banner.hop.name=Banner -item.bcgolding.hop.name=BC Golding -item.bittergold.hop.name=Bitter Gold -item.blanc.hop.name=Blanc -item.bobek.hop.name=Bobek -item.bramlingcross.hop.name=Bramling Cross -item.bravo.hop.name=Bravo -item.brewersgoldgermany.hop.name=Brewer's Gold Germany -item.brewersgoldusa.hop.name=Brewer's Gold USA -item.bullion.hop.name=Bullion -item.cascade.hop.name=Cascade -item.celeia.hop.name=Celeia -item.centennial.hop.name=Centennial -item.challenger.hop.name=Challenger -item.chelan.hop.name=Chelan -item.chinook.hop.name=Chinook -item.citra.hop.name=Citra -item.cluster.hop.name=Cluster -item.columbus.hop.name=Columbus -item.comet.hop.name=Comet -item.crystal.hop.name=Crystal -item.drrudi.hop.name=Dr Rudi -item.eastkentgolding.hop.name=East Kent Golding -item.ekuanot.hop.name=Ekuanot -item.ella.hop.name=Ella -item.eroica.hop.name=Eroica -item.falconersflight.hop.name=Falconers Flight® -item.firstgold.hop.name=First Gold -item.fuggleuk.hop.name=Fuggle UK -item.galaxy.hop.name=Galaxy -item.galena.hop.name=Galena -item.glacier.hop.name=Glacier -item.gold.hop.name=Gold -item.goldinguk.hop.name=Golding UK -item.goldingusa.hop.name=Golding USA -item.greenbullet.hop.name=Green Bullet -item.hallertaumittelfruh.hop.name=Hallertau Mittelfruh -item.hallertauusa.hop.name=Hallertau USA -item.hbc431experimental.hop.name=HBC 431 Experimental -item.hbc438experimental.hop.name=HBC 438 Experimental -item.hbc472experimental.hop.name=HBC 472 Experimental -item.hbc682experimental.hop.name=HBC 682 Experimental -item.helga.hop.name=Helga -item.herald.hop.name=Herald -item.herkules.hop.name=Herkules -item.hersbrucker.hop.name=Hersbrucker -item.horizon.hop.name=Horizon -item.huellmelon.hop.name=Huell Melon -item.hullerbitterer.hop.name=Huller Bitterer -item.kohatu.hop.name=Kohatu -item.liberty.hop.name=Liberty -item.loral.hop.name=Loral® -item.lubelska.hop.name=Lubelska -item.magnum.hop.name=Magnum -item.mandarinabavaria.hop.name=Mandarina Bavaria -item.merkur.hop.name=Merkur -item.millenium.hop.name=Millenium -item.mosaic.hop.name=Mosaic® -item.motueka.hop.name=Motueka -item.mounthood.hop.name=Mount Hood -item.mountrainier.hop.name=Mount Rainier -item.nelsonsauvin.hop.name=Nelson Sauvin -item.newport.hop.name=Newport -item.northdown.hop.name=Northdown -item.northernbrewer.hop.name=Northern Brewer -item.nugget.hop.name=Nugget -item.olympic.hop.name=Olympic -item.omega.hop.name=Omega -item.opal.hop.name=Opal -item.orion.hop.name=Orion -item.pacifica.hop.name=Pacific Gem -item.pacificgem.hop.name=Pacific Jade -item.pacificjade.hop.name=Pacifica -item.palisade.hop.name=Palisade® -item.perlegermany.hop.name=Perle Germany -item.perleusa.hop.name=Perle USA -item.phoenix.hop.name=Phoenix -item.pilgrim.hop.name=Pilgrim -item.pioneer.hop.name=Pioneer -item.polaris.hop.name=Polaris -item.premiant.hop.name=Premiant -item.prideofringwood.hop.name=Pride of RingWood -item.progress.hop.name=Progress -item.rakau.hop.name=Rakau -item.record.hop.name=Record -item.riwaka.hop.name=Riwaka -item.saaz.hop.name=Saaz -item.santiam.hop.name=Santiam -item.saphir.hop.name=Saphir -item.satus.hop.name=Satus -item.savinjskigolding.hop.name=Savinjski Golding -item.select.hop.name=Select -item.simcoe.hop.name=Simcoe® -item.smaragd.hop.name=Smaragd -item.sorachiace.hop.name=Sorachi Ace -item.southerncross.hop.name=Southern Cross -item.sovereign.hop.name=Sovereign -item.spalt.hop.name=Spalt -item.sterling.hop.name=Sterling -item.sticklebract.hop.name=Sticklebract -item.strisselspalt.hop.name=Strisselspalt -item.styriangolding.hop.name=Styrian Golding -item.summer.hop.name=Summer -item.summit.hop.name=Summit -item.superalpha.hop.name=Super Alpha -item.superpride.hop.name=Super Pride -item.sussex.hop.name=Sussex -item.sylva.hop.name=Sylva -item.tahoma.hop.name=Tahoma -item.talisman.hop.name=Talisman -item.target.hop.name=Target -item.tettnangergermany.hop.name=Tettnanger Germany -item.tettnangerusa.hop.name=Tettnanger USA -item.tomahawk.hop.name=Tomahawk® -item.tradition.hop.name=Tradition -item.triplepearl.hop.name=Triplepearl -item.triskel.hop.name=Triskel -item.ultra.hop.name=Ultra -item.vanguard.hop.name=Vanguard -item.waiiti.hop.name=Wai-iti -item.waimea.hop.name=Waimea -item.wakatu.hop.name=Wakatu -item.warrior.hop.name=Warrior® -item.whitbreadgolding.hop.name=Whitbread Golding -item.willamette.hop.name=Willamette -item.yakimacluster.hop.name=Yakima Cluster -item.yamhillgolding.hop.name=Yamhill Golding -item.yeoman.hop.name=Yeoman -item.zenith.hop.name=Zenith -item.zeus.hop.name=Zeus -item.zythos.hop.name=Zythos® - -item.admiral.rhizome.name=Admiral Rhizome -item.ahtanum.rhizome.name=Ahtanum Rhizome -item.amarillo.rhizome.name=Amarillo® Rhizome -item.aquila.rhizome.name=Aquila Rhizome -item.aramis.rhizome.name=Aramis Rhizome -item.aurora.rhizome.name=Aurora Rhizome -item.banner.rhizome.name=Banner Rhizome -item.bcgolding.rhizome.name=BC Golding Rhizome -item.bittergold.rhizome.name=Bitter Gold Rhizome -item.blanc.rhizome.name=Blanc Rhizome -item.bobek.rhizome.name=Bobek Rhizome -item.bramlingcross.rhizome.name=Bramling Cross Rhizome -item.bravo.rhizome.name=Bravo Rhizome -item.brewersgoldgermany.rhizome.name=Brewer's Gold Germany Rhizome -item.brewersgoldusa.rhizome.name=Brewer's Gold USA Rhizome -item.bullion.rhizome.name=Bullion Rhizome -item.cascade.rhizome.name=Cascade Rhizome -item.celeia.rhizome.name=Celeia Rhizome -item.centennial.rhizome.name=Centennial Rhizome -item.challenger.rhizome.name=Challenger Rhizome -item.chelan.rhizome.name=Chelan Rhizome -item.chinook.rhizome.name=Chinook Rhizome -item.citra.rhizome.name=Citra Rhizome -item.cluster.rhizome.name=Cluster Rhizome -item.columbus.rhizome.name=Columbus Rhizome -item.comet.rhizome.name=Comet Rhizome -item.crystal.rhizome.name=Crystal Rhizome -item.drrudi.rhizome.name=Dr Rudi Rhizome -item.eastkentgolding.rhizome.name=East Kent Golding Rhizome -item.ekuanot.rhizome.name=Ekuanot Rhizome -item.ella.rhizome.name=Ella Rhizome -item.eroica.rhizome.name=Eroica Rhizome -item.falconersflight.rhizome.name=Falconers Flight® Rhizome -item.firstgold.rhizome.name=First Gold Rhizome -item.fuggleuk.rhizome.name=Fuggle UK Rhizome -item.galaxy.rhizome.name=Galaxy Rhizome -item.galena.rhizome.name=Galena Rhizome -item.glacier.rhizome.name=Glacier Rhizome -item.gold.rhizome.name=Gold Rhizome -item.goldinguk.rhizome.name=Golding UK Rhizome -item.goldingusa.rhizome.name=Golding USA Rhizome -item.greenbullet.rhizome.name=Green Bullet Rhizome -item.hallertaumittelfruh.rhizome.name=Hallertau Mittelfruh Rhizome -item.hallertauusa.rhizome.name=Hallertau USA Rhizome -item.hbc431experimental.rhizome.name=HBC 431 Experimental Rhizome -item.hbc438experimental.rhizome.name=HBC 438 Experimental Rhizome -item.hbc472experimental.rhizome.name=HBC 472 Experimental Rhizome -item.hbc682experimental.rhizome.name=HBC 682 Experimental Rhizome -item.helga.rhizome.name=Helga Rhizome -item.herald.rhizome.name=Herald Rhizome -item.herkules.rhizome.name=Herkules Rhizome -item.hersbrucker.rhizome.name=Hersbrucker Rhizome -item.horizon.rhizome.name=Horizon Rhizome -item.huellmelon.rhizome.name=Huell Melon Rhizome -item.hullerbitterer.rhizome.name=Huller Bitterer Rhizome -item.kohatu.rhizome.name=Kohatu Rhizome -item.liberty.rhizome.name=Liberty Rhizome -item.loral.rhizome.name=Loral® Rhizome -item.lubelska.rhizome.name=Lubelska Rhizome -item.magnum.rhizome.name=Magnum Rhizome -item.mandarinabavaria.rhizome.name=Mandarina Bavaria Rhizome -item.merkur.rhizome.name=Merkur Rhizome -item.millenium.rhizome.name=Millenium Rhizome -item.mosaic.rhizome.name=Mosaic® Rhizome -item.motueka.rhizome.name=Motueka Rhizome -item.mounthood.rhizome.name=Mount Hood Rhizome -item.mountrainier.rhizome.name=Mount Rainier Rhizome -item.nelsonsauvin.rhizome.name=Nelson Sauvin Rhizome -item.newport.rhizome.name=Newport Rhizome -item.northdown.rhizome.name=Northdown Rhizome -item.northernbrewer.rhizome.name=Northern Brewer Rhizome -item.nugget.rhizome.name=Nugget Rhizome -item.olympic.rhizome.name=Olympic Rhizome -item.omega.rhizome.name=Omega Rhizome -item.opal.rhizome.name=Opal Rhizome -item.orion.rhizome.name=Orion Rhizome -item.pacifica.rhizome.name=Pacific Gem Rhizome -item.pacificgem.rhizome.name=Pacific Jade Rhizome -item.pacificjade.rhizome.name=Pacifica Rhizome -item.palisade.rhizome.name=Palisade® Rhizome -item.perlegermany.rhizome.name=Perle Germany Rhizome -item.perleusa.rhizome.name=Perle USA Rhizome -item.phoenix.rhizome.name=Phoenix Rhizome -item.pilgrim.rhizome.name=Pilgrim Rhizome -item.pioneer.rhizome.name=Pioneer Rhizome -item.polaris.rhizome.name=Polaris Rhizome -item.premiant.rhizome.name=Premiant Rhizome -item.prideofringwood.rhizome.name=Pride of RingWood Rhizome -item.progress.rhizome.name=Progress Rhizome -item.rakau.rhizome.name=Rakau Rhizome -item.record.rhizome.name=Record Rhizome -item.riwaka.rhizome.name=Riwaka Rhizome -item.saaz.rhizome.name=Saaz Rhizome -item.santiam.rhizome.name=Santiam Rhizome -item.saphir.rhizome.name=Saphir Rhizome -item.satus.rhizome.name=Satus Rhizome -item.savinjskigolding.rhizome.name=Savinjski Golding Rhizome -item.select.rhizome.name=Select Rhizome -item.simcoe.rhizome.name=Simcoe® Rhizome -item.smaragd.rhizome.name=Smaragd Rhizome -item.sorachiace.rhizome.name=Sorachi Ace Rhizome -item.southerncross.rhizome.name=Southern Cross Rhizome -item.sovereign.rhizome.name=Sovereign Rhizome -item.spalt.rhizome.name=Spalt Rhizome -item.sterling.rhizome.name=Sterling Rhizome -item.sticklebract.rhizome.name=Sticklebract Rhizome -item.strisselspalt.rhizome.name=Strisselspalt Rhizome -item.styriangolding.rhizome.name=Styrian Golding Rhizome -item.summer.rhizome.name=Summer Rhizome -item.summit.rhizome.name=Summit Rhizome -item.superalpha.rhizome.name=Super Alpha Rhizome -item.superpride.rhizome.name=Super Pride Rhizome -item.sussex.rhizome.name=Sussex Rhizome -item.sylva.rhizome.name=Sylva Rhizome -item.tahoma.rhizome.name=Tahoma Rhizome -item.talisman.rhizome.name=Talisman Rhizome -item.target.rhizome.name=Target Rhizome -item.tettnangergermany.rhizome.name=Tettnanger Germany Rhizome -item.tettnangerusa.rhizome.name=Tettnanger USA Rhizome -item.tomahawk.rhizome.name=Tomahawk® Rhizome -item.tradition.rhizome.name=Tradition Rhizome -item.triplepearl.rhizome.name=Triplepearl Rhizome -item.triskel.rhizome.name=Triskel Rhizome -item.ultra.rhizome.name=Ultra Rhizome -item.vanguard.rhizome.name=Vanguard Rhizome -item.waiiti.rhizome.name=Wai-iti Rhizome -item.waimea.rhizome.name=Waimea Rhizome -item.wakatu.rhizome.name=Wakatu Rhizome -item.warrior.rhizome.name=Warrior® Rhizome -item.whitbreadgolding.rhizome.name=Whitbread Golding Rhizome -item.willamette.rhizome.name=Willamette Rhizome -item.yakimacluster.rhizome.name=Yakima Cluster Rhizome -item.yamhillgolding.rhizome.name=Yamhill Golding Rhizome -item.yeoman.rhizome.name=Yeoman Rhizome -item.zenith.rhizome.name=Zenith Rhizome -item.zeus.rhizome.name=Zeus Rhizome -item.zythos.rhizome.name=Zythos® Rhizome - -bbs_mod.tile.hopadmiral.crop.name=Admiral Crop -bbs_mod.tile.hopahtanum.crop.name=Ahtanum Crop -bbs_mod.tile.hopamarillo.crop.name=Amarillo® Crop -bbs_mod.tile.hopaquila.crop.name=Aquila Crop -bbs_mod.tile.hoparamis.crop.name=Aramis Crop -bbs_mod.tile.hopaurora.crop.name=Aurora Crop -bbs_mod.tile.hopbanner.crop.name=Banner Crop -bbs_mod.tile.hopbcgolding.crop.name=BC Golding Crop -bbs_mod.tile.hopbittergold.crop.name=Bitter Gold Crop -bbs_mod.tile.hopblanc.crop.name=Blanc Crop -bbs_mod.tile.hopbobek.crop.name=Bobek Crop -bbs_mod.tile.hopbramlingcross.crop.name=Bramling Cross Crop -bbs_mod.tile.hopbravo.crop.name=Bravo Crop -bbs_mod.tile.hopbrewersgoldgermany.crop.name=Brewer's Gold Germany Crop -bbs_mod.tile.hopbrewersgoldusa.crop.name=Brewer's Gold USA Crop -bbs_mod.tile.hopbullion.crop.name=Bullion Crop -bbs_mod.tile.hopcascade.crop.name=Cascade Crop -bbs_mod.tile.hopceleia.crop.name=Celeia Crop -bbs_mod.tile.hopcentennial.crop.name=Centennial Crop -bbs_mod.tile.hopchallenger.crop.name=Challenger Crop -bbs_mod.tile.hopchelan.crop.name=Chelan Crop -bbs_mod.tile.hopchinook.crop.name=Chinook Crop -bbs_mod.tile.hopcitra.crop.name=Citra Crop -bbs_mod.tile.hopcluster.crop.name=Cluster Crop -bbs_mod.tile.hopcolumbus.crop.name=Columbus Crop -bbs_mod.tile.hopcomet.crop.name=Comet Crop -bbs_mod.tile.hopcrystal.crop.name=Crystal Crop -bbs_mod.tile.hopdrrudi.crop.name=Dr Rudi Crop -bbs_mod.tile.hopeastkentgolding.crop.name=East Kent Golding Crop -bbs_mod.tile.hopekuanot.crop.name=Ekuanot Crop -bbs_mod.tile.hopella.crop.name=Ella Crop -bbs_mod.tile.hoperoica.crop.name=Eroica Crop -bbs_mod.tile.hopfalconersflight.crop.name=Falconers Flight® Crop -bbs_mod.tile.hopfirstgold.crop.name=First Gold Crop -bbs_mod.tile.hopfuggleuk.crop.name=Fuggle UK Crop -bbs_mod.tile.hopgalaxy.crop.name=Galaxy Crop -bbs_mod.tile.hopgalena.crop.name=Galena Crop -bbs_mod.tile.hopglacier.crop.name=Glacier Crop -bbs_mod.tile.hopgold.crop.name=Gold Crop -bbs_mod.tile.hopgoldinguk.crop.name=Golding UK Crop -bbs_mod.tile.hopgoldingusa.crop.name=Golding USA Crop -bbs_mod.tile.hopgreenbullet.crop.name=Green Bullet Crop -bbs_mod.tile.hophallertaumittelfruh.crop.name=Hallertau Mittelfruh Crop -bbs_mod.tile.hophallertauusa.crop.name=Hallertau USA Crop -bbs_mod.tile.hophbc431experimental.crop.name=HBC 431 Experimental Crop -bbs_mod.tile.hophbc438experimental.crop.name=HBC 438 Experimental Crop -bbs_mod.tile.hophbc472experimental.crop.name=HBC 472 Experimental Crop -bbs_mod.tile.hophbc682experimental.crop.name=HBC 682 Experimental Crop -bbs_mod.tile.hophelga.crop.name=Helga Crop -bbs_mod.tile.hopherald.crop.name=Herald Crop -bbs_mod.tile.hopherkules.crop.name=Herkules Crop -bbs_mod.tile.hophersbrucker.crop.name=Hersbrucker Crop -bbs_mod.tile.hophorizon.crop.name=Horizon Crop -bbs_mod.tile.hophuellmelon.crop.name=Huell Melon Crop -bbs_mod.tile.hophullerbitterer.crop.name=Huller Bitterer Crop -bbs_mod.tile.hopkohatu.crop.name=Kohatu Crop -bbs_mod.tile.hopliberty.crop.name=Liberty Crop -bbs_mod.tile.hoploral.crop.name=Loral® Crop -bbs_mod.tile.hoplubelska.crop.name=Lubelska Crop -bbs_mod.tile.hopmagnum.crop.name=Magnum Crop -bbs_mod.tile.hopmandarinabavaria.crop.name=Mandarina Bavaria Crop -bbs_mod.tile.hopmerkur.crop.name=Merkur Crop -bbs_mod.tile.hopmillenium.crop.name=Millenium Crop -bbs_mod.tile.hopmosaic.crop.name=Mosaic® Crop -bbs_mod.tile.hopmotueka.crop.name=Motueka Crop -bbs_mod.tile.hopmounthood.crop.name=Mount Hood Crop -bbs_mod.tile.hopmountrainier.crop.name=Mount Rainier Crop -bbs_mod.tile.hopnelsonsauvin.crop.name=Nelson Sauvin Crop -bbs_mod.tile.hopnewport.crop.name=Newport Crop -bbs_mod.tile.hopnorthdown.crop.name=Northdown Crop -bbs_mod.tile.hopnorthernbrewer.crop.name=Northern Brewer Crop -bbs_mod.tile.hopnugget.crop.name=Nugget Crop -bbs_mod.tile.hopolympic.crop.name=Olympic Crop -bbs_mod.tile.hopomega.crop.name=Omega Crop -bbs_mod.tile.hopopal.crop.name=Opal Crop -bbs_mod.tile.hoporion.crop.name=Orion Crop -bbs_mod.tile.hoppacifica.crop.name=Pacific Gem Crop -bbs_mod.tile.hoppacificgem.crop.name=Pacific Jade Crop -bbs_mod.tile.hoppacificjade.crop.name=Pacifica Crop -bbs_mod.tile.hoppalisade.crop.name=Palisade® Crop -bbs_mod.tile.hopperlegermany.crop.name=Perle Germany Crop -bbs_mod.tile.hopperleusa.crop.name=Perle USA Crop -bbs_mod.tile.hopphoenix.crop.name=Phoenix Crop -bbs_mod.tile.hoppilgrim.crop.name=Pilgrim Crop -bbs_mod.tile.hoppioneer.crop.name=Pioneer Crop -bbs_mod.tile.hoppolaris.crop.name=Polaris Crop -bbs_mod.tile.hoppremiant.crop.name=Premiant Crop -bbs_mod.tile.hopprideofringwood.crop.name=Pride of RingWood Crop -bbs_mod.tile.hopprogress.crop.name=Progress Crop -bbs_mod.tile.hoprakau.crop.name=Rakau Crop -bbs_mod.tile.hoprecord.crop.name=Record Crop -bbs_mod.tile.hopriwaka.crop.name=Riwaka Crop -bbs_mod.tile.hopsaaz.crop.name=Saaz Crop -bbs_mod.tile.hopsantiam.crop.name=Santiam Crop -bbs_mod.tile.hopsaphir.crop.name=Saphir Crop -bbs_mod.tile.hopsatus.crop.name=Satus Crop -bbs_mod.tile.hopsavinjskigolding.crop.name=Savinjski Golding Crop -bbs_mod.tile.hopselect.crop.name=Select Crop -bbs_mod.tile.hopsimcoe.crop.name=Simcoe® Crop -bbs_mod.tile.hopsmaragd.crop.name=Smaragd Crop -bbs_mod.tile.hopsorachiace.crop.name=Sorachi Ace Crop -bbs_mod.tile.hopsoutherncross.crop.name=Southern Cross Crop -bbs_mod.tile.hopsovereign.crop.name=Sovereign Crop -bbs_mod.tile.hopspalt.crop.name=Spalt Crop -bbs_mod.tile.hopsterling.crop.name=Sterling Crop -bbs_mod.tile.hopsticklebract.crop.name=Sticklebract Crop -bbs_mod.tile.hopstrisselspalt.crop.name=Strisselspalt Crop -bbs_mod.tile.hopstyriangolding.crop.name=Styrian Golding Crop -bbs_mod.tile.hopsummer.crop.name=Summer Crop -bbs_mod.tile.hopsummit.crop.name=Summit Crop -bbs_mod.tile.hopsuperalpha.crop.name=Super Alpha Crop -bbs_mod.tile.hopsuperpride.crop.name=Super Pride Crop -bbs_mod.tile.hopsussex.crop.name=Sussex Crop -bbs_mod.tile.hopsylva.crop.name=Sylva Crop -bbs_mod.tile.hoptahoma.crop.name=Tahoma Crop -bbs_mod.tile.hoptalisman.crop.name=Talisman Crop -bbs_mod.tile.hoptarget.crop.name=Target Crop -bbs_mod.tile.hoptettnangergermany.crop.name=Tettnanger Germany Crop -bbs_mod.tile.hoptettnangerusa.crop.name=Tettnanger USA Crop -bbs_mod.tile.hoptomahawk.crop.name=Tomahawk® Crop -bbs_mod.tile.hoptradition.crop.name=Tradition Crop -bbs_mod.tile.hoptriplepearl.crop.name=Triplepearl Crop -bbs_mod.tile.hoptriskel.crop.name=Triskel Crop -bbs_mod.tile.hopultra.crop.name=Ultra Crop -bbs_mod.tile.hopvanguard.crop.name=Vanguard Crop -bbs_mod.tile.hopwaiiti.crop.name=Wai-iti Crop -bbs_mod.tile.hopwaimea.crop.name=Waimea Crop -bbs_mod.tile.hopwakatu.crop.name=Wakatu Crop -bbs_mod.tile.hopwarrior.crop.name=Warrior® Crop -bbs_mod.tile.hopwhitbreadgolding.crop.name=Whitbread Golding Crop -bbs_mod.tile.hopwillamette.crop.name=Willamette Crop -bbs_mod.tile.hopyakimacluster.crop.name=Yakima Cluster Crop -bbs_mod.tile.hopyamhillgolding.crop.name=Yamhill Golding Crop -bbs_mod.tile.hopyeoman.crop.name=Yeoman Crop -bbs_mod.tile.hopzenith.crop.name=Zenith Crop -bbs_mod.tile.hopzeus.crop.name=Zeus Crop -bbs_mod.tile.hopzythos.crop.name=Zythos® Crop - -item.admiral.pellet.name=Admiral Pellets -item.ahtanum.pellet.name=Ahtanum Pellets -item.amarillo.pellet.name=Amarillo® Pellets -item.aquila.pellet.name=Aquila Pellets -item.aramis.pellet.name=Aramis Pellets -item.aurora.pellet.name=Aurora Pellets -item.banner.pellet.name=Banner Pellets -item.bcgolding.pellet.name=BC Golding Pellets -item.bittergold.pellet.name=Bitter Gold Pellets -item.blanc.pellet.name=Blanc Pellets -item.bobek.pellet.name=Bobek Pellets -item.bramlingcross.pellet.name=Bramling Cross Pellets -item.bravo.pellet.name=Bravo Pellets -item.brewersgoldgermany.pellet.name=Brewer's Gold Germany Pellets -item.brewersgoldusa.pellet.name=Brewer's Gold USA Pellets -item.bullion.pellet.name=Bullion Pellets -item.cascade.pellet.name=Cascade Pellets -item.celeia.pellet.name=Celeia Pellets -item.centennial.pellet.name=Centennial Pellets -item.challenger.pellet.name=Challenger Pellets -item.chelan.pellet.name=Chelan Pellets -item.chinook.pellet.name=Chinook Pellets -item.citra.pellet.name=Citra Pellets -item.cluster.pellet.name=Cluster Pellets -item.columbus.pellet.name=Columbus Pellets -item.comet.pellet.name=Comet Pellets -item.crystal.pellet.name=Crystal Pellets -item.drrudi.pellet.name=Dr Rudi Pellets -item.eastkentgolding.pellet.name=East Kent Golding Pellets -item.ekuanot.pellet.name=Ekuanot Pellets -item.ella.pellet.name=Ella Pellets -item.eroica.pellet.name=Eroica Pellets -item.falconersflight.pellet.name=Falconers Flight® Pellets -item.firstgold.pellet.name=First Gold Pellets -item.fuggleuk.pellet.name=Fuggle UK Pellets -item.galaxy.pellet.name=Galaxy Pellets -item.galena.pellet.name=Galena Pellets -item.glacier.pellet.name=Glacier Pellets -item.gold.pellet.name=Gold Pellets -item.goldinguk.pellet.name=Golding UK Pellets -item.goldingusa.pellet.name=Golding USA Pellets -item.greenbullet.pellet.name=Green Bullet Pellets -item.hallertaumittelfruh.pellet.name=Hallertau Mittelfruh Pellets -item.hallertauusa.pellet.name=Hallertau USA Pellets -item.hbc431experimental.pellet.name=HBC 431 Experimental Pellets -item.hbc438experimental.pellet.name=HBC 438 Experimental Pellets -item.hbc472experimental.pellet.name=HBC 472 Experimental Pellets -item.hbc682experimental.pellet.name=HBC 682 Experimental Pellets -item.helga.pellet.name=Helga Pellets -item.herald.pellet.name=Herald Pellets -item.herkules.pellet.name=Herkules Pellets -item.hersbrucker.pellet.name=Hersbrucker Pellets -item.horizon.pellet.name=Horizon Pellets -item.huellmelon.pellet.name=Huell Melon Pellets -item.hullerbitterer.pellet.name=Huller Bitterer Pellets -item.kohatu.pellet.name=Kohatu Pellets -item.liberty.pellet.name=Liberty Pellets -item.loral.pellet.name=Loral® Pellets -item.lubelska.pellet.name=Lubelska Pellets -item.magnum.pellet.name=Magnum Pellets -item.mandarinabavaria.pellet.name=Mandarina Bavaria Pellets -item.merkur.pellet.name=Merkur Pellets -item.millenium.pellet.name=Millenium Pellets -item.mosaic.pellet.name=Mosaic® Pellets -item.motueka.pellet.name=Motueka Pellets -item.mounthood.pellet.name=Mount Hood Pellets -item.mountrainier.pellet.name=Mount Rainier Pellets -item.nelsonsauvin.pellet.name=Nelson Sauvin Pellets -item.newport.pellet.name=Newport Pellets -item.northdown.pellet.name=Northdown Pellets -item.northernbrewer.pellet.name=Northern Brewer Pellets -item.nugget.pellet.name=Nugget Pellets -item.olympic.pellet.name=Olympic Pellets -item.omega.pellet.name=Omega Pellets -item.opal.pellet.name=Opal Pellets -item.orion.pellet.name=Orion Pellets -item.pacifica.pellet.name=Pacific Gem Pellets -item.pacificgem.pellet.name=Pacific Jade Pellets -item.pacificjade.pellet.name=Pacifica Pellets -item.palisade.pellet.name=Palisade® Pellets -item.perlegermany.pellet.name=Perle Germany Pellets -item.perleusa.pellet.name=Perle USA Pellets -item.phoenix.pellet.name=Phoenix Pellets -item.pilgrim.pellet.name=Pilgrim Pellets -item.pioneer.pellet.name=Pioneer Pellets -item.polaris.pellet.name=Polaris Pellets -item.premiant.pellet.name=Premiant Pellets -item.prideofringwood.pellet.name=Pride of RingWood Pellets -item.progress.pellet.name=Progress Pellets -item.rakau.pellet.name=Rakau Pellets -item.record.pellet.name=Record Pellets -item.riwaka.pellet.name=Riwaka Pellets -item.saaz.pellet.name=Saaz Pellets -item.santiam.pellet.name=Santiam Pellets -item.saphir.pellet.name=Saphir Pellets -item.satus.pellet.name=Satus Pellets -item.savinjskigolding.pellet.name=Savinjski Golding Pellets -item.select.pellet.name=Select Pellets -item.simcoe.pellet.name=Simcoe® Pellets -item.smaragd.pellet.name=Smaragd Pellets -item.sorachiace.pellet.name=Sorachi Ace Pellets -item.southerncross.pellet.name=Southern Cross Pellets -item.sovereign.pellet.name=Sovereign Pellets -item.spalt.pellet.name=Spalt Pellets -item.sterling.pellet.name=Sterling Pellets -item.sticklebract.pellet.name=Sticklebract Pellets -item.strisselspalt.pellet.name=Strisselspalt Pellets -item.styriangolding.pellet.name=Styrian Golding Pellets -item.summer.pellet.name=Summer Pellets -item.summit.pellet.name=Summit Pellets -item.superalpha.pellet.name=Super Alpha Pellets -item.superpride.pellet.name=Super Pride Pellets -item.sussex.pellet.name=Sussex Pellets -item.sylva.pellet.name=Sylva Pellets -item.tahoma.pellet.name=Tahoma Pellets -item.talisman.pellet.name=Talisman Pellets -item.target.pellet.name=Target Pellets -item.tettnangergermany.pellet.name=Tettnanger Germany Pellets -item.tettnangerusa.pellet.name=Tettnanger USA Pellets -item.tomahawk.pellet.name=Tomahawk® Pellets -item.tradition.pellet.name=Tradition Pellets -item.triplepearl.pellet.name=Triplepearl Pellets -item.triskel.pellet.name=Triskel Pellets -item.ultra.pellet.name=Ultra Pellets -item.vanguard.pellet.name=Vanguard Pellets -item.waiiti.pellet.name=Wai-iti Pellets -item.waimea.pellet.name=Waimea Pellets -item.wakatu.pellet.name=Wakatu Pellets -item.warrior.pellet.name=Warrior® Pellets -item.whitbreadgolding.pellet.name=Whitbread Golding Pellets -item.willamette.pellet.name=Willamette Pellets -item.yakimacluster.pellet.name=Yakima Cluster Pellets -item.yamhillgolding.pellet.name=Yamhill Golding Pellets -item.yeoman.pellet.name=Yeoman Pellets -item.zenith.pellet.name=Zenith Pellets -item.zeus.pellet.name=Zeus Pellets -item.zythos.pellet.name=Zythos® Pellets \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json deleted file mode 100644 index eee9d6d..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage0.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage0" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json deleted file mode 100644 index 41a440d..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage1" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json deleted file mode 100644 index f87748a..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage2" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json deleted file mode 100644 index ef2addd..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage3" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json deleted file mode 100644 index 6853510..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage4" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json deleted file mode 100644 index df0dcc9..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage5" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json deleted file mode 100644 index 5111aae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage6" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json deleted file mode 100644 index 77d63a2..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/hops_stage7.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/crop", - "textures": { - "crop": "bbs_mod:block/hops_stage7" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json deleted file mode 100644 index 9a81357..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", - "textures": { - "particle": "bbs_mod:block/microbrewer", - "0": "bbs_mod:block/microbrewer" - }, - "elements": [ - { - "name": "back", - "from": [ 1.0, 0.0, 2.0 ], - "to": [ 15.0, 16.0, 3.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } - } - }, - { - "name": "base", - "from": [ 1.0, 0.0, 3.0 ], - "to": [ 15.0, 1.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } - } - }, - { - "name": "front_lower", - "from": [ 1.0, 0.0, 13.0 ], - "to": [ 15.0, 4.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } - } - }, - { - "name": "top", - "from": [ 1.0, 15.0, 3.0 ], - "to": [ 15.0, 16.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } - } - }, - { - "name": "cover_right", - "from": [ 1.0, 1.0, 3.0 ], - "to": [ 2.0, 15.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } - } - }, - { - "name": "cover_left", - "from": [ 14.0, 1.0, 3.0 ], - "to": [ 15.0, 15.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } - } - }, - { - "name": "front_top", - "from": [ 1.0, 12.0, 13.0 ], - "to": [ 15.0, 16.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 3.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 4.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } - } - }, - { - "name": "base_upper", - "from": [ 2.0, 4.0, 4.0 ], - "to": [ 14.0, 5.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } - } - }, - { - "name": "base_endleft", - "from": [ 1.0, 4.0, 13.0 ], - "to": [ 2.0, 5.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 9.0, 0.0, 10.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } - } - }, - { - "name": "base_endright", - "from": [ 14.0, 4.0, 13.0 ], - "to": [ 15.0, 5.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } - } - }, - { - "name": "case_base", - "from": [ 3.0, 5.0, 5.0 ], - "to": [ 13.0, 6.0, 12.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_back", - "from": [ 3.0, 6.0, 5.0 ], - "to": [ 13.0, 11.0, 6.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_front", - "from": [ 3.0, 6.0, 11.0 ], - "to": [ 13.0, 11.0, 12.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_left", - "from": [ 3.0, 6.0, 6.0 ], - "to": [ 4.0, 11.0, 11.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_right", - "from": [ 12.0, 6.0, 6.0 ], - "to": [ 13.0, 11.0, 11.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - } - ] -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json deleted file mode 100644 index 25d35d4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/microbrewer_empty.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", - "textures": { - "particle": "bbs_mod:block/microbrewer", - "0": "bbs_mod:block/microbrewer" - }, - "elements": [ - { - "name": "back", - "from": [ 1.0, 0.0, 2.0 ], - "to": [ 15.0, 16.0, 3.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } - } - }, - { - "name": "base", - "from": [ 1.0, 0.0, 3.0 ], - "to": [ 15.0, 1.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } - } - }, - { - "name": "front_lower", - "from": [ 1.0, 0.0, 13.0 ], - "to": [ 15.0, 4.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 4.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } - } - }, - { - "name": "top", - "from": [ 1.0, 15.0, 3.0 ], - "to": [ 15.0, 16.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } - } - }, - { - "name": "cover_right", - "from": [ 1.0, 1.0, 3.0 ], - "to": [ 2.0, 15.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } - } - }, - { - "name": "cover_left", - "from": [ 14.0, 1.0, 3.0 ], - "to": [ 15.0, 15.0, 13.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] } - } - }, - { - "name": "front_top", - "from": [ 1.0, 12.0, 13.0 ], - "to": [ 15.0, 16.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 3.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 4.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 4.0 ] }, - "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] } - } - }, - { - "name": "base_upper", - "from": [ 2.0, 4.0, 4.0 ], - "to": [ 14.0, 5.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 0.0, 16.0, 8.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 8.0 ] } - } - }, - { - "name": "base_endleft", - "from": [ 1.0, 4.0, 13.0 ], - "to": [ 2.0, 5.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 9.0, 0.0, 10.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } - } - }, - { - "name": "base_endright", - "from": [ 14.0, 4.0, 13.0 ], - "to": [ 15.0, 5.0, 14.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 1.0 ] }, - "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } - } - } - ] -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json deleted file mode 100644 index 7cf44b9..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/micropack.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", - "textures": { - "particle": "bbs_mod:block/microbrewer", - "0": "bbs_mod:block/microbrewer" - }, - "elements": [ - { - "name": "case_base", - "from": [ 3.0, 0.0, 5.0 ], - "to": [ 13.0, 1.0, 12.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 15.0, 9.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_back", - "from": [ 3.0, 1.0, 5.0 ], - "to": [ 13.0, 6.0, 6.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_front", - "from": [ 3.0, 1.0, 11.0 ], - "to": [ 13.0, 6.0, 12.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 9.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_left", - "from": [ 3.0, 1.0, 6.0 ], - "to": [ 4.0, 6.0, 11.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - }, - { - "name": "case_right", - "from": [ 12.0, 1.0, 6.0 ], - "to": [ 13.0, 6.0, 11.0 ], - "faces": { - "north": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "east": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "south": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "west": { "texture": "#0", "uv": [ 8.0, 8.0, 13.0, 13.0 ] }, - "up": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] }, - "down": { "texture": "#0", "uv": [ 8.0, 8.0, 16.0, 16.0 ] } - } - } - ] -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json deleted file mode 100644 index 820f869..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/block/modelblock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "bbs_mod:block/modeltexture" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/admiral.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ahtanum.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json deleted file mode 100644 index 8ede004..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aluminiumpot.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "custom": { "flip-v": true }, - "model": "bbs_mod:boilingpot.obj" - }, - "variants": { - "normal": [{}], - "inventory": [{ - "transform": { - "gui": { - "rotation": [ - { - "x": 20 - }, - { - "y": 0 - }, - { - "z": 0 - } - ], - "translation": [ - 0, - 0.5, - 0 - ], - "scale": 2.0 - } - } - - } - ], - "facing": { - "north": {"y": 90}, - "south": {"y": 270}, - "west": {"y": 0}, - "east": {"y": 180}, - "up": {"x": 0}, - "down": {"x": 0} - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/amarillo.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aquila.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aramis.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/aurora.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/banner.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bcgolding.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json deleted file mode 100644 index 69437b2..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json deleted file mode 100644 index f26ac5b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json deleted file mode 100644 index 3a6f86a..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm10.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm10" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json deleted file mode 100644 index a37d70d..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json deleted file mode 100644 index ba34957..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json deleted file mode 100644 index fb6c329..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json deleted file mode 100644 index 3e14b9d..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json deleted file mode 100644 index c90552e..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json deleted file mode 100644 index ebcc118..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json deleted file mode 100644 index 693c81c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm8.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm8" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json deleted file mode 100644 index 7d0efff..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerbucket_srm9.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerbucket_srm9" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json deleted file mode 100644 index 70a5c9c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/beerkeg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/beerkeg" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bittergold.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/blanc.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bobek.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bramlingcross.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bravo.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/bullion.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cascade.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/celeia.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/centennial.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/challenger.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chelan.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/chinook.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/citra.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/cluster.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/columbus.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/comet.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/crystal.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/drrudi.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eastkentgolding.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ekuanot.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ella.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/eroica.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/falconersflight.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/firstgold.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/fuggleuk.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galaxy.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/galena.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/glacier.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/gold.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldinguk.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/goldingusa.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/greenbullet.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hallertauusa.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc431experimental.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc438experimental.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc472experimental.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hbc682experimental.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/helga.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herald.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/herkules.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hersbrucker.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/horizon.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json deleted file mode 100644 index 013f419..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hotwortkeg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/wortkeg" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/huellmelon.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/hullerbitterer.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json deleted file mode 100644 index 5ed0b58..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/keg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/keg" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/kohatu.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/liberty.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_amber.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_dark.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_extralight.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_light.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_munich.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_pilsen.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json deleted file mode 100644 index 0c4999f..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lme_wheat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/lme" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/loral.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/lubelska.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/magnum.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json deleted file mode 100644 index 013f419..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mashkeg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/wortkeg" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/merkur.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/millenium.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mosaic.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/motueka.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mounthood.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/mountrainier.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/newport.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northdown.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/northernbrewer.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/nugget.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/olympic.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/omega.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/opal.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/orion.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacifica.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificgem.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pacificjade.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/palisade.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perlegermany.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/perleusa.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/phoenix.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pilgrim.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/pioneer.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/polaris.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/premiant.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/prideofringwood.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json deleted file mode 100644 index 86a351e..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/priming_sugar.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/priming_sugar" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/progress.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rakau.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/record.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/riwaka.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saaz.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json deleted file mode 100644 index cd0fb90..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sanitizer.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/sanitizer" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/santiam.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/saphir.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/satus.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/savinjskigolding.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/select.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/simcoe.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/smaragd.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sorachiace.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/southerncross.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sovereign.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spalt.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json deleted file mode 100644 index 0f33566..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/spoon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/spoon" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sterling.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sticklebract.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json deleted file mode 100644 index 3abd71b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/stirringspoon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/stirringspoon" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/strisselspalt.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/styriangolding.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summer.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/summit.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superalpha.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/superpride.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sussex.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/sylva.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tahoma.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/talisman.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/target.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangergermany.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tettnangerusa.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json deleted file mode 100644 index ecf0a92..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/thermometer.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/thermometer" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tomahawk.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/tradition.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triplepearl.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/triskel.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/ultra.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/vanguard.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waiiti.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waimea.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wakatu.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/warrior.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json deleted file mode 100644 index afe84f7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/watergallon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/watergallon" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json deleted file mode 100644 index d72c13a..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/waterkeg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/waterkeg" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/willamette.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json deleted file mode 100644 index 37ef546..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortbucket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/wortbucket" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json deleted file mode 100644 index 013f419..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/wortkeg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/wortkeg" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yakimacluster.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yamhillgolding.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json deleted file mode 100644 index 51f826e..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/yeast" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/yeoman.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zenith.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zeus.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json deleted file mode 100644 index 99dc38c..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage0.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage0" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json deleted file mode 100644 index e68f0ce..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage1.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage1" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json deleted file mode 100644 index 3980aac..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage2.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage2" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json deleted file mode 100644 index 372fbae..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage3.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage3" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json deleted file mode 100644 index 66447bc..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage4.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage4" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json deleted file mode 100644 index 2bb8b26..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage5.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage5" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json deleted file mode 100644 index a32cdc7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage6.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage6" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json deleted file mode 100644 index 68147a4..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.crop_stage7.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:block/hops_stage7" - }, - "display": { - "thirdperson": { - "rotation": [ -90, 0, 0 ], - "translation": [ 0, 1, -3 ], - "scale": [ 0.55, 0.55, 0.55 ] - }, - "firstperson": { - "rotation": [ 0, -135, 25 ], - "translation": [ 0, 4, 2 ], - "scale": [ 1.7, 1.7, 1.7 ] - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json deleted file mode 100644 index ef4db25..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.hop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json deleted file mode 100644 index 4cb8975..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.pellet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/pellet" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json b/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json deleted file mode 100644 index 1226d4b..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/models/item/zythos.rhizome.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json deleted file mode 100644 index c788179..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/keg.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "result": { - "item": "bbs_mod:keg", - "count": 1 - }, - "pattern": [ - "iii", - "iri", - "iii" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "minecraft:iron_ingot" - }, - "r": { - "item": "bbs_mod:sanitizer" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json deleted file mode 100644 index 1caf359..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/microbrewer.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "result": { - "item": "bbs_mod:microbrewer" - }, - "pattern": [ - "iri", - "ici", - "iii" - ], - "type": "forge:ore_shaped", - "key": { - "c": { - "item": "minecraft:cauldron" - }, - "i": { - "item": "minecraft:iron_ingot" - }, - "r": { - "item": "bbs_mod:admiral.rhizome" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json deleted file mode 100644 index 77c8925..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/micropack.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "result": { - "item": "bbs_mod:micropack", - "count": 4 - }, - "pattern": [ - "iri", - "iii" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "minecraft:glass_pane" - }, - "r": { - "item": "bbs_mod:admiral.hop" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json deleted file mode 100644 index 07c96ee..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/sanitizer.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "result": { - "item": "bbs_mod:sanitizer", - "count": 8 - }, - "pattern": [ - "iii", - "iri", - "iii" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "minecraft:glass_pane" - }, - "r": { - "item": "minecraft:water_bucket" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json deleted file mode 100644 index 33bea16..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/watergallon.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "result": { - "item": "bbs_mod:watergallon", - "count": 1 - }, - "pattern": [ - "iii" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "minecraft:water_bucket" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json deleted file mode 100644 index 9223dd7..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/waterkeg.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "result": { - "item": "bbs_mod:waterkeg", - "count": 1 - }, - "pattern": [ - "ir" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "bbs_mod:keg" - }, - "r": { - "item": "bbs_mod:watergallon" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json deleted file mode 100644 index 40dd2b5..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/wortkeg.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "result": { - "item": "bbs_mod:wortkeg", - "count": 1 - }, - "pattern": [ - "ir" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "bbs_mod:hotwortkeg" - }, - "r": { - "item": "minecraft:ice" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json b/classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json deleted file mode 100644 index c6d9045..0000000 --- a/classes/production/bbs_mod_main/assets/bbs_mod/recipes/yeast.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "result": { - "item": "bbs_mod:yeast", - "count": 8 - }, - "pattern": [ - "iii", - "iri", - "iii" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "minecraft:wheat" - }, - "r": { - "item": "minecraft:water_bucket" - } - } -} \ No newline at end of file diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage0.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage0.png deleted file mode 100644 index 27388ca7a358cfec6b33df508d54e45542dc9a22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3609 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 ON*XFU%5M}O1^yR|P1jKX diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage3.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage3.png deleted file mode 100644 index 6bfefe0326c0238b6eff71afdf56f479096eeb3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11390 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 e^r9Pph@h4-(=FcPRrb#x!Af#(Wh(ze)qmV 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 OUF4*cC96K0hWsD5Z&h&s diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage6.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage6.png deleted file mode 100644 index 4c6fdbb0df0033c0f2278a7c39c007142efb4db8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13654 zcmaKTWmFx_wk^S3g1bv_cXtWy&IUFP8`-#f0t9ym?gV$Y;O@b~4({&y@|}Cnz3<06 zuSa*6j5+68wQ7ygqq@4ks;S7KArm1(K|!G@$V+SdEye%25aIvcD{NhU|1Ai?GJ0T5 zkQLYy;0lD2umqU{DHI$5)<6v)z|z}g6etV@1w&=4r3cni{w!z#a%2VkgJJb@bpFeR zf)W<{OYpCNBM=Or@N#r;auf6tq57Au;NSW`-E348|AK(+MX3JEDLrL13Mr5)kb;Mm zi^YPSgM)&Xmz9H?hnJUwnSzs@gOiQ@@5#%;!7a$cE6B-5@!tp4Uu&+GR)QMRvj1)C zZ%c&A1`KuheL$;t8;!Q$ra1O|AqIJr^(TR|G=X5nh< z47LS1QT(F_FbBDVMX3II`d>qEbp9V%C%69&)8Bxxc>$c+I9S>L8PdOj%F6$LsH5Zm zpxwY4!2k94|0(RIKc<`orCfmkFvwL41akOy6xD1%V33;) z$eBV)lb3=)*Vf4r3gO~l^TxpPnyCcvE{BN%1|8n{MBln+FaCH7_SsLhS>jAWs zbp<(6{A2J2X{!Qy6Pl7%uD2_1&X$dW_)twH{bW2@#wssZt6gPKmPxq-Lxg4MnT#b z3PIkR_b+c9BAaJNht-1C=S|B`;r@4Y4r>wbNj(Qr_cCVpd-i|Ey7)r!e~IhS{JQ7} zHP7mK5>a-^JL2&IzO3aDHGO-3Kl%nmqYwhb77sx>{o|zSlhT5tUzLdSwm}u-{ENbn z5EB+xdI)~Z=~|&!_A5Ys226@N038eLYedb_GhJejlf8-X&QH zAjr^+0%H4NL+w3U)N!4#rz5zxk0}%R)((k;byX(eX83c8Z><0l{~Eu78Nx*ak&bwz-5U|F~YywoOH3tRNMKT8e92)fD2NJ}9rKheB?0wOPnD8>YW-Qv! z`boLvm1BtxIBCF2sCxaUbJ)BU&u7<6O;pTZ`KH{7mKPvyE&Ij70x1F%54E`K1ZaoD zO$@0G1ZT+4-H#kir;o0;o3_92J?Ye0iWIkJ)<{FEUJZNup?Ea4QgL5a`j0cb*hsTJ z>`qD*_WphLRW-wbJIepFh)5?6#ISOw~b!G5!K z)FO9nWoBEtkwY^K?i(S+bit6&9)*!nqhP8qokh0(NZN+QL_#pI_iZDn8eu+P|OeH1lzODam+uy(n>v zN9V9ZSc&(yz0+&V-#a^BJKZG4ID^t5byC5q)zj!f6~D%xjK(`+G6UQwM0Fa;PJ$kM zE57DIQI6Nb`W|s!>$Sllxy53YOA0$$L=LSAHk{5qqO70F^;d;UF$6%8!%{rEbEnL zh-8)kycIBSWW?>udW?}^fy8KNMNzOca+}LbAKwiVkX1SOz19l!=2Npo7B}NR;3!LM zFc0)E2*;<3!YaHJr1Qc@@EG2}8C!DkH@mmpk)opuK4s5r^k9d|2K8Ro*0%Z$`mnmi z;zO&ZmjshqnVBD<2EZfDauW#vNwfrgE#!V2Q|p9=x7!8vCbGMp0U#u6X2%zzW!k$# zFOn6ZX2hlX5x<6KLaKQt#vf(ki3!^q`C)jAVb1rkyuR_pY*IL^(Gx(f>^B>v4gTK?U$2jWIT^^I%U1JamKKN7S`I6{`%43MBa>CGHW%=?jwERWp@noJmzsycZZDQ3@0BK!>SiW*q_v5{ecW*K|i--lu2yRP&Ff+qu=*!P${lHmVJZ9(V&S!!=|(5Qmb0_WUHa~ z6cFydxA!2_l8n$}>fKYOk=I6lQNe$K&=2>30X|pbfF5k2F-hheJv>d(LfK6%W!F>(>1&2k@F%gy zF;!}O9hL5;LJ`-v`A=rfZngE@A>5sWn}Qhiu@upSitoJsdc-$&)Tny=G7o_*2bhjB z<=UmJIS9yop}|)L>72ZCG^d>ZJjOZje4WCz24U265RF7%Eo_8&Bf%D)3WCBwkoblDwkOnXe;e_4TW>0HJ zd1f(dXXp1W>&m*F{oz?j2$!6qXd^vjr|h2KnDwej z^;$dBe@5tB6l-E`0UB`B5`FOcQ(9`~_jC5`xsiV5nWomE8*CK_66;i< z#|zyE{|ebvzW75CT1MtwzgL}1EX0r~_FGNa5{CGU{~(m9B`jaZGuZBkzy~Ox zs>;vm@AAC#`u=lfAu}J~10dyb372VH;3hPR)j6>3ah3YOz~DnL6pqt~y|na>)sTk@ z=piq5{G-YfnpM7dY)b<7J4j}>0UCcV0KC%w%T8Q|=KkU344+lF>2Z+@pOw+|iH$Vi zScG?*q~fp(;&CRk%NHjOnvJNopBBCS=;d#smpx6Hr<1(U3C?oJU>p7zP^VV?uC0k~ z?}JPD18!?}5&|)npN8%9dYg?~Bo>r5Fhr-ukYF~K08PjSY3ETMe+ex5syJW#X;E-v zt$ssT>~b|yvc_lIbK~K62j?RWoX|aOTJPyXAnYY1L##Z>(bb_N-Lj0Y3Cy$ zV=gb(1yq}`(RyeMQxQH@R6ctBIN%NJqCL~X=QXGWF zn&b|2Rcn937QtjgX+w3NHy+&X8psk_&H}H6_P)pV$_C1^zM^!eibF_@YQx1e5>xj- z>jz?VokN_mI@O-0P-RBf3x8)!@vfxqo2L!WwL7$EYT$xJBGQfB9jGeAMc!<>q)C7&L zswGpokcY=9sx}QZ#8n#Ey-9Y}ZYcr90PZTXoN2nzw7zYxz<3!|VO%UOH@@wqre`mwTnnyCGxElW4 z6f`kfLw2200g;iBFj?-2=`yL@dxW`PxVr0hcRpAtaRt;icf*F8qwkfdN>X+~2_MBp zX;D^pTJe#rx*bF_F)7H>DFggTo%ntCLN>LOdLc!P9W9||5u1|*_}nBNU@atwD4u zks?UYV(A9W>@!idC2wU>|3I>B>>5v-h8)sZh|_NBZ6-^m&PCmh3yk5IPV}=xIz2Ty;fe{hslBBW?6s4`_JU=m zmM47(3E_)>^yayq{H|?AQ*I%ap@OmS#X`02{x&m9$ky6J3AlymX0?*@Tsrk&vvdKJ;{2{ zYsVsT@2`{Nz}VF|*E~B5Z*=|~nKt5}MI*8tkvFRB@2!Y30x%lXXe(oamUdjeEQaAW zO5-oxp+cr+m^W6-LuVp&j9HKkhYjuu(n zUVbO*T{Whki41-2U-!Q)cjIRNz`tVB*E43w?`O{cMaA)eI)WxZd`oNh+-&sdN0=hr zmfdYw(QX{QGB)hgennmD4tWwAOV*SKwtvj8qRFE}n!#!(y1Vg5jVL4!>q~upb)9@J zEr56l;&_CJL7)w)d3)7RW@hKy8kx>`_fqG(GrsP&+%+0K%6H{#LX^;I&jj!r9X-rN zI(YH87;qHY?OfT&$=jBLgQJ>I**tI2QcXqN8e3aC_sGvqeG{opt1|oqX|;`BEkIvw|O$j@iX>A`Z(R{hMT^EWLH9d(q-3V;Qto2`)g*z+lZM`2+ zCYwHn?BuX&6|2sMjVAd>r7;oenUIG%h#++ti(oK4WbE!9w&eC)pqBWt5XE>QrbUJa zsX~SS=(Ds!Vq7J%)Wi>J`0Ai*zpq|y1QjPAWalF?JSBR0SRS7C3p2Cfix|hAYg>L- z7s8ZkOm9M34|<{xY$}(kee$F{YrS>Y;()mQ2MXO~YXH!Z2v3(yLU`_xv`C$s=33WV zctPaZRY@ zJ^TaFHu_=nytQO)G<;v2ei=9W^A9?*jh;rq$w&XUni-ov8zHrn!PCZ>t25Um$6kZS zcFKJCYFX`t$u<3T`>NCdhF_SPB#=7=7L6vqcRyHo-5s<9MOj^d>U!k-tt?Mam^(7y6?^rA-(xdxfh8FC%TNIV(?6lACZT) z#UJqLwRhwv*xzysm*BeqieMqkH!a3m^pO-M(?m!2viz|M-2=a&U5~{IJLD9`Xz}Q) z)=y)`b@&Q+$|S4y^r;zZ0|WgIxF3JFNdD|NHW=p~3mHkDEPjD6A$3&O#_W`UC4wPA zubIW#ym=UV8V~dfIJ)SlkU7(AYIoqSa&c?R)F6Qr!%=XwM*yDO{oM&jxx&_GeN275 zSm?3rcQcV3XS+-1kLjCd7=>Q##`L)n9NWL?BR8)-&DEj8*rvGNe zR}b$J8e!unT>@^-%p~X7Q6JhX1>%d^rrFk9L+Km6ek%U?M#pybxqdS~<1ICa63#2w zp-kq0^hvy}JGM@}g5GDAehnYOga81F z1VJ{w{mkJ_CmDt*nu_R$$Xs7MEBY_w&(KcE)9{TCgKgz2#o?D3`WId!xq|CEx_x&W zz5!3Wx_GH2FipsSl*%R%w4(8p9YIVm*2?gU)aA$M8*7 zVoZnWTfas0IDW8I(=f5tS-?@m+B0PRVO)(FAhJY|+_jKMqx`;NSHjG1{4`Y+>f1w( zjBr$^N1REC-q;Q&p-Mku@R$^3+*Kfi#p}1#yID;$o;ad8GrxhXlEzfUbL2TyLtki| z&|TgdXzwDxwYZpd;6FnN>o=Y2b$gtccpKIwC5Na?;3j0phn?)kpOP44j#{=*``cU6 zUGSmMZJ#Je@tpqj`&OxUtk|H&q%{`V&wOEm%r1(Q5>XSz@q_J|F}Jgo%yNGt_ed8doH?(#>IC464DalEnlEr+q*;W3V;0eik zF!VmJvp`3W10k$caC=XQP7TOp`qcUL^Kx)Pg^U^wtg6_)gDoz9;>VUtZcjJvpZlMs zrPwsmwHV&N7IR_7H1K^TaZiSOTARfTM~uVELJ5w%l2Qdn3(mB?XYqhD(EHY41t^&& zCFu@@n`w$>Z47etw+BO_RXkS95gb8)r|F=s5>px5?FYI^d+-_EdA1buT$j zyZL&Yw3})wfE~(&wOPayrdpakp3HG&-X_NENLiJW^R%e2e(C)c*W4L~Cg$18}SC_n!|Zp@!IlFjf#G8Su-ciTa*m3=kiHGWv%y0TG|6YaWe#}J+|!gFh@3YHwZ z><_cv&WhwE^D^S?@d?K8+t>im328{I0)$ zhz-r6)YS`jvnZVA&Enunt)z7yg-&Iu|MReT_tubo&!$mWb%rKd za)eUcE+^E7mRmio%M@my^Afj(RJ6Mnj3C;(~I~eE=~;g+;2Y;(8lgtIlU`jR9U*tHLmF^{hMQHBjG`K zDZp05G+4e;Xnq;jPetld#ufR%kC%uPlalCb=ro~l3JVS~r=ZZ>5HmxO*vZE&Or#s? zmdIYpE5v5hZTv`*KW0Ku#_i1-m4QXo>Ezf1M3uk1jVksw1)4aq&K*x5jDBW#Rn4)V z^Rn2-6}P4FBjj-bxg!U>3#gRDef^*$KqTR6nBWeh&($i@YX)V*f0v{!%ZCSnF|j#P zaYA=X!Oc~s<5EBT<{JYDMQ6G#kCjxK64(r!V2uFk&2^T6D^-Nz*@|s=W|R)byYpZVhUw zDBhPceLO`U!V597ra8iRyS-c{6PZc05y9)tic=~9_ogu$EHoR;>pMJ=B#VZoMG_zBk45vPEcfDX>cd4uK<*&X69(y z^?VaN>FG~L{q249=GO^J`fp4WK{8Oa9Iuv>1s1htb{k`oVWdL<;p>}VkbXTLUM}}i zLygHcHsAI4Gk>D|)v}iZ5bp6f0&bz`fh1NN=sCb^d4v3^JM>R4i<1CI6RfJK|FoWP zo;s#5q7+?4!)PWet@P;vt!!~$V&}BfCc-CBziMwP&h&vijP`AlSCfrr0gmZNHAYE> z*6i1dB^4P%i(CkG)D_VLZEjGs^|S>peV- z$UWRZaLq`jPff{6u)QbRK>yat&Ex3)jaT&h*<>hb2inftqPYobt8f{|=dwy<3T4xQ zLTWoF_fh<-_|f9{?s)`!o%(a+hmWe8@74EXr>7efx+^_41Z}|%0^XH|MJ4$A)A`aR zoSw#kj$I}Sv8lW3ls#$9h)Ujy*YDr0xyls&K_#cB1H|W?Zy(u^|ShhA%-R5T9F=1^Ty`9t*Da z(FT1=mD9icM%1twae#huFNR(8!M(!8Rjgmso+nnVsa9+e%&XSrM`w~#Zoa_kTN;s zdllyK7hS?A)jf?}3_+Qz^m(~=ZEN3qxA95?OLvw^+ji7~h9Tm15`LGxpN6t@D*Z24 z$Y5#|@I5*L!J}I;rt(0__xoD+A0fU`7ujsEftwvg|-Hti?3pm%T?CF zi{u)7r@r_Rc_`KDj1W=N8$tgwCX0k8nI$wjX)Ni(FUM zwGGK$6`nyOJ?;KFvHDSPkv(j~5FSecbRjd-duZ#LLV z(vT&YotZ5_COY{xpeA=eDq`3nh7sX^Jm!FGuD;I)$IXkLdBjfSA-m)TiW0p0I97W;i6pCLLGVvcRORn{Gs0>(NF-8Z zFB2v%Q&2OTjj|$EOF2g+{XLwBZ;EFN!ap6zjF5bp5$w)l*`7oaNCb zr~~)bm#4AcvLK%}e8cNeFAPG3&&HId{&OFedm-CZQHqU1vfk|F&b`bNj`1Oz1_j|KgG*4;$`=U|xvnc9%EGO27n_ zgAz3ENtEg5ZM!CO-*k&q+ct~>s6j~8DYN7y%yPITac~+6DPGrSSaiFGGMBUFzie*y z0@eF7AZGMu(z!aB*OpF~Ek=t~@SmDk`^ZPiXrlYRpGTcJ_W{A=U{_7Lc9~ynn;cuZbfM z9lhdUSS}WFFZ|G~m~f499oP`K89WWlW%JY4A>vkGHO^H?f$@FzMPA-;B`5Jd8?+cU z^^Y*r&xMt{MoM8@YEEqD7XR3PoW*NA3UpIKkE-k2EtrTg!bmHUO58Dd$sfz~A5cD2;R&4Q2nzVv9nhOUW55sAJicB^GWWR3=+?1(dML)K3H z9s>iOQ1l|!C+-99oF8`+N&x^nbl1oAH34JWB%RsdVH+VGlJU|7# zy*tE2;7u4)>#kk(WpOyCI+-okbgg3;BzAK=RdExW2{~5Om-9Z2%SCz=OdD@HsW{+$ZxfnzFVR`1 z33iG;DuKR!q(unUmz)U`?!K5Gn|l(Fuig`GlRV5@J`cIe$x%ou^KyVD%wnf7t)6+* z(B3Av`_jurjNuc|m5`H4@KVrbV35~P`u=I&26Hr}Sct*og>gU6u@)?6DE;|+rf7nw z&y{}J4xVsP+QZ0(ER>+U3FFnznTlTSOrZlCt7NiDTVJ(dvuZe3-_vd{h|VR-MN~ zYhP_`SSl-!oJexBr#>3nVzy~oMWZVz6u)MpD@${f%WDzLnkS_G+tH*&o5b{`af8e#TQnP_7t- zJ>EFhnW)m;$Kcuqf^W0OH94c9TI1^^mw(?RuurEl5&it}K+R>Z^qv-a;+4CG{Zubk z+q38F(QWam!xcdyaT9z&HqJJLSPn*Km~+v_j^8kcWE{@^-MFVcK$~fdz7HBMcKjNq zFX-cpvZYNL;6^R1AmN5FxGQTw#7GY|Hy#qDv*fS&#(MiKlM1 z8_}-^d!3wg{vhinRRO3qOWYL!wjtVA7At%z?Y5*|{TL%a!GF_QTxSsx%b0~b`;GwR zz93p$tvwreefSw3ymCd&-qO%{&&~3rg!7G7!I$1&rA{Xm|94$G&A>wOmNFT}u_dBS zlf!oxK|kpktTZ@!3_8v3)k!KSg7vuND{Qp{-CgZ#vy9J&&g z1;BaCkQJlTp`e=Wgv$HQ-RLlxJg1s2>ZH+f3$E!pQMM+TSt5uVEuIYhMlt3g<=PgJ z()Dp|rpfvQ#C_FbVABmTl)-Z?uegfXps;JRY`j<`Ar)$(s%pWG$6n;X!PE+AYp;E7 zgiOp=xN;%5RNf8cYA0%%*wpWy{6z%y)`>%Dw}9nubZ^&yrStj7ofxnSLOm<;OMt!_ zJ_GK)L!iBU`2M{8U?4Zo1Zv5pdsItv$L#4LvM+6|;v%)z8VQ+wlN#sy;IX+^&fRnr ziLaDyiz6DwU@qW9T!HJ`Yu9C$5?Ma6{dkyzgzPwx=&4JGO01Dj0QTUFhA%Ptuidq& ze9dL$M=>2;li_ydP{l$LbcAm4*+#&};y%x=)0|<0fm63)pTnYqFPlW*VNJL4Bv~D@ zHQPMk-NVN?{!U7Qv(^tUXU$8A$?if%%+ei524I38<&Z4Y>lUIz_i)H^*7Ua;FUquo z=jlYPT}Gh2`0SURi8-%ME>Y(tN@QR;ovCiQHa^RwH16S}g9M{%2&C|HV%ErBA}N*W z+(37qwE|2Y;1_+7!5@{}dEeHq#rLX}wrgJ{jWcU>zM8xb<32AcTFDDlh{YC4N|kdH zC(NIfO+sc9G}-+Rw*+NYrum4jSiUyj`Pc-2+V{=XO>E@T;{j{prEAP)hv1lwgrZvgK`tfzst|(D%`+~TtId%f{{Fbzjgekps zmjWaXcsMxlQ~H&QJp5~bM5&1ZO{fKEgCXsY)Y zhqpi!I&t{s8SHX@t+Hv7Sh?_BMUcnCrG(*F!&*vLB9U_$;Z@~p^9Fv>@h5(sS59^( z0}zP37Vc+w<^34|x-UWwV5?su1xT&r2&6IcT2=U%rXc^tco;{w}37o8GB6rrPJejFHUmv!6*5ew&vI zUSNFE%)o8U!1gkO>u@t?78>pTwvsxvC=~{ml2>`FE>+6g+*jd&qy@XPH%;?Nm@Z{p z$X??~eA>!%dr>#q*(F(i(+jOeaFBqdeeio`g`Y2YkLMRIdBmGI#=@t;ephorI6hb* zY%(E&YeN~fnMq~c9&bpgqw|I5S(~RXbRJfUD!G{V143@+yFu$8wc!%_q15Pa27E=F zN{&T2M#6Uu^O*hjbxzN_KHiR-$_Q&)z~alyHZ52=&+^=hR@1=K2QC;AxzCs8>*gCO zCO;x5W|#O|eUBIM)rD`X_gGE#?}be5)59y;>ShVyQng_Q%bXm(wIo37?RGc0-S(QB zo0Y$@bRiu?8R>(NaD_99CF5*)wG7ex1|+VW*)xOCaoifTKXp@7)qw2RkO$p;-UlTC zwuZ~-wGQ4Ex!1(d&X@gPHwmFq|9k*mSX4v30E;`9XluT9)8_=h-Q9Tf-#$Ml9WE-^ zd8J2|$6)Iup%!r+xy-Vgm@@8>yXaS$mDqvsKbbC`y2x1JO%^5u!8ALPMJ+H&UR_*^ zp^VXW@qD!^WTDicEx(ckTG*3?uvd&|Xv1@}5sUHN)2EEF8&B?bTRk&bX({X+y`ri^8nFkSYRMK-X_i#hb%z@3l1&0iDV*os%lBZy=pyJL7Hr_ zFK1kQsZDkIgrmA5%_Cf1WFh6)UjG! zTvop-h<<5r-v-iH(N$6Q!bLADz6jO2$!{a+dGGUn%q3w1RZ(#n8m@7)nh21M=k zO&)J@X~ttmJk<(S!Hd9NyRZI^+6lpxq^zF9NgT;HAzY_8A@2;WCocjZad7!Tms!}e9DUFa^M zWzVb{NiDLf9@oI-iQqj13I)N3Q$taru%^ZTM<*9Q_s)D1GzQSZ#_hMK%MMu-Ra~0rPOj$<9zgnEdXZ znUg_26M+XcyKYbYySeN@@UJ|gw78LYJ=k_*3^=Jj3sbLvGW>634SkZ@7O@Iy5%Kc~ zz=5C!w}w1J8iu(7pT#?smHm^j#ztnn5@$Q58ad(KiiXTW-fz$Who#n5Xf^{iFcA8qjXC5czZHu6kutiiP_xPY*IGH zEoM00T#nYZ=K(L47wqA4^KyhvXX$ik`&GoO6iwHdNtZBUh=RCmS^!gz&xRLfa`Geb ze#U2Ll3<3cM7!PHQRYS(gBO(X=%&i2NVyabn7+(#%w^&AJ_ljBkz?p2)oSS>CMB~5 z*(E?7_QoF%9U8X0YzTt{ z_~0xI)#>8q_%B4$5D1vbxt)F+G1RsJ_6MSCri@gPvnfM_1bKPfq>8lH%@060&^N1! zxA)|68~l}}sLp4yB7Z-QA6*oFQXOA!qV5Yg%(C7)%3gYip59RJxtZWJoIGAMmj%hY zk}|F^O00&>lgo!Slbw+3f7e4}Q!cGgdQ3E_(r0DTm3ge_h(fngO{+=MVOh1w(X-8Y zRw$)0<5kIBOGD}96_w{db}Cg)9WLQ~|8YUoc{r0gw^FC{=8z9d7U#Ad!@(A>rrCJl zlRv^e=1$wChEctkcoh5{>2&Mo!q_psme~OxS<+J=ECEzZE}t@T&->axe>y41s7O~! HnuYuy*x(l+ diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage7.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/hops_stage7.png deleted file mode 100644 index 90b0c7ae162838d1d18285102c704c83cde86b68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13897 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 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/modeltexture.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/block/modeltexture.png deleted file mode 100644 index cfadbb25f503952afa6d07b3caa6c8de8737b495..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 537 zcmV+!0_OdRP)TuuN003B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00DhTL_t(2&vjBwO9D|8 zJ-!*|h!$CQi(fcz)(EWgulGNprsnlW%p8E1+m0bsws>zHyf zoU=R`&Izr{R;S-2G)x1Q1c2$&JE373u%PKphI5i}Ov%lHtE222z`@a;XZcAU5&apz zG3XB3p5;%5^Egw2^IWq6;O^=HfNi)OR&yHUGroS+6olqSsAj^=YZ%=`LK^S&&3;PGXQEzSw@%BFb&o} bEbaOQZgR*If^der00000NkvXXu0mjfdgtTk diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewer_gui.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewer_gui.png deleted file mode 100644 index ad5598d56a99bd24e9d194ef5714232126ad8b6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2196 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K58911MRQ8&P5Fo{p?&#~tz_78O`%fY(0|PTd zfKP}kP~6kBO~L6kL&+!4FCVjcXxLmJ9g~<|NlVQQ7{?;!#D({o@d_;$|xm4 ze!;*5Kav4M@OO4qU{rG!ctjR6Fz_7$VMb96uLhu?WQl7;NpOBzNqJ&XDnmhHW?qS2 zUTTSgiJpO;kwKe!B(R`i{^{xB7*Y}U_D*l!DhCnQ#GI+~zt<C_U>=-n`vqvz}Ml^zXdUCCmQ$Szgw10SSH2gvyvUAqL&G^-{YlW%M`x zc)eJ{VNaBFZEfk}o$|*v_6IB2Zs}rHW!PKAtlHqs)uIJ(e za?Uc&`5jUH=S#bV=(#?I=`U@1o`1RQFA{aMaTasLx`rPQj~8oXh_Yw#CCqxX_q`Es zA!i7igkSkm^ZVk{?=fGxxql8@Z43`kc^$h2Z~5MXGldu)i*&zVZnv)C#sw|DD>4UC zz2q4(KW===VQ_5Xk*_P&!7jM7O>WAy&jn|hpDeyqCAY4YL3SFDE6-41tGD*~Lp#O< zO9K$iq#!#JDE^i)W_rzZ+XGMdKIF1|s11(W|9y7Cn)^};Ywt@YMAox5nD13wv^FLV z$SQwh&k(g=*CB4d?txiAt*(q^`O-Us^5q#9Jk|>fY`Dwr{%%RWg%rb8hEp}qOnCyH zZI?4|xEqH?_ zkKtBa5zB>Vrp^qxn)VF2Pu?(?T$f_ouwOAqjbY2ZSYL)5^}oT(>$w=#mWNAEcZe#l zvk8A(FJZ|Suy@z=1DifnTzYSw|Lb|7Z287I_8YMme)?1k*pKNcpiZ_tTjIKAJOaZ}S<)d}-?&NuvKxUlOw!v*m;31CVCdP$6d;SXCvx$}}% zAfEwfB9Lrgb(sG(`nP@Y-U|O*hQGVEo9(?V2a*N>hvTt25EhVZQ2aYT#C-4Vd8Zh5 zz26l2@m}AvYxBQdVY@JMTiC~xx;%cEN{CHRp2J>i%cb8!*e=vgU)%M)%w+q&Ez8Xs z&TZM+rT)3N8m0y67%2DE-IJPImm4`qgDP9AcS)%XcdPHNs;Cbye(hhK#r)!O+S*6# zw{Yt|s|(fLV16K+w_&IE`rAID4A1=5-*q~AeLlk@ql{&*9jC83gTe~DWM4fL+sha diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewergui.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/microbrewergui.png deleted file mode 100644 index b76098d3015de40e07415d690b479988b105593d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1997 zcmbVNe@qi+82(zALlh;NMRWmgWf4i%Uau_&y|i#`uO~REq%_!w7>@RkleSl{S6g+- z>Tq*7gIh*0`@z6}tV@g`%c9#bvCcU%XB4xcYzpH1JE)-OO0U&j;k*eQBE7hD+?b)x7eP&5<@sX|&6FRVi`y;xHlH+>=r2&*Ah3LI<-(8q*B4_G` zD!!zJcgfp(8kS!7H(gylBjm+rzcWPd=x?x}Ad`-dboBkcvfv*qt3B<~aC>Iv!Aj4S zx@_*6wCoLDXo+9F63siN{-UPuPU=7 zHv{gyy!e=*{RfaS^WdqG-nK(?V)x|D;rs7Z|JgP2`AG{oIsGKP$ohpdD`Jp%_RX91 zAD=ABI84r}**Sc_*6EdM}Em{my=zGlYUf!?!RA%RkY1{t+Q{x zt2KJ=ZpFZYe!1uF%~+i5XbOH()phIbX)Q_zm9RYV#9RU&8_O9kkd~zYLZhV@W@g?_e=A)?k|5x z3_}cz0B+IhrZ@nNN zb@Wbi&-Tb(d1dsiU{+K`R2d;3>I-MP`eG0fDiM?kMU9kg2{@`GUSu1{mSE=TpD z(N>Y6-H$xkMai?@-;gomqgk!-2Y@xSo!+=@$(83L@xQ9Fs>`z?dilX^ElpLjr5C6d zQ>N+eGkuD{X?g0rJd+}{OO8Bk0v}U!T(d-Epyit-*Dv*-NQeKgpu}pU4w$Ro_!rlT BRM7wc diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui.png deleted file mode 100644 index b2211b750571fb9fae827b3dda12b1374ffeaeed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1237 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K58911MRQ8&P5C#Tjh5(-sS0EP%%+1Y1Lqof} zyN?|^_W%EXh~OwW8Un*U1d^tF&INjsu_VYZn8D%MjWiG^$=lt9p@UV{1IXbl@Q5sC zVBk9l!i+m6X1@grvX^-Jy0SmuVc|DoDAT)P0o3E?>EaktaqI1EL$1RHJPv^?H`e}F z-X8mSkOY49nMl$bBY5M6eysf zb3*5Ya1REN@%{6>U`B^055L!Q jz6ti2q~eJey}U6`@aw;#s}mnJf{gWa^>bP0l+XkKcPV?{ diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui_old.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/gui/micropackgui_old.png deleted file mode 100644 index b54a010632f216463ecf509b4aadb09b3d3aaa43..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1161 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G$6&6|H(?D8gCb z5n0T@z_%5I8IucVoB#^4mw5WRvOnP9i>u zX4#vNw;z@;xVS8tvMMe^#@)JXRoR{MyIC1n7z7v`Kz>7GK*e61SooR2OEZ4|^;qSl zB9`gaWfg*l-$oR)>lUPawsChk^0i9#-M+HIvUSs=89wmfFbvapB1ISrIME&V!}MO? zpQV|zR>iNFl62hfDxW`>gNuvT%2%z&3b!OL&q|LCzrQh$5vK)E?^YGQuxSW7b^U$m zbq`I~b2s~B=2KW7^*4JMj z_hUI_d3=*j*&CZ9oeuLD8JHM27!(+Q0gk}{i|E`~vZ=UBR-I|&~NqD&r;SqU`e6jy|mu+)6a}P%)WP7uhF03 zz{IG$+xz($s_mD7(o)R#ImLVS@4vnA^M^ip)osS-H~TX@5QD{g)rZCVd1nN5&Dkt# zy{F@_JzLI4wTNj)`{uS!398v{R`T2M!R_*YirG)*Bu9!_m&qCRE&k8`KoXC09|(cN z@Cz`c$qz%z5(N(z6HCF2*laN;2Y!+w2+JjMgY!0>EXCu1eD<><--OGQ8m zDuNi47M)zVuI$Z~Hx&VI;od{bBfvBU$u|p>{aCjZuado0pk=_(0M7^wemv7p9}Q)g e&p-$?RM#`Ah}iZ``p%gMQtRpJ=d#Wzp$P!#BxUFT diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerbucket.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerbucket.png deleted file mode 100644 index e8cde393db39780864761d2f461c48e788248020..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmaJ>eM}Q~7`_%u5GCl0sL1ek==_3STiU~(l+T0Fjj~!g!HpnCd)N!!hj#}pUs`EI z7q?6^7G=hvviJ@7$NWf$AlsBVXNcJxn+o`m0b8AgAOnTjT`S=J7`xov@8h2Ld7t0= zKDiH#S#N~|hX(@y5Teh(OyZd2dx8SR_i1ulk2ow5(sG4trbw{k904R-nL+~8Q}`Cb zMBvu4ZP$r-00@9cbFPqU$V4p+CC7ajxr1WGXaI;$bg;Okm=M51Vhc&@AWush1d>)A zl%p{y3~VZ4BQwf5BD*}xY$-3cXsu9U0vPW=MFNTtaL_?*rFqn$gZ#XxIQMPC5a@>p z#X9Jvs9b{)Ol3F%)W~CFEDEI(L=d@Btw9iFG^kQ2Rj@+5kr<^K)gY)U4xGFoF&k$s zLQPouWG-=~gKUDpqA+Z?+vWCHIm2y%m0GRV$DvZih=>@zj23W549!PPF<=C5;Yd~> z85;C4;)P6!po2uEFONX6)3h`{SthYyumfjdrCi}V(iG5O_Fr1lTwoX;iXk!G1w=pc3nvH;~a!A_B*!k6dyupC# zXNh^wI)tWd&o2u5VOH(S-;w{xPc7llc>0YG|Ok0qNOcOHLW*lWTUkCZo`OxuLT&TWsrHoIDi zmo9)Z4&4b-UD^{C*!X-A6>jTFwB7ywPT$5Q#?^H}Da-4wCOx!$+}D+tNW1y4oUQa` z#~0lXT1PL#9sSzTcu$2UqGPC$8>?Cy2_?IkB_Rf;M&njDgnz&kc z%NQtrxxZ=gjlZNrj(a0D-AiLCoy)WrqH7Nu2cQ?w@#~Oeu)E*sejdE5`smzw66nhM zkc>A!Re+@>R}ln)JrYOcJisq5^Q zB$m}48-20j%KDtveHT|64t9?11bXd^G=Z*{^z`&d^UmC^m59fiNDr}{Ki9j1t&m>Y zUY*_g?5hW8Z{Pci2RHD**o(#mPgl5GtWgoqfX|#kW3KRmyU6|Z6|lsfuaiwwdS&?@ z!I&L9KCtvj!mNq&zkVyLKN@;4)99*hKQgJO07-4`v8e$jt-%@hGwVIl>j^-}-W}mp zA32-}&d&Mi-@I`lOrXy_*6w~gX;wzSJy-E*y@zP}{bofc5PGVprMqdo`effG*VuEX z+EumFUzK4pNq)f9__ukD?AX4WMR?_^h|)h_zf=<-LDw#CZX39q-`pk1IrCoCGEj;+ zcZZ*|?Ksj+H^iOz{I~pq_{au$olbVoJ(8z!bqtsL3lY8WTA4StHtWRD(qp-E$H!&k zPxFS)&X4_LG%+$#+GJkyvK?(FBoTF)*R~By&dzSQ_1$@Izpl-6>Pzn&(G7#4#ZJFE d@0#tw3PAStll-QZALjY~;`+2KtSP0S`X8ykQ&<21 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerkeg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/beerkeg.png deleted file mode 100644 index 5e8a5156ed46cb37346d2b704216ec65c9256c34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 741 zcmV(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;Ye_^wRCwC#o4ZaMK@^5Ro5d(1($e4*6i5*w7F8r#THb*-LE?dUjnru~~m6@9-(VW>i(iC3r+UNiFTy}PMsH%$kFxVk*4m<%>B;!f>bf|ND zsa8h-UxE9GgxANt^6{Sl*a5C17C#@?%GaO(J^&X2#Lvft@;MlQGeP3#e0rl&xTfLsG|7jT~pO)%U~6J!%$-DNWLF(L8uE8b0)6qu5p&0JGpirsSq zDdN|bY1K`J{-{()VKOxG=>j9$FcM&103ICoPY%E+p#qozG`$8qgaR;WdJ!y|o&w2r zf#N?D!I?^(Vj+bJ4bYhyGeD`8+oF3H!CfC%`lDuNZw+zS?PZTs?jaeCPGaacsh;%C}>ell?LP XrW}G5hU!BU00000NkvXXu0mjfq;fc! diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/bucket_fluid.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/bucket_fluid.png deleted file mode 100644 index 8efdbd9cd82e2994c2a4d067f40b80122cd5c82e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 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 DWk+Y} diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/keg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/keg.png deleted file mode 100644 index bf56bd2700dcd26279b6338e24bdd5eee1a7b37c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1386 zcmV-w1(o`VP)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ=@JU2LRCwCFSxs-;L>PYF8Gr0{n`~%Aqf&aHDzxH4q#{mSD>(Pme}KdhK`Z(P z%AtP%PMrE1%1`K}632dAsDgk7qNK?-S=%!Y2e0k*+T+?V>G-hYo$!@a;YpmMq-qDX|%hxaQOZ`jLSmE=ca|dxqNXt_ZbB|SX z&P~2%bM>MHjW0f4#wPI4WZJU2n*-P2xe2Usuf7UE<4P$#>kERas9b^W25=csiCp;t zV3V>N;c_>CYc&P-#esOkDPkvpZvhc+dhpe70HIe!R89baQv{`#loiL~)^_(i+7iPX z09-AXlRjix6pr~MYn2j^X$FacC567avR=&10Pl0 z*IsqN)T!*cl<+*>Mmz7;foYR<8fFQu>2*=~`7|<>5m@76R0xAB@ z@kt3Y2dtwg0*-ocV1aE7O3>5Z`mOan4t>TJ0E0^{S!fq{#KwM0bod2Y9)&$EDJ>v7%BlQ1xoTV zLjg!B0JO-WSSU6zXMi+l=RiFeWza+98bOeOu)~t43}JgPIy;0s!2cR615EPzXjKUf z-d3|N5g5EN6ONF!FkBBoZ=qfJz-uh3xbHzGGn)cBT4B81dGdPU*3V2f-wQ{hbpdnV zLDHH(o*(X)8Qy2X$fP2oME_8j)y!=LvjV{0ubZEY&bDvh%BS5M{9wCoqG1dWv}grT zXL%X0W(U4JU|C6LOWSk;D2L|WU9nV=y$^uNmj8IjApqj3f7@e2&>aA*_Dz0v)JF%7 zmJHi-d$~7A3D?$r1Gw~lJAlBU1JTKRZ&v`(I!&Mdwn*sDUASN}Ype6JC=Nr~G$l+1 z2?J5!B6xx%;!!*z_xA+T%|QU}0Wm7fm;R>>ZnjhD5W%Uo4gkAv1;DOb1W$a`!o?v+ ze$;mi>!eZ#@U-gQCQSwbd6cY=lt^9z2|(KX5Fjs!ird^-iL80d#O6i~Swa5uxtOfpYjK&BR|4dLM&D0AzdKIFJbX zir`rlwi9n@x-qJf#{`1v~B9k0%iGo_3i(0}aG&G|v>vr~y zYrC7nuHqDB$o!kDRGYVEG5*3Sq@)0V18n6LZP%^Y9Cu((g}lX`mV&zV?)VlG@3*E2 sZnaW%+@9aSBN%VQ4IbsH-30LO0Pn6a?^Sx|aR2}S07*qoM6N<$f>M)q3jhEB diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/lme.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/lme.png deleted file mode 100644 index 13ad1a4971bf662293bc4cf7911f094192b60fb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4394 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 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/priming_sugar.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/priming_sugar.png deleted file mode 100644 index 045c3ea2edc2f80cb7eae308eea92301551982b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3052 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 Of4jMO5idFKO8Pe(W)dm@ diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/rhizome.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/rhizome.png deleted file mode 100644 index c3c61dc73100ecb6427a3ef79cedf525aab47ee3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7346 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 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/watergallon.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/watergallon.png deleted file mode 100644 index cb3b94156dfd8a513de9c8c480b2abb493f7c09c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5855 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 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/waterkeg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/waterkeg.png deleted file mode 100644 index 1d030694d3d53201b265ceaa204dc421206bb296..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 768 zcmV+b1ONPqP)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;hDk(0RCwC#n?Fz6Kp2M~CzJ{`k~2^`bVCRtrXtp^>>aCqfzJIB{V2@+2A#XG z6E;ML5(W^sr3mL3a;UC3+vkgs?mgct-4H8Ie!s`>dw*;nN-4^%A@+eo;1*Dxv|Fud zzfQQ(YfAv{fNPJ8m)o`0_$&b40%snZe{5%3Yo`F#fFl9sAKQ`E+z4O=yZ8d^6%QoI z-~x|Asrh>06n049O~OqK;O1hxbN*wP-H0c--Rf&r{* z56%E4K9Bvzas8>rNoN3j9RV7&bqgT0jxYjfIC&=k06VU0f!Dyfv`)~lCIHv~W+tz7 ztHEuHAC?l^z^rWvY!FUVda28RRATy9Wb4=kz*y28z;u70>SEfKz&M~17`p&S0|F2; zpzi?EzL!AEfY=AbQK0=|=$^v;G~qMBd*Fr9YXyK2izlri#YicY*_J>~crkBV0(lXT z@Di8;z*5L;$8(X>*cchSeVc zf**@Hm%uEb5}3JU!14bpMA56kV;2C^@&UoC!Kq6LoCB8ur2i$Q_Z(~i)TWN0sP)hU zU>X2`=`sL%p8>H1q|F4|i~u$OPFU>05j7JmXjR&SGk`z9so?ZK)gGJyNFNCrwGWo< zL?m~BwgA2h2GFS8X4~9L;1`ezdsX%dcmw?XcU+miY_)UrGmB@1Qg)8!T64447JG+3 y0(Sz;-)XIM4FKQ(_~B_b8cBfw diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortbucket.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortbucket.png deleted file mode 100644 index e8cde393db39780864761d2f461c48e788248020..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmaJ>eM}Q~7`_%u5GCl0sL1ek==_3STiU~(l+T0Fjj~!g!HpnCd)N!!hj#}pUs`EI z7q?6^7G=hvviJ@7$NWf$AlsBVXNcJxn+o`m0b8AgAOnTjT`S=J7`xov@8h2Ld7t0= zKDiH#S#N~|hX(@y5Teh(OyZd2dx8SR_i1ulk2ow5(sG4trbw{k904R-nL+~8Q}`Cb zMBvu4ZP$r-00@9cbFPqU$V4p+CC7ajxr1WGXaI;$bg;Okm=M51Vhc&@AWush1d>)A zl%p{y3~VZ4BQwf5BD*}xY$-3cXsu9U0vPW=MFNTtaL_?*rFqn$gZ#XxIQMPC5a@>p z#X9Jvs9b{)Ol3F%)W~CFEDEI(L=d@Btw9iFG^kQ2Rj@+5kr<^K)gY)U4xGFoF&k$s zLQPouWG-=~gKUDpqA+Z?+vWCHIm2y%m0GRV$DvZih=>@zj23W549!PPF<=C5;Yd~> z85;C4;)P6!po2uEFONX6)3h`{SthYyumfjdrCi}V(iG5O_Fr1lTwoX;iXk!G1w=pc3nvH;~a!A_B*!k6dyupC# zXNh^wI)tWd&o2u5VOH(S-;w{xPc7llc>0YG|Ok0qNOcOHLW*lWTUkCZo`OxuLT&TWsrHoIDi zmo9)Z4&4b-UD^{C*!X-A6>jTFwB7ywPT$5Q#?^H}Da-4wCOx!$+}D+tNW1y4oUQa` z#~0lXT1PL#9sSzTcu$2UqGPC$8>?Cy2_?IkB_Rf;M&njDgnz&kc z%NQtrxxZ=gjlZNrj(a0D-AiLCoy)WrqH7Nu2cQ?w@#~Oeu)E*sejdE5`smzw66nhM zkc>A!Re+@>R}ln)JrYOcJisq5^Q zB$m}48-20j%KDtveHT|64t9?11bXd^G=Z*{^z`&d^UmC^m59fiNDr}{Ki9j1t&m>Y zUY*_g?5hW8Z{Pci2RHD**o(#mPgl5GtWgoqfX|#kW3KRmyU6|Z6|lsfuaiwwdS&?@ z!I&L9KCtvj!mNq&zkVyLKN@;4)99*hKQgJO07-4`v8e$jt-%@hGwVIl>j^-}-W}mp zA32-}&d&Mi-@I`lOrXy_*6w~gX;wzSJy-E*y@zP}{bofc5PGVprMqdo`effG*VuEX z+EumFUzK4pNq)f9__ukD?AX4WMR?_^h|)h_zf=<-LDw#CZX39q-`pk1IrCoCGEj;+ zcZZ*|?Ksj+H^iOz{I~pq_{au$olbVoJ(8z!bqtsL3lY8WTA4StHtWRD(qp-E$H!&k zPxFS)&X4_LG%+$#+GJkyvK?(FBoTF)*R~By&dzSQ_1$@Izpl-6>Pzn&(G7#4#ZJFE d@0#tw3PAStll-QZALjY~;`+2KtSP0S`X8ykQ&<21 diff --git a/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortkeg.png b/classes/production/bbs_mod_main/assets/bbs_mod/textures/item/wortkeg.png deleted file mode 100644 index 5d714e4e9627a41f64e2d88f8717d8edc515e139..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 907 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 EKjLP|v;Y7A diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/BBSMod.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/BBSMod.class deleted file mode 100644 index 661e42c1914979486068c8d2fc1f111d44613831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2338 zcmbtVZBrXn6n<_3Y!X%qQL0!e!BPwXv(@4&DQy!=OAQoB#qpD~Np8|*_J!Hqpw;n5 zS!Z-Mi;J&pGEl_uRk#`SULT+xRAfIqYOm!ksi;!>)$A zDcqaIeU#OAC4(>UAcZ|;AExj~*?kRy)c#h$lEwkYT;q9hTuLs{bUehR-YX@GF&P&G~H?$miVg**+ zmiJxP3(e5-+(5$tvG#jd`o8N*zhav~AOnG|sw+dov0T|8e%NAO(r7uhK}N@O4Z^Qo z1e0g_%=dnHE>IYiQS{%aM8QYOmqCRw95t&cn-|WRhHXhVRBHlxW>M_dU5x84Ml8ij zoX*DUISk`Q}YdQqGT9(q!m3{fW z^q=QymeaA#(BlqjRCvHsP4cy$;`g6*tRSc1iH;+DrQ-_b1#XTQ7@g3vjbqu8zKkY| zQ7R4R%2`2fP@)`AtGQi{yJHd^rQJ>ULWh2zUGgX*;%n207I}e@{fjgH6^u#^b(f*+qNVjE3 zO>p*8JNbpxI!iKxk_JyR?toteuwyl zFA2QMr-A~hZt$sh9k50s@SRemmkR!tHbJ|z`5O|yBKZQz?DQX)N#F%EuBG~bS@Htc zpfQaFEK}FlBk-$TfEb)mcn^7!T-37}QBuh<cmq`|uBWj8VuGJY!g_`A2-fy_l<>*EXqCz3qC3q1e=sV3_r#68m`)i1d&LF?r^F9rC!tQ)%sy zvuOGEE8lt_CuX`Dev-7XQmN(L6E&pbmWDp;6@IF;X&p#M+QM8NoB4Jpq)qN$5mk`mAdKpiW-?PEC;o%!XTRzB@k%{QY zOcLkkN@+v=wIYu9$BVlF8p%r2llL__pSf-~^lbK0R7@WRN?hQ@z1AhtBxJ*^`m z_@_%buK1ZL3lZ5el6qyF;ORverO=(C9xp_f=do$2%y1P7Y@$TJihT;SNNmuo=<5mD z)>GQJ_X+I7Fn+<>6bI(u(tGJ=2BtAfmW|EfBE_i_suZ(0jiC*c=O;d+_z{!u$yvZD uRCNgD4q?k9s0GTICeI?RC4o!0j0r3c3$NfR?L}Op_YAEHrIctV?mqz4Ko4~Q diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$2.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$2.class deleted file mode 100644 index 6616233bb64c03d009dffbfdf3d44242f2f5ceb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1024 zcmbVL+iuf95IviwaTC%OdV_Flfl`u!a3LThijZh%rATf;O_f))u_wtEd$+PT5#_7k z1rQH>03U@ITanrTMF>ml^_k0=*)!|!KfZng@CfTAIJoBE`V^K+$YG^~8@TD{Lbl9##+PAR#wx`l zW8U^vB2aE>O>rZXNkR;tc)p3;Sazjv5?c@4PA7R2nZWg9l2#4L%1+`oMu4f3t*zGT z!%czQyN$HcZ=DIu^vH5#(>JEB&|3R@onDt0HQv zL~+kAv^JLO8_hl58&B?}o`YMDXo(~e4IT=?bK_tUeo-rL#_O~O;yCEGWFgWF|Hp(ya+3@uIPkbIl4rsgOW z(;V$nPbD@!7I69|R_~22V-0s4RLiJgUf}T=RDU0fz}mRZr^3gEC{X{80s=)I?Q04{ zvfSdIuI0Gqr{+u)>=+ZU*vsQBo?L}d2;VBM@{+o85Zb0rtkgbX0|owB(kI7@FpCLYG{&Oj2Kd^*y_RbsKBpDSUWvs0dWhJoVT#24g0Ve$hT wb2y=@WK`vhwm70%;FxK)Eb>|+T*M_zppqqC#ueW4xXSMtUL_7G@Xo#e1h(Q3V*mgE diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$3.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS$3.class deleted file mode 100644 index 1b81b973fa3e48d50d9b8eb7276f4579848cc201..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1022 zcmbVLYj4vq6g}>`W-ZwUd%<{hz!>d7WT+q{hLBj(sBvaopA;u_wo!7{3a> z0OA8bfFFgpDV4SYLx@O@b6@8kpX+@4{^cuxhgh$`!!-}rr%NVx6=ZD*D4ZPq&s#iofR!)&Ou+#RHmwEH|t$TJrj!IKWRDz`_@ zqU)=S!Eb3TZ8PCnCdqsp3X=wwceyZ`Ys5hmWv^2c2f|A3)RA;N%7W&|AgF9>tG(LT zWGKAd$UFVUjA5oH9c8wJ(Jd!ahLu`9)Y1hh5f#+S1&aJZ9&9@<-VoaI-atE*%8tqu zael6~an#>v;&^YoxNB@r2Hi9XtW5Yoi@vl$TgCE~PL2s`@`xt`Qla*bWmHmXhOO=0 zeTGWg46KklDwlELmt)`0&q{i4Ymu0Yrtng_zKK2D_A!Mr!-F%lG|_<+E+b9NVJ@aQ z+>X>JEbOzMl$HK5SuJft%u^}=v{-Xi0rP1yf6BEHd zUCMFAPfc0MI4>iqtK$SuF2X2gEKp|aXE%JY~KmBi(_COuD$EidE=q0PPS8?R$^q!Ud! z?-*k}@moVVZVU%^tm`V?i6ib*B>G17l;bVkRybobmn+1vhpNp(2-#(*3#LUQ*V{a^b9)}4UG+tmGlV@ zvv?j0*`t;xeE%E-m3(&idcOyP2x)xM(b#h~9uPh`*UK}4voyCaoGoH06V^-B5&g(F zOyY%+3Y!?ESC@V{TGTi&jMM2E$*HEWw*Cd|V`eXo#i`UHSP|M7VPTEX4SDcICYwnzx;q2AvqArr z`p|+8{s4cJcy|rfD1vlhKJJ}+?!9}?{r3IKR{)RDs9_dYseoGHq2XyDC-G z^MTgJQhlST$L(qGz$8P-2XVv`8Hr4XBbo3(_2nxaeV|mcV-aPd`9UQGat!S!fB%IB9Ti$6oQ|LmgzoEo(r^ABvz@;4Au(ZC9Km~ Q#%0=FS~UtO(+SM|0EVXdX#fBK diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.class deleted file mode 100644 index cb5091828fb66b8aa32558a87074c35aa94c4fd5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1233 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 Kd`#mQF8mE7?h{o2 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackBlock.class deleted file mode 100644 index 3b00cc8a6d9aa1a0e9a171e8a65bd4d4661d155f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8836 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 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackContainer.class deleted file mode 100644 index 007b9343c748763e246c070054262de1e4e1051b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3425 zcmb_fTUQ%Z6#h;!laMe#no3*Rpha5?q3x(uT8W@EK$#jSwpeVf!Y~3_tw(^|t_? z#79YFa5{l~cs|LcAeZqtCX!HbMjj>;cmZdV*okv-Of@5k7vngegobIU^-?n~;G&d% zSuU57cm=PMrM@X|<`P^iDNvM)EzQlxu@J|iKqRmQMhli#)+^?`X?cEdtfp&sC#plZ7cBgxsqpH@pa2{1JiNsim#75R>hk%tt(Sb$sTb7Cs@r1#GY|nCm0kc zcNbhc(90CIXgAOu_p0p%US(A`jE!yX|AFl}FQDYTA_HkF5O89pJZD#?%()V8(gn{l zOXtmsBhR%j*SEfn6Rm-D1hE5Vz6a zd9Siy>r%pJx;6zFYr?0ehFi3+hZQs>ursKbu0L;ALS!R^5_o=lB+Nc*M6Xh%S1YC( zd(P--gb$H*i5r?EYBKaiM)tVCgMTO8w2=>i>^9lI@IpX!WL%7~j>f{0@%{E>zDe(N~t8vQr3`Vx`rFr z71Ii)oq(NrdZ8Yb@ERV%;~F~gpoYift{Xi9nS1rB z3{I+C)^G)-ILaDacp8?lEO4+v>s~dZp#nzVeNSPDv8Bc&95GjLHI8cKz$!x}!&@S)^p6sH98{~oDMy+Bt(_*^Q5OpT1sj15f;7e>y`Vm+r#>TALBGqNj)vXOvO}x>$QwctRiM3_12TNn=uFINGJHSc%ZVIR+^O6@g#BE*crtk( z<>$`qEr{&luMpuTn(e&><#S#~@G#e1R02{^umcIC(ZZLWG#kn0 zJ2R=o;%q88+pe^$w-8%Le0nV^KK<>-wFuX5X-4WFN+qP??BEW()2CEbGo9_qhK7{= zNyZZmrZXe0WAjk6%Pp25w8Qx4&`Vylo^XxM|8Sf=Bu!p-WddWu@ zwGVTr^7aIda2I8~BRI-kg!;QexhS=EgmMZD-c+BGg*t0NjWwMJyAivKh`5WGxP#+& zpx%Yxu7?KsEmOS|%a>v>U2Q~5)6sT1y@z2vN|%pAM?XCn;5m;cLNW%K z%zc!9BBTHqt_9SFr*Mq#DPq?|s>u4$w4Uek0DK&O|jMfh23+!IUo=?#vZFL;ENziJ|^rMyg z<8$zX1 zm4UEhmT5~;6`|I%l#3E+mUf3~RPBWFE5_nD8AqOLYx)i!4AZR`)kpZr|2_y??d*Zj k5Fn$E^sZy?XB4RRvlIu;hJKNL?h|!y5;boGqmlB)@6xtxW&i*H diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackGui.class deleted file mode 100644 index c5d1a5f046ba1d45cd932a4145224b76a762f7c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1822 zcmbtU?Q+{h6g}&Y$Whd!b`wg0ei64(OsRktC^&6t(>O8Mr6is}|G=!JjoDUSWu#SU zcnE&?HGnjoftfx455;g-R-HD4fgzgF)xE2|=iI$}cK`VEx90$^V%rjBCdG#F$TQGEECh7Oq!tqk@|@9DHWs7DM^#_MP4u18XxJTaHws zxzd|FOhu8nb{QttR@$p;Jrg})u>0J9IEbTE1q>HDN@#B=mGEP}rM*F5ZB#w*cWk+_d^<~nexL;9!nGF zgC+gFOc-t+fqpfW)DW8*m9K@Nbp*JVdcrU{?i$0&5kU7_#Ber<`43d|c+d6t+Yxlus+Oa-lPv*5a{FW081+RMO!gb#I%V(t@|uz^wNx2JcmJ>X}eF zOOWajxlz31(Za^N!f??&a2WR|j%Q_(FF)RpKT<{Iozb^2^cl__NX`knFOD{8_ROIr zjc3s24TSEE*4E{U4~#gjxr>J*Q(FS+P3+~}@LtU%zN?4w{YxIhR9~tf2V-y#cIEIZ z$_UY-9q5QHO=2al7i}}l8S&>>K{pC`xK5W89W=L{Jtl3z?HHYUAy)%$L&s7LntvZz z+{AghgR69j7I6wSoB+ctMFq@J{Mt+LNm2mmGMmZBf0JguMbWo3*IdH0jZ4qK8ddB* zMUg&Fo}%<~hIE>24JESEC}W1M_~V3I#TgnoH_F9X^2{?!^}J2U#+yf-uuHgri#eBu zmEqJIyD0Br;ulzZs5B^=q}MJM$(pychpBz;>5O9z$7ntCIGOP_MmS^MIu_t&ymc&6 ybp@)Rjs|%}RPYWi+S>q diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity$1.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/containers/MicroPackTileEntity$1.class deleted file mode 100644 index 02aeac40b31d8c09fede9a20f8b7016bd9ea97b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 890 zcmb_bU279T6g`t{^Q}!=TdP)$kcT9KYtc7FgtVoRRD_nk%IxeknPztecBVpqmf#2Y z;1BRei6=?X7ay}QbLZZB_S~WFZ!fi>K3U>6Un*sJ29KqX9#?>-ke z8Y`E_g}ji;`S2o*lf-|_T^hUOQmf$OBy(!!W94j+#_GbyCq@|7RRuHP7=c~t_fk!7O8 zOnR@W9~w(9Qi#w6Q^&h{&xQ+P9R8K!Yz3 t-%$R?*;v@Onaa+BcV~(F%Ui=8vN3yXlemypL~^IE>42 z6yvy(L{P_)rdVE0(&<}5Y!(NJYa?t-Q`{TeTS?E5*AD46MkoH*XrY!wqMZ z>n$}*dJ+u7nxi&W9Io8I%#E6^S`4|8p*nIyGgQUm>(07q)m2#>v*lvX;VFjLv}S0| z3`01bStY!@SyLH?N+iDAYE)IL!mB#1jFe1;>#N+-#N1zuI2#&~Tr4SOLnbh;n6`7S zCReNWTEnc#X7!$`IJR8XP368VE2iOaQf%4slBQT@nP^uuU0pC7&DkU}dn}dL7A>=} zJYQiro(@_f8&yZ9oeHn#%|_E~8MP_Fd4SN}8N>L?CCHJkzm|B@w<7t-BKK5G7j$tq zpu0gCQn*nx9M$5Ab4znJ7*6-9R$aU0rp`B2OZL1_b|+JryJVNQQ8XB`J%}%mB>OhF zo##zn)pT+z!_6LCFC)ll4bza7=La>_mbay*dH`FFrW3d#DOI z8;12)VEa<4E(2NTMqR$<-dh5m4BEFV-&QJ9!n@XV<>F42Gq1pW+SM3jveVOah#?j9 zb-=~R6|-e2>LL{!hC_V{(1Zwqgrhh{CGB-ov}0!(3a>+vAXSs_F2*Hfkza}| z^T~9fQ0TQ~=W$Y*4!BSL|K{XXvVta_F^anKpihtQ1CS{&OavghBeY!?#p|Z?3OZP< zEG(^Eo?9-I7H+KN=gM>Q#Zs|yhv94=RWELa^ej@i?J%6^j+I{|GhNx}FVRH}(}NE5 zcue7KyaVcQ?(7JS=n~U7Mk6XT^gT|qIYem$?8|O}W&c3vPIfr4g~)G+{_F~#ps#p~ z0z-&k1Se@Ec_K(7Lo<3KAm^*wAb4?hESuXxEH@HwW8gbd{wt#HB=HxLZR`=M!w{-R zNGXVM6mMbBWjy9W9Prfm5Tp>NaGF3STuCMjqhjKtUiVQ)1*&w5kOW{Gd)pYyJtK*b zi#15cK(@!o`h8@*FvY_e?cj|1I20_r=c}({z-5!pwlVZQ#&e{7ct76o{@d8s#{T^n z{q_gMBR?S$e(G`*)(KyOoV1OU?jWUcj-LFUMNx!K%+gz1)H@<60`q`=1>ND?FF5!k zqLHWB+^H=b63Qc8=1d??o=6Z~0dmBX>3|I50wzf>>A{D%NM=mY*o&Xoo2EVAr3rjQ zTOrKg68$Db6d7jSFBM+G6s(^3tWqAULE`4QI`zz@_onc6H@yo)Z<3;Xv5Q`+Lod~# pm)b#3?B%!VjrjBmSRe@D*jf7Rp&G&>Er#$hWs^u-=EjYN{{eq$nhO8` diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.class deleted file mode 100644 index 20c4345aea65d8e58e75432fdf3eacbde7321b6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11369 zcmc&)349dib$?G97q)B?&aZ1uyb_9eZwcEyR?Iul|9%&nTx9NS~b>jTr_l-ugqgf1Xeyx9I z=9`)Kz4yNN{_lP7d#l&J^Z73k(Kh}-h`vBy4ATI8DMUX@FNf()dc~lh3)0Wa@E3yg zWx2l^!sQpkw3>cNM!y`Q*XZ>+`W5<$JbpDqt@Nux_q7oH8vVMAz8c>38Y(LiA0#9HQT+KQQPI!?cqA$e=$q=ud?Gp9=Y(h3L=eTVeVO`pYmz ze8mdoGB7xa{mVr{f~0_C%OEy(Ep3@_}4J~8~uA2@BTwn{7?DtUk3em znBJgo%X+^f-`>Q9Da6cGGO7-7fNLOxYvp3dB^c%qhr{$5*M-^S1z^Mr!!TWah#PoO zm>YRdEEOT}-w8-MwmJ=haT!mC9R*Vk(!#>;=axYciHS zZe@$P{1g)(0>>SxY^u1Esk)_gKU1JLm$aDb2cXhWDKl>6$KvB@ylEWBCF1G*@q9|2 z?U#Y#M5@5lJ&?#{qF6vYkt-CpCZpryg$FXZWHdK^6v7L7S%qjOo|pjNLUb^d$me?U z)(I=$BP)h(AyH!x!qZHVky5sp%2@kTg%pH!XS2CtT-E?t9pwu@oXa1vqK7l-Xx>W4 zOWDMPm5+|5lGboGJq5Nk$K&Y|)Ni@UX=3Bvfmq+r7|eCVDk}8`;!{?hskx=KoJ+J+ zOr@iWWW>rQt-K-xi*TyYUrMKYOXCpT=8tR&MjSF40a?ulGJowT*=P9&^Cq02*|Y>Jd72s zOB1Gr@NukYWp*LXCdE+uuG&yXY@#EKzwrTZm0yIidqAeDl`oxHkM^t;jyP%A7qfp9Gu#a$Xh`3 z9IlyeoEJE5UFIlzbJ=1X2_g@BnYpa`(49<*TaNtSm;xEFp4LbW!6K(96O< z6B3-clH3C)tU?htD=xPM%1(pvNtF~;nqO`38iUtjTVh%QcY>m5_2=??(|~0L>6hs% z-_r$of!*KVAM^MMQd7mLXrHdvJd*TJl7e^8zdw|z2FE-qMbEht3O+*}6!YUJ~ z;@v=UzaAdcH>9>e#wx}^I4MSubb6Hv3Ii28t2`5&MJrXYY1xobR!;U{gFE*Yyc!%- z=5v`r<(RgXc?qo2iuHV%){p55-Pf|uA;~q&hBs=H;|LCf_}Bg)odrx{i?@RV_`$=K z1H)rx2a5I?#!ISjzr!B2}CivFk>r%+-qUGvX|pYeG|3a11mZ^Sxm<*lq#ZHw*W!vi4Zh#x2lyQ($8n(%8Z~*G6HL1*;Gxo~aV|}{pl5K>WQz}*^bvZ* z zfsJUN!H=5!7@souag$H;69&J>5ux1*ZD zzOn9s`KLz@p=>g;HP21l;h(`BiVEqu$8Lc%g4@0<9^&cLLsoJqolM$1<>!k<>fEfXAiXdvj^k)efA_#>A2tk^iR_Oe zOg7iqtjCn{caC3*>~itz&1ELzc~!W0s}F5zVsVcn6Fx~IfWp0r%Pt;v= zwbCWf@+54vRApXWM5{(7%B``H?xE3veZ8t5>OEWfPJ$sfRe-Hjk-AA(h+zoNt7^{G z2gcFYyYMp4L-E*^2=4LNMo;z)aWO(LRT!}{xgyf+#(Ak|{&t9^IW1v3obU8%<1@>P zSFP0ih=)Ev?|$8{?(s6d(o+1>72K!W&^@xhs0P0@m`8{ANoool=o=lwt*={d3jjz( zX0L0|E8b^azP6sfte6~xB`(Vop{KI255(AK(4?B{P9e8r=AK+W^^o)i)4JYdTIcVs zves@LW)4rHCyCh6o|`L>d~oEmLa*n1%Nn4QT!tv!C>#yHCpRI{|$&V_EcO zd(-hk!NS{3Z{>rHG7aYOl(Zg6iVFQgGzvF*Amv91ezK4l&SobSrqN7VRUzSEBSe0c zIL`u?>TJ2D(oa>I7Tg2ij{c?Gq<4uM@as8U*=Y4?-{4$;-|n)zODU#p?y_rG{S?;a z&E9TT$6_(bN{0H$YWOhI(w0N5uGpR{ZGs?4B~dTy$aUlT4lkH|aP2X(KdeQSO=Y{9 z{;@+aqEf|Ny9HTgaClcAN@ic-J~LqF6+XOYTO;UFp?{**cY8&acB{=Bq#n>flIIMh z2xglu;bLx1=+6IwY{v zMFEV6cDGFvpQkF^s%NkZwKdkx;0N)x#^4Nv4z#tsMBy2#n%54)4+8IZsT_1v z4mv6a9hHN&%2m=H)DrmX@L~uOF1No#>(A0R+B;@w!whZQ9+1)XGOCf$CK=Vrs98qF zW~}HUwN%l|)Ve(w2_lG}r8SYjMM5k13^he+)aa}Pd;9j_bCedEcA?QS(O=F`qfLF5WcKzTOa=H_96wE`F*3mS;|lyiF|*^K%Z`ICI}W;RJLm~eZl{_z zp-RZ0_ZakEgPt_#sq+7yCfcxJ?VHde;3mRcruWhNZ3vwK=)-u|gv=LJcA23YX6Qy` z9WNe_tHmAG6C72WUPBqK%04D)NKi$9)3XrE(p$FG_%Oc60-C3(^DM0tyl>qehy-4tZD(jfdq*VjGHts+ zZ`1L3lfJ=v^H(b0Rv`e8d5GVj#Rff%FP}g-XccxL1xgZZXm_Q78QSjMu|A|E=^d-V zk<_48C!6Mv(@)qOzXgocfn%rSp)*tyIHzqNj)Y-*xT*SF1X;AJT3+wKzgzKd=M3Ez z5SeooIIDHi8`WQm};{eGgXgTEEKtHK;nbcAoT{<0XcRJSZbimSySwE%x)u}Km z(CDORfqcPgr$WA9yHg=wu-&PUAA;=l^c;L0R#psARpUNqN%jj%i= zi`qD3qb=|vbuK?cH?((PkJ3TwWLxD|Y$<^Ybh{eYN`8BeHeZRjx{SCQ>?46!ks%Rd z-2&+u>X`#_n+pEtq1mSZ*q=sr`84&=XOIg&i)Bw^TYU-1;B$cac?Z~70Vt&^l+o;7 zdCE3uE#g#4lxpxR*#YnbC>K!mx2Z?vv`@A!fl1Cml&(GcaTkaOFVVJx=c(75r@r7q zu>YPXSgumlh7@9-0WYSX!4fonZ^2#g8`FgshafzrY33owG_ayOhOS}vC; z=qL|`J|_a*<>0F>y_Y)}TyFCQCwdX)tpfkg(Tpu+A7qP^W$hjj{TFF>6_zB$m6Xc5 z;(XmDVwodinImEu{B{8|f^^ZT-rFHc{;O}?bAe(nN_Bq6i&QV5V8vRe+zptt5mP^p W_f>R>kKrCB{6Q`Loc8GLk?#V(&tjec diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.class deleted file mode 100644 index 42ba56875806a26ff5802e9e2e3601467e0bd6bc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5080 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 BObh@3 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.class deleted file mode 100644 index 30b0d096880ff45e4166bf3cd8fffcfed7f66141..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5136 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 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.class deleted file mode 100644 index e0359197f733b553bbb44f91aa3fce9aef601618..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11480 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 O&RB>t*(%u#Wvpx<-R(ZQyS29V|DAj1&YhbH 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 AIsgCw diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.class deleted file mode 100644 index 589f886d84732578f4053370f59eae5cadb43eb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2866 zcmbVOZBrXn7(F)umMmLHL1=lA(pqUCfrYkOHHf7M6&t7}El5%8CM;oLv&(EYoxvIZ zg?~glQ^byrpZwsDay)l8Aukh(m=AYzpZnbNoac4-?|**#1HfGzsOZQ27~a8xif%lR z%c9(V-i0MBt5Bs(#lslBz>0z|<>rw}g^UUvs|wbn;$sD0b>Rut6=YTP;=Y2X3Z4mc zMyg)QDu_4g5=SNpHr@8}^3b zS#nMLAAH=9m#()UUPq=Q=3z?xAE z+zR4b56=io$O?hcCcGwV0_}kXf#D{_dc*W9>l^ulRpYP{xta6*st1tFdt4{rR1KDb zO@YpEXL|H(#c@n;(KbpYQzj+RNNCsf3Z`zpG#y{BLM+MM%_>A%S`iG&?1gW#d_1!t zFx~1VPh`q1v!t&qOBPl0tbu{XvN}4fmeyJ;q_?p@uk;_a0z8x2d1y~A9No7g%Fqw4 zmmS|Knj2QhVvj92j_Vt~!+SxXyB4)DU{Pa-$?C5M3S*F-;45RQUS65WP5kxKI$-t9{-^M-aOPIy#EO*w zc96Z%rdDepFZ-seP>Zm@OrnWPn4~j1odgx%4XQ;Tk=U+#-&B2WArnZosDv|(kYspf zdJDEKaF2E_azCtd>FjumYc0kiuJc=?pWiAG49f0>z}3o5mCeon9h9-xxsGzD^C|dj zpFD>6IZ(Y;Q35oK@xK--5c&ppF}!zr`Fe1|%Wba^k(UMJWtG-}KD3cbOilsHrLCVR zkMcR2ntYAurd-=Le?fcd1RW7lS(lI!5i#Sp3vjJTSrU2`GWt2+^l;n>S??eyrFSPQJ#a)fD}Y z{*LYw^hEF{;wQKqLCxRLToUc%J4BG0x#3Daz@*;crzyWk7>y6`A$_|?GXp^q3T2S;G-MqCNI6p$C_)yUhTupn>pPgdtSroR(ZY6 zOSf~n!%KH^dM&5BymYtJ@j5y7^$Wvga*Q^JARe>N;okJ^P#KZS=U0&7dc|^mZRxLhta>lboL7bb!;-oZiXl zU7Vib^em@?oZijpJ)EB7^j=QSb9#Z(`#8Oy(+4k<*treVNl&IDM7V*EoHh(>FMMlhe02eVfyFIDMDX z_c(o@(+@cPkkgMi{g~5FIQ^8<&p7>@(=RyvlGCp^{hHHnIQ^E>?>POQ(;qnfk<*_z z{h8BWIQ^B=-#Go9(?2-JfvO2=BJ`SnWBhFx+ldO4-8jCSp?p z#X`Aa6)JsJu4)r&4ke68{ef1~FgkZB9n*S^aM(zwU0%I25{m0#VqQI%(4)x+F|J4S zcqkl>5%cKhCPQIeHsX3DWXeV|9*fJK4m}z*;+V1{&>ahRhN9iXd>x@g!iY;I=I#jV z(SW?hI*cCJ+5sJ5jDu??RJp-@m_&5Mjea9;%BQ-Gctnq;h_x!6NfYyVJCfmWC>BL4 zpql}`6Cv>gjIa^HO<%x>CX8q_Bt7v3f;#++LYEv8G+>5&Dj15!Vz9#<2qmNk-at5M z!diG7h=r4pj-)gy5Q`WIc{83e6H=Y0GagTNhL93NHxoUWsNt^H=t=6)7>2tLSs4@~ z9t#D~nA)X>12M$M>xXkeI*G>qJomI|8d$tuS`< z8u3sBzDN&io$HU%xo+i=oom-m>U1N*-O~A>fl5N+IT}65uz_&4plNo*lYt)TkT)2M zhjz*w`hrPBEMkNuv<9UM@mlRTN$ZIP^+Xa6ghL%hJc01I!>Bsg%EQSHBW(7_`67C^ zQ?S!eGMy;dsNSLX;p*IzCSc0u2rAi#hGb!TA~91Bp(4GJSR!di9nFzgGMWg+Vldn9 zwBvdx>O|ik#XPa7sVDnFvVNjQe{U=)O^T730pw*f0#>ag7@af}LwOsDBb&ca4xg>VOJYoj+9 zgO594Wp60ljm$bN)Snae-dGq>K{j}A+=ztqD4dwu8xM6Fu`WcdyWepiH)AL$XJy9q z9v$KL#En2Kj?j4Gp?-A12UFK~Lb(YgAzjAQ)O&*=1lnyPW0+%_sUu$7&7M$WnRrYr z(*P#*n4w4@hK1`jvBl`!(CjmjS1e6EfbJ<~ESW&XMC&_5vl;6%;zp<&;c}aZ1axq@ zWaTb`gqev@peJl#ACcOpmit;7&DeiBLkXu0T3~c<*yuI%IEuq7UFb1nnIyx`F2(zxHmN&V=+{Gd3iF~7F{Dv4 zE6zgc*W)NFYWY0ef?Mic!ywDK$KE?Pbi`{_P*AX9tq-pW3(q_z)b3mtz@lScAq^+j8HS~vTYB_ zCu$E=E7@Fo&?;vl)+kQmj2_q^Z1mfi}`k#Xr+tg%BsQkfr0X_ zd~vY7II!DJSIX^xILULS4!iE9UrzU(sL*{ana%QHSK*+VS)|2m7@ z7&fPK^-alV7OSPS-IbMF&~%yfi4A1A{7UhYNeMq~ryf5=rRbF+NO*TGkb~#fYNIqh zKU-{v~9#@9^(a5du9mhQF(^gsmB;T zkse|vV5-_n&1!)F7=zl=Dkel%5n^jYD!JizJ6heHJHzqtek9R@DW_a z(&bhjufkjoLGV}?SF<@wHcD1rz7IWCwNxz0o&l>+uuIq%2hzjE+#o)t;lV(*Qn5>t z@s1zBhc+t8Jy0C5N3g*SKnJRS7~v^Hl^eVVlZb(mJ!Y56@~L6Fl(!1w_$p93t7XjR z9jNAV*T9h+c`Uno4&MNsMv)9>R&>}!ZD)&U2;gqh8gmyOtw%g!VY&j zTag}k)46IH*2?!pF^2;|RT_n&u`BXsX&k=_K%Hl>RH_bUad5D$a%BV)HQe>uBUKA) z4?8AamNF=IshCZpF?GnwrHhD9c_^11&R|6IP_|Td9>sh^)#2fsU4=28VJm0tg~PI8 z7o=IkIV+u&X1Qu{Y_88Ihx;blG9)d-C9Fyr7isYf$LmtXs^(=9azmwR2JePOuMn&p8~ zH9aC7@@9%96fd&j%Ty7uyq%NKnvpJ)YPI7eZKRmNK^70>vN)zy5FU39RR>#nt~y}n z$|G{Vyfy3;>@<|jAWF7i4PfKMDNf##CSc0uJSy2PWMyG{^2M^1MMZk^#Y)wdI-2vv zYN3*G4hDXwU9zx|N+bLQ%!8kXtm>Yute=8CHd-vnOcrp-3>L?v=}y}&6>8;*ISNRv zQ$WSscz#sQ=0-)y__&Ir(gQbQAid_JNb`_WExvklSiU)1>ag1>ag54k%TCjeoaOAs z3gHgc*2ZY22p{*t%F%3Y7@2iis6Qv_qs1Jef^6{7lAX`ur!ExeXem2r7l-7JU}KK^ zxLHI&IV-bdjaUf3r(~y#C1li7%8sE6K9ntMAC#A&Bx}i-maWlD7U6Q2kul6Mt!yD) zyUQcl#xn7gu}ssL)Kkvp(?xk2D`ShXhN0P4MqaTrtu(r)l#A60DyC51A)3p@J$A{) zXN}a4NI(adOIGe8$WXbGO^@Vk>?2b96db;@Wz1C{*;=lQqZkT`9o0PQLfU~w7LWMK zRYcLsjb`9m4V<_*L!b%~b(hC;dvMoNu`8^57bsICkta% z7EfVbH1f7IN@m4bC}UO$Wd+}+jb*YGRHHT6@Y^?rHGoqvb_GOf+#1Q|t;XKhI&S4N zxZfD<8Mk4m^ll$&s)9Ylwa=EB_3RtRNJkX)V||D_Di)9vch)utV>}D0~$(Ie|ay@HlZ-IXu?8 za1wD2Jr#Rzr9FZgw}$PmB3?DJDB*z9*l?UCD(V|QA}>73vqz4T-mN_TQ^~}65J{W( z5U3yPaV|Y{zN;H?tOK|6$fikm2jsVM?Tguo`SG2VDipd=B_? z3U32{USS>l1%*4nUsN~%{*uC-;4dp|fWM+}7x=3RcZ0vCa1i`;g+t(PD7+o~O@({F z-%>aX{e%thrxeSI0OE>!ddV?6y6Q~r@|xPe<_>;|6Aca_&*94 zz%MFX1iz&4DE?H=6uuZt3YWl|!ewxi!WFPf;VRgz@E)*7;W4mR;k{t4@Hn_x;eBAA z!k2(s6uuPfSNJmU6ooGbw<>%Ec&frzf~P5b6?nSBSA&JZ*MMgzd@c9{g|7pjsPOgR zlN7!IJX7Ht!Lt;;2|QcjSApj!{A%!Ag>MGWQ}`C}$qK&)e2T)if=^ZWHt>9fZwD_> z_zv)C3gi7mrz`wg@EHo<1wK>ZyTNBE{5tSLgGV@S+Wy)A+CeE$GyV#99wwF#&vWiD<~qQ%C&5IG zXK6*Q7vVCw3j}3D@K&HYiVA)OaF@W1swI?g8fB&rT4YrstXW zAmh)m=G3#y_v8WAA{A+lv4Xi^_ZH?smZu`KGf5{4cbgc^tZN^DJwZy>1E%=wejEc; zpAC#0B)dNHD&}_Lv*sZ4?`N%IO5F~E1zOuPtaU#VVyX+qrJCAI7&vib+WXmbX#LKoE)_>*)iPnuiIdEcH(<_5lcQ6HITe^wg*kg+&N$532Xij_FXrSL z%kpy6Fbb0`LJi-;Tu&WfGke-z*xa;b-rR@T^tO2`qstDmS=Vax=u5wMJ>BeTOK9mqb~64uCAv(Us*E|v=JzjM_6%Df?`?F=c8Sv_ z-#y4q-{_w0Zac`%a7NE|Kf}(H>q9oq>Oa7m+Mqx-Ty3*mwN^{pQrS4PTXkSlV{|iX zrCZo6x|N+mx5M8%*c!T%ZKS){HoBXcbPr3>ewL=|OfYJ>bVp}rGOeU8mYxx}Kj18niLtZlNI#}qYF z9aH7|0)IcLt62*(HGG*euxGE>t$Vl|{!tbycWEo8G;2k8^*AzQ=-NWa(!IYn%O zY!#a!r;06*)5KQD>EawnA+|xz5IW=uq66|o5r8~NbVAM)2IMT!1vy)EL(UOF$hjf} zIZtedJX!QWo+84Kr-}&Vd=Z6QAYzcGiC)Ol#kr7Yh&be#!h}3aBp?@xB;+E|2f0}E zL$-+>kV`}ga;ew}xlEh~xm=tN*)A@CJX>4{xkBuMTq!PsTqP{X)nWj0jYvbT6@!rL zgble~3_)%X!;l+A26B_gLT(njA-9MT$gLs=d5*|KZW9GaT@)cZ#3*DyTnyPMN|1&q zLw1P@WVfh72E`u8kQjs9F7`t9h;hiU*asOAmq13vrI0ak8Dy`x9P(Uo1!P=Y32BO} zAQR$h$fURivQJzK*)Ohx+##-qOogA@N$sVR08^M%)dV6|aNbEnW{fBJP3AiT#jyaW7;+ zyaBQ(?t>f^_d{MR9)K)~2O-PiA;^k&7_utf2)Rc*0y!q$1i4qd8FE}a3b{|b1@aQ{ z804kmt&o?Aw?SSm9*4X_JYlA$vn$2h<>e~z4tcp+JSi{Nh^OS`T5&*Lt`kqo%k|=& z@^XWCm%Q94o-v>Y^o0y|lDx SCoO9l!~vb?3TJ1z^8WzB7Wv5l diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.class deleted file mode 100644 index 413c4e5bbd5f0e02fdfe8c93b5fe200445f46b9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1641 zcmbVMTW=Fb7(HVfuj4LFFu6cOOMn87ldv@jlqPAoUrbG@k}8F#YHUxOrS`719!KI2 zwXdyILexlo>_dN4!Or@ z^IR6p?phw#@wI~+dE`(w%Qt3OG^R@qmUH;l!HR>M0>>lO^t(Ee+7E-Sz{%(!&M)AcG^wVyD2tID!au^Xvw z*o*3FmC6Ouve6Kz6f1`)`+o$Pw$f5SRG3#s>P;4DP0RW(th`OYcIp-z?clb+NK@(6 zgDo2?PRC;2YufT*_|aQ6Y?E+%kC z;Kabxxj2D>i&@OM7{fS|cX1c@1SYJhowazd?)3atLq#s`&hfn& z;fs_)!E_9KLhNajd-jd{46zBE;(D5=XGqf)I8}NLQQAf7`D>(KAyb;!!Le7!{$ag8 z<6596;Bw88qrey^F-c@R_Qx4~&J!cy3u3%MIE$%-@p`D5YzNIZQ_4A}72`*SsUvfW( z)E+J)?ckzta0w{~mmL)M==>Jr#$e_%FpUz4Ol3Rd0E~jMd=A28o8a q&@)uZTf#3U$O^qokkKU5!l%r!6zBPV%&ESZqqxExKwr-?fAt3Fu!t-G diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModels.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemModels.class deleted file mode 100644 index 5ff55dfa5fdf0fd695ab2f1cc48446548cfe309a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4651 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 diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.class deleted file mode 100644 index 16978447f7e6723e4d340565b7f9f0aac0446b30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2073 zcmbVNU3U{z6y3K;JLzQlK^qDcEYPY=)51_e5sM&HD}|(Ji≈$>fp@OlELq+GT%= zzra`JAy8b)d^3kj*IwE!(0ZJboAjP9hY%MEg$Q+ifcON z@ri~{H7p49Tyi`ox-5{&Ppt~1=lzNl7$`cPTw1G_WpLXnyOazSecN(Zt-w*|EnzyU zIibMCqV3nsz9N(iSeI=GGII4(8T1hrba7INpFoGi*t{Ygy4GlL96j9Q!WZ)J)XJ!Vzz_NiA z+@_CxDq>(969&G-s)nx&e2qIA?i%<8-wIr5w>fYg0=*RrRExVSSRAjI%tRrp4%^Vm~t6AZa z{4t7~?=DI2#fMx|Kjvgo25Kvhb(guYN;|+5DdBB@3x<-gg{v}3NEU1)OrNCRb|S<@ z-Gj6f|3Qs_B0p&uc5xfz?KYasCqQ>L*KUdG$FcT^TMR8V8(+X+Iy;WzyK?C?VNLqt z5~zX0qH~(e>}Ryy(aCsH+BDDaiD?gAa+HyjRXhbsGOVc?Hv6yPI!qYz^y_1G7zo_k zf6Og*JobURer{?Nr}%q0%wG|Zf>2Y6>rtLeeg(hXg{Kg|a?^!Tu063(!yDWii2{z{ zI8VKJbKCeA-gHrR;|aPNNNpl5aI>(9Zh@bWeZkafC^V35z$pHPzB|)H{ZBDadWOLU4mB`TNX;}b+$zinx@j_m3L0CRHbMXZ diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/items/ItemBase.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/objects/items/ItemBase.class deleted file mode 100644 index 844bb64046266624e357c62b9409a6ecd1d2d9d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1579 zcma)6Yg5xu5IwgA(w5L-<>3nz1Z{&56;QE=+RCF^9s<(QFHV|XYM3Trl9aK|_@m@Q z8Fj`V;E!_Ln--z89c`wY``CNV-rckL_51rz0JC@#K^&tJ#v%xa_pK1d#c)EH+YwyA z9bpn-B%z4WWEgib)r)DUVcf(05FSJ@gINi45*|u;#L%-~ScbRAFqp{gYloUz)~u4c z?Ky^3N+ow0x-xc=GsJR+#n&rlfjc`|p-e0BoULo+UClAXys_BjeKcGKHK*IA>S%kK zZoA%0Q7shQ52jsI?ZQ6SJy$h6Zn|ogY+7@9ifAm&^g&yKV2C=rWVjx8)+m%R!3Pr} zvdFewadf_Hh-mswu%-ooi~(F{7(Ne{t{CMacNiu*#8>f*vbx3hxWg@-U_*_-r)50G zyo@JE$ymTs8H;!(;kk?#NXy9JrGzCJ%UF@HDkFTtof*tR04bj2APnHG@-PxU`HHyE#UMpYHIqDw~nBNe8SE!S; zB1xjD_c#0&O(owmjC3HR#E`0p>ATEWbuytRU-3?>? zSAG#jXZ!*FD93Yl7ec}^q?y^hckiC_oael5{{8Q-e*i4uM;%jmq~TK?pW(5N9O^oj z@i`x_=y-ysynDvGRUHj{!H;V?*72o=uQW6Tip#cVM=Jso)%hKPe8cZ5fy*u1Q=5Ia zqk`vV$Dxx-%ePEt#|&(KP7m|Zo*fD-v@GA1fw^m1ei%LI%1$Tz#r3;#Kk$EhB^!>d zyl9K}b%85^>e*qWf@Y-Lw(`0vP=SD~wmcO{m+V@E6iJ(2OO~lOTQAK6Q#z*CliN{X zd%b#0l_dnOpQ}gSxGFLQ1o@e>yX?dnBmr$dP)&+~!0HHxT|ek4x$8QT{BwOzssnOF zu5Yxq5*6EY?BC7E_PsTJ6VnnDtS7^qUK@v)b5;mwY)0%s7M)9`l&thSJb7uz^j6 z`&Pr2f$z{Za1*yQZ1Y++a0l=6t*n8pUgeVyFstEv13OHiI_^}uP&DrTcz|j6fvRQ5 zw=>#%r25-=3n14l3?op=u zG(AaL1+9gJLx?|UlS3sH0`1eS z{s@Hu68}K}X-<JlE5)-{ms569m2bV~1 zfNY!~8-#o}My5fKBCn*#MMl0fz)XTMN0`-9Sj7{pB4N!DMv30f6UH=o@-bbUAquN8 zigb@WUyPBGB;_f*HIltY7w37A)(PCFdyX>Ar=0f(bS?c1q3{VF#`rp&e2A~{(QN5| DGTyYw diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/CommonProxy.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/CommonProxy.class deleted file mode 100644 index 5e80b968bc24c9765c03d19e3fea768286381fe3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4767 zcmbtX`BxKH6#gEIL*ghBl~b)!7eJua!3DLAMM(rr8xRRgwF{ku0Y;J;Ix|sY_kFM3 zce}4YmLHJTbNUDLkLu}tZxS-V41`n8$;`a_-u>Qpmv`^upMU@Q8^AIA9!49+!gvIi z!l=dN5FW*25+3IR5SVa(zw304?8xzw(MBOxEcRa^_B3D>!5fq&iLvZuLnfqy;26$%ob zmGB(HhEuwsJKYS`ZSA8BHF0x7W2jH+hBlDTr8R3IPA}!OZX9CHqe4IxGvXHb(K%Hq6+Zxmx><^->z#PTTn39eetgbU$|nefVRI>i zVp%gYV@r5}cn%e_ia|~ohGxaHs%>kOoX31=yODI2tb&MMa|uF(u~w{LIPAxFRc(gG zrDvruTRJZT>jhgDJtfU8R)pQrZaPe%ls;vsPTr!VySQ#cS4Zb(Y{yXEaP*uus@pmp z`yRtE9g*+k*r=Z|%MZ)6YD{D`OG)L^cE-}vns7BS-&6`BKjMUz^g~jihr zh5zjgFCKSAIA!LojMk^~YPiKy(+=^PBH<+}FT%K3-d?np3fpl%!#r;4Hz%4`>P2O= zqeH^WGG0N4j92;KH5sqt4Td8D<=-M`sebxsQ5BI#78nd#wQG&0U9OVBD-ycJfdYqj!XEI zv;K?xX_i1@IJ-`SVG49FCBIYfUq)k#cGcuGR zTZ=t#Jja=&1rrIM%lHCcR%}kjG#r)ev5E!_s+pPfnd660wv3@+3C&r;XV?|ch>Icl zO2*f?#q;wU8QY=s@MbN%Q(n{NLx=prZxQ{aJ5C?JUr-V69qk<$ z9*>Qr7`oP|7QzjsqFO2&RPT=ZZ0E7wSB<)+wb(Vcw|VYHZY)F}>{=a|X0Msnj56T9 z%l6kL22#U41Myyl6KmKMfI(L64#=cfEJa0v`0Ix4sN%fc6Lbf4*AiHyWGt1Y^KM&W zIPYV2g>(~T9O0>rQ<_t@zq75~569(T=~SW;BK#!{B6!fp)q(4&vG}&QKn1F0RzVP5 zBUg$D1?8NY(@OL_?(>$9RmX;LH*i^D0~Fk>XW`cRhwb2&q7bFqLYoiI6(hJ^FIlU z--PISFO3v>GkVu{+y?uDKB{n#o*RU4H}0cv*5c=iNo~d$_e__aM^OjCZX8j zP8Jop>Jc0jVANdDMO$&%ahyOky-(tPdUDt-jrm;j0;(2JJ%^e*sJ(O>8|EP`piYcK zG!E0ayz@>X4YIQu`{-*wwxSu0XrZrG!KTs0Tx8RX2N0zl8BXEB;?4!^Szt zcd&`J**uT>@-|_ypdDMth1@$XY{MdK1HpC+*wZ*ugzchr!q_s5>)?YP2(}2p2%?8n zLx`b|?BPDSDSQN+?wH4xJ7^$Ykw3Au3hsCtjkk+&q%m^W0(Q9Kog}{774M4dCNU>a zEh6l?tCQ?Fj6D>X0~DGQ6qarZOgZYOaSrE6hez7Y11@=pMi0}k3Q6?Sn;SDg?-1RE zON4KcD|up#xJ;TZ&EcNg*h9~G?48Fx4|zVfU(D^FNAt?L7BSZ{kJi#$*^G$Dv6I+E z*>jToHcT-s(;rzupGyXbmP`NQ68hB`qM0hB7Nw&!?xkOZq;Witvt;5hUc^Xi=s(z( BlBWOw diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/GuiProxy.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/proxy/GuiProxy.class deleted file mode 100644 index fbfdf8f04e85798b5fbcbcb24b25710832e4e14b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2554 zcmb_eT~8ZF6g}gwwYN?nC6qd}X#)8$G-OEAPaKjK2gtT2K>|@BwW`+Z1vcz@(Rv}F zKcesLub@&@OGT>E*Z!cswd&cmy|$M?-Lwy$y)$#?+;h*&o$>E~{qie-_whu<1>8~a zo{9wSsvP-1!G{Vy%Hd;tq9TJi1tkUdROB$P;J%7H9w_)!#rdHBnSuocWr55+t8V%C z1(L<74S`hIt(gKt6{~JO-gl~|x2{)hj=WxR4c*?*JuB$92UGrz)eyK@F)AE=Wzd#1O`EDb)em%O>-BB}i23jPmMtCK-;oQpYwWJNjewg^ zaj(Zb>1ehot)MzHaQU=zF35+WJaieVvMWT?m1t)3(YD z#cIfEK&>I8#SOV)8J@e!xLq7lQPbd5tx7VB)L@q$m4-QB0@bh2*Oi)3W@%z7Z{G0q`;lNv$5rR+os%dY#uwuaqE(^ zEUsOtG0r2sUb9V4V6tzG^j}sZEb(G+3-Bf@^t<;IE6*z{rYo<2R*V(k$-`Qjin+Wr zJ`1DRANTZ|MIdL@4><37yf$WH@crwwj$`{06ma5{BP^*!-lhMi+5p!4GMNC4tieWyzd=U8#C;8=F$99xG$*7)(kwyY< zu+4;n!x*ETZ#m#i6xb8EgmJdP;y?IK=lI>MHOy6RzdjYkH*N(&yk&_{tOXLHR9wO~AMt+B* zvt+YQCIQ2*S}fWO$p>%Y?U3~bF4H>^aKshLkPNK}&Za_Zl2$sjuF=Xc!ZNPo1{C5x zz)cj9#T4iBNc@Re1=9-Noh0(Djt1faW2^Kq`qDU|!PPMLx!f`Gn+3LQL2^{1iF0j1 z&YvO3P_H1DNf1nEh$)R>f+6nX~HLM#MZ$)8J>tbru!;Ve9WhZ3_EHp7E?F!TOA zUjVk4GBAb-VIE9lV>03BwQ-R!TGbcA?CkrX%+5NKox@(lU%zg}LlBnAcRYxjP(G%O q=2FIM=QZz>b^I?A7K6^6xHtSHTcc7%AQbrlKxN)SIS|G<3shg=g(q_W diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/Reference.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/Reference.class deleted file mode 100644 index 015cf2813c0609cf6cc20ba5e1653b0bbd2cc7e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 697 zcma)(O>fgc5Qg8)rwQo?0Se`-DYQ^H*ax_QkQ&z@3p=Tt5{}i{*_N$rFIwA$3h|>j zA#vab@S_l8D@uKX%V?gN-FIf+{r%_XF90v_xQ8Ylbg|XNkfH5Q4%`EVfp^BwxfS#D z)SBj6rl&6%R&14KIZyK$j|*X7o1rz{_ZlEu zizF2Kh=(y%2A+y|JmXrHyePKvk1}I;;zcU4G(X{y%JS!PD-5&aM9r-tm$4Oy6QM;K z33^{|stO&6H?ovmU3SdUiau^)gJJi-v>4Ve?VE&WBFf32#axDskq~+~(&Dqw7sIJc zikRn0(*iqR&xOvUO20Ae(J1qBZF6zm{G`>F3)7CJNb|!o|L0MaBr2_rVjB(mZlH@z zw9qEsJ4B6&jT&E}ey_$?iTgEPAzrQV8u2==E%gS(*K2%(I;^yi;w_qJRSdMB{Q&!3 ct#F%ShsvPEHYxV2yp21!OT=)GVgvX80=OoXXaE2J diff --git a/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.class b/classes/production/bbs_mod_main/com/rafacost3d/bbs_mod/util/handlers/RegistryHandler.class deleted file mode 100644 index 3f72918a40570c587891c6a682fa4bff137eaf38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2228 zcmbVNZByJ-6n^e55Oy~$h!k9{+E$7S#fIA2s*5N^kku?Gi)h;qPBvVY)NIm8vK{#Y z{)heoKkEmbbw;Ot^*{JW97la_(y*Ixfx*n=<(zx(InQ~{OMd_R=U)Nb!u=x7!zf}J ziv`@kn;LGGsD4Ys?Go%d$C8HkN+@Aj!}}UO5ExlDxW<9y?YS}tjcwU-!YDZ0NEB6p^S)P$WII`qfrh&Rqp2jI*E~-KtF9G>l5TEQ zOixBeo6u}Ji}wAXB@OvldeM>XH6_iYCaNl=;dqC@jWeGXn94?d_$ZCsJgc##>;c1J z+=dFix=bPp4X5Q1_Y!)arO;?}nxP#yO&QZn++)61XTi8B;R1ICqPJZ~Whu#3--+Nbu@sk{qJ&_x zfcl7H1!UI}u&3D;IM;|Q`|G;(C@xzKs{+M_-wABF?x@ zhDL2&wLu!en#TsKYS`4Vg->;ShHb{Hqk$bApM%A4^`u^{ZCGKP9vxp`oZe5`d|YD- zj4J{S*YaA%R`a2>BMn~)7@1&C?_Sa$+li+LTP3g}pEKefVGXc!Y61jGEg7Xm2`pCT z&O|NCedZWC)Ci56xyBDpoZ8M>y+Inx9)6RfPffh6MnH@Fl_0PV1uB&X$^Jgxs&fN$ z0t*A;Kei+ocd{mf71vcA`hQAFb?7KNG)@8sBgyN9k|u`%Y6n)hDZe2L{Gr_E55Z8lBtmLFM^gq}wh= z1Hq)$ diff --git a/classes/production/bbs_mod_main/mcmod.info b/classes/production/bbs_mod_main/mcmod.info deleted file mode 100644 index 27270d7..0000000 --- a/classes/production/bbs_mod_main/mcmod.info +++ /dev/null @@ -1,16 +0,0 @@ -[ -{ - "modid": "bbs_mod", - "name": "Beer Brewery Simulator", - "description": "Base Mod for Beer Brewery Simulator Modpack.", - "version": "${version}", - "mcversion": "${mcversion}", - "url": "https://github.com/rafacost/bbs_mod", - "updateUrl": "https://github.com/rafacost/bbs_mod/version.json", - "authorList": ["rafacost3d"], - "credits": "All rights reserved for rafacost3d", - "logoFile": "", - "screenshots": [], - "dependencies": [] -} -] diff --git a/classes/production/bbs_mod_main/pack.mcmeta b/classes/production/bbs_mod_main/pack.mcmeta deleted file mode 100644 index edbb563..0000000 --- a/classes/production/bbs_mod_main/pack.mcmeta +++ /dev/null @@ -1,7 +0,0 @@ -{ - "pack": { - "description": "BBSMod resources", - "pack_format": 3, - "_comment": "A pack_format of 3 should be used starting with Minecraft 1.11. All resources, including language files, should be lowercase (eg: en_us.lang). A pack_format of 2 will load your mod resources with LegacyV2Adapter, which requires language files to have uppercase letters (eg: en_US.lang)." - } -} From 3357e33abae73fae6385fb74277358fe9dd8b457 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 15:27:51 -0400 Subject: [PATCH 06/23] First upload of 1.12.2-1.0.x --- build.gradle | 27 +- gradle.properties | 10 +- .../rafacost3d/bbs_mod/blocks/BasicBlock.java | 71 - .../bbs_mod/blocks/crops/BlockCrop.java | 290 - .../bbs_mod/blocks/crops/CropsModelList.java | 33 - .../bbs_mod/blocks/crops/CropsModels.java | 81 - .../machines/aluminiumpot/AluminiumPot.java | 139 - .../machines/aluminiumpot/ContainerPot.java | 100 - .../blocks/machines/aluminiumpot/GuiPot.java | 42 - .../aluminiumpot/TileEntityAluminiumPot.java | 289 - .../fermentorbucket/ContainerFermentor.java | 103 - .../fermentorbucket/FermentorBucket.java | 129 - .../fermentorbucket/GuiFermentor.java | 41 - .../TileEntityFermentorBucket.java | 228 - .../machines/pelleter/ContainerPelleter.java | 74 - .../blocks/machines/pelleter/GuiPelleter.java | 39 - .../machines/pelleter/PelleterBlock.java | 89 - .../machines/pelleter/TileEntityPelleter.java | 69 - .../bbs_mod/compat/MainCompatHandler.java | 13 - .../bbs_mod/compat/top/TOPCompatibility.java | 51 - .../bbs_mod/compat/top/TOPInfoProvider.java | 12 - .../bbs_mod/creativetabs/CreativeTabsBBS.java | 8 +- .../rafacost3d/bbs_mod/fluids/BlockBeer.java | 70 - .../rafacost3d/bbs_mod/fluids/BlockWort.java | 70 - .../rafacost3d/bbs_mod/fluids/FluidBeer.java | 17 - .../rafacost3d/bbs_mod/fluids/FluidWort.java | 18 - .../rafacost3d/bbs_mod/init/BBSBlocks.java | 29 - .../rafacost3d/bbs_mod/init/BBSConfig.java | 36 - .../rafacost3d/bbs_mod/init/BBSConstants.java | 2 +- .../bbs_mod/init/BBSCropBlockRegistry.java | 31 - .../bbs_mod/init/BBSCropItemRegistry.java | 45 - .../bbs_mod/init/BBSCropRegistry.java | 440 -- .../rafacost3d/bbs_mod/init/BBSFluids.java | 34 - .../init/BBSGetMarketDataFireBase.java | 68 - .../bbs_mod/init/BBSGuiHandler.java | 53 - .../rafacost3d/bbs_mod/init/BBSHopsTypes.java | 160 - .../bbs_mod/init/BBSItemBlockCrop.java | 22 - .../bbs_mod/init/BBSItemRenderRegister.java | 22 - .../com/rafacost3d/bbs_mod/init/BBSItems.java | 76 - .../bbs_mod/init/BBSMarketData.java | 53 - .../rafacost3d/bbs_mod/init/BBSRecipes.java | 14 - .../bbs_mod/init/BBSTooltipHandler.java | 37 - .../rafacost3d/bbs_mod/init/BlocksInit.java | 11 +- .../com/rafacost3d/bbs_mod/init/ItemInit.java | 25 +- .../rafacost3d/bbs_mod/items/BeerBucket.java | 176 - .../rafacost3d/bbs_mod/items/ItemBase.java | 33 - .../rafacost3d/bbs_mod/items/WortBucket.java | 110 - .../blocks/machines/MicroBrewerRecipes.java | 165 +- .../machines/TileEntityMicroBrewer.java | 114 +- .../bbs_mod/objects/crops/BlockBBSCrop.java | 11 +- .../bbs_mod/objects/crops/BlockRegistry.java | 6 + .../bbs_mod/objects/crops/CropRegistry.java | 24 +- .../bbs_mod/objects/crops/ItemModelList.java | 6 - .../bbs_mod/objects/crops/ItemModels.java | 11 +- .../bbs_mod/objects/crops/ItemRegistry.java | 12 +- .../objects/crops/ItemRenderRegister.java | 8 + .../bbs_mod/objects/items/ItemBase.java | 60 + .../rafacost3d/bbs_mod/proxy/ClientProxy.java | 2 + .../rafacost3d/bbs_mod/proxy/CommonProxy.java | 32 +- .../rafacost3d/bbs_mod/proxy/ServerProxy.java | 7 - .../bbs_mod/blockstates/aluminiumpot.json | 43 - .../resources/assets/bbs_mod/lang/en_US.lang | 12 + .../bbs_mod/models/block/boilingpot.mtl | 16 - .../bbs_mod/models/block/boilingpot.obj | 5280 ----------------- .../bbs_mod/models/block/hopcropblock.json | 40 - .../assets/bbs_mod/models/block/pelleter.json | 6 - .../assets/bbs_mod/models/block/pelleter.mtl | 16 - .../assets/bbs_mod/models/block/pelleter.obj | 4253 ------------- .../bbs_mod/models/fluid/beer_flow.json | 6 - .../bbs_mod/models/fluid/beer_still.json | 6 - .../bbs_mod/models/fluid/wort_flow.json | 6 - .../bbs_mod/models/fluid/wort_still.json | 6 - .../bbs_mod/models/item/admiral.hop.json | 7 +- .../bbs_mod/models/item/admiral.rhizome.json | 7 +- .../bbs_mod/models/item/ahtanum.hop.json | 7 +- .../bbs_mod/models/item/ahtanum.rhizome.json | 7 +- .../bbs_mod/models/item/amarillo.hop.json | 7 +- .../bbs_mod/models/item/amarillo.rhizome.json | 7 +- .../bbs_mod/models/item/aquila.hop.json | 7 +- .../bbs_mod/models/item/aquila.rhizome.json | 7 +- .../bbs_mod/models/item/aramis.hop.json | 7 +- .../bbs_mod/models/item/aramis.rhizome.json | 7 +- .../bbs_mod/models/item/aurora.hop.json | 7 +- .../bbs_mod/models/item/aurora.rhizome.json | 7 +- .../bbs_mod/models/item/banner.hop.json | 7 +- .../bbs_mod/models/item/banner.rhizome.json | 7 +- .../bbs_mod/models/item/bcgolding.hop.json | 7 +- .../models/item/bcgolding.rhizome.json | 7 +- .../bbs_mod/models/item/bittergold.hop.json | 7 +- .../models/item/bittergold.rhizome.json | 7 +- .../assets/bbs_mod/models/item/blanc.hop.json | 7 +- .../bbs_mod/models/item/blanc.rhizome.json | 7 +- .../assets/bbs_mod/models/item/bobek.hop.json | 7 +- .../bbs_mod/models/item/bobek.rhizome.json | 7 +- .../models/item/bramlingcross.hop.json | 7 +- .../models/item/bramlingcross.rhizome.json | 7 +- .../assets/bbs_mod/models/item/bravo.hop.json | 7 +- .../bbs_mod/models/item/bravo.rhizome.json | 7 +- .../models/item/brewersgoldgermany.hop.json | 7 +- .../item/brewersgoldgermany.rhizome.json | 7 +- .../models/item/brewersgoldusa.hop.json | 7 +- .../models/item/brewersgoldusa.rhizome.json | 7 +- .../bbs_mod/models/item/bullion.hop.json | 7 +- .../bbs_mod/models/item/bullion.rhizome.json | 7 +- .../bbs_mod/models/item/cascade.hop.json | 7 +- .../bbs_mod/models/item/cascade.rhizome.json | 7 +- .../bbs_mod/models/item/celeia.hop.json | 7 +- .../bbs_mod/models/item/celeia.rhizome.json | 7 +- .../bbs_mod/models/item/centennial.hop.json | 7 +- .../models/item/centennial.rhizome.json | 7 +- .../bbs_mod/models/item/challenger.hop.json | 7 +- .../models/item/challenger.rhizome.json | 7 +- .../bbs_mod/models/item/chelan.hop.json | 7 +- .../bbs_mod/models/item/chelan.rhizome.json | 7 +- .../bbs_mod/models/item/chinook.hop.json | 7 +- .../bbs_mod/models/item/chinook.rhizome.json | 7 +- .../assets/bbs_mod/models/item/citra.hop.json | 7 +- .../bbs_mod/models/item/citra.rhizome.json | 7 +- .../bbs_mod/models/item/cluster.hop.json | 7 +- .../bbs_mod/models/item/cluster.rhizome.json | 7 +- .../bbs_mod/models/item/columbus.hop.json | 7 +- .../bbs_mod/models/item/columbus.rhizome.json | 7 +- .../assets/bbs_mod/models/item/comet.hop.json | 7 +- .../bbs_mod/models/item/comet.rhizome.json | 7 +- .../bbs_mod/models/item/crystal.hop.json | 7 +- .../bbs_mod/models/item/crystal.rhizome.json | 7 +- .../bbs_mod/models/item/drrudi.hop.json | 7 +- .../bbs_mod/models/item/drrudi.rhizome.json | 7 +- .../models/item/eastkentgolding.hop.json | 7 +- .../models/item/eastkentgolding.rhizome.json | 7 +- .../bbs_mod/models/item/ekuanot.hop.json | 7 +- .../bbs_mod/models/item/ekuanot.rhizome.json | 7 +- .../assets/bbs_mod/models/item/ella.hop.json | 7 +- .../bbs_mod/models/item/ella.rhizome.json | 7 +- .../bbs_mod/models/item/eroica.hop.json | 7 +- .../bbs_mod/models/item/eroica.rhizome.json | 7 +- .../models/item/falconersflight.hop.json | 7 +- .../models/item/falconersflight.rhizome.json | 7 +- .../bbs_mod/models/item/firstgold.hop.json | 7 +- .../models/item/firstgold.rhizome.json | 7 +- .../bbs_mod/models/item/fuggleuk.hop.json | 7 +- .../bbs_mod/models/item/fuggleuk.rhizome.json | 7 +- .../bbs_mod/models/item/galaxy.hop.json | 7 +- .../bbs_mod/models/item/galaxy.rhizome.json | 7 +- .../bbs_mod/models/item/galena.hop.json | 7 +- .../bbs_mod/models/item/galena.rhizome.json | 7 +- .../bbs_mod/models/item/glacier.hop.json | 7 +- .../bbs_mod/models/item/glacier.rhizome.json | 7 +- .../assets/bbs_mod/models/item/gold.hop.json | 7 +- .../bbs_mod/models/item/gold.rhizome.json | 7 +- .../bbs_mod/models/item/goldinguk.hop.json | 7 +- .../models/item/goldinguk.rhizome.json | 7 +- .../bbs_mod/models/item/goldingusa.hop.json | 7 +- .../models/item/goldingusa.rhizome.json | 7 +- .../bbs_mod/models/item/greenbullet.hop.json | 7 +- .../models/item/greenbullet.rhizome.json | 7 +- .../models/item/hallertaumittelfruh.hop.json | 7 +- .../item/hallertaumittelfruh.rhizome.json | 7 +- .../bbs_mod/models/item/hallertauusa.hop.json | 7 +- .../models/item/hallertauusa.rhizome.json | 7 +- .../models/item/hbc431experimental.hop.json | 7 +- .../item/hbc431experimental.rhizome.json | 7 +- .../models/item/hbc438experimental.hop.json | 7 +- .../item/hbc438experimental.rhizome.json | 7 +- .../models/item/hbc472experimental.hop.json | 7 +- .../item/hbc472experimental.rhizome.json | 7 +- .../models/item/hbc682experimental.hop.json | 7 +- .../item/hbc682experimental.rhizome.json | 7 +- .../assets/bbs_mod/models/item/helga.hop.json | 7 +- .../bbs_mod/models/item/helga.rhizome.json | 7 +- .../bbs_mod/models/item/herald.hop.json | 7 +- .../bbs_mod/models/item/herald.rhizome.json | 7 +- .../bbs_mod/models/item/herkules.hop.json | 7 +- .../bbs_mod/models/item/herkules.rhizome.json | 7 +- .../bbs_mod/models/item/hersbrucker.hop.json | 7 +- .../models/item/hersbrucker.rhizome.json | 7 +- .../bbs_mod/models/item/horizon.hop.json | 7 +- .../bbs_mod/models/item/horizon.rhizome.json | 7 +- .../bbs_mod/models/item/huellmelon.hop.json | 7 +- .../models/item/huellmelon.rhizome.json | 7 +- .../models/item/hullerbitterer.hop.json | 7 +- .../models/item/hullerbitterer.rhizome.json | 7 +- .../bbs_mod/models/item/kohatu.hop.json | 7 +- .../bbs_mod/models/item/kohatu.rhizome.json | 7 +- .../bbs_mod/models/item/liberty.hop.json | 7 +- .../bbs_mod/models/item/liberty.rhizome.json | 7 +- .../assets/bbs_mod/models/item/lme_amber.json | 2 +- .../assets/bbs_mod/models/item/lme_dark.json | 2 +- .../bbs_mod/models/item/lme_extralight.json | 2 +- .../assets/bbs_mod/models/item/lme_light.json | 2 +- .../bbs_mod/models/item/lme_munich.json | 2 +- .../bbs_mod/models/item/lme_pilsen.json | 2 +- .../assets/bbs_mod/models/item/lme_wheat.json | 2 +- .../assets/bbs_mod/models/item/loral.hop.json | 7 +- .../bbs_mod/models/item/loral.rhizome.json | 7 +- .../bbs_mod/models/item/lubelska.hop.json | 7 +- .../bbs_mod/models/item/lubelska.rhizome.json | 7 +- .../bbs_mod/models/item/magnum.hop.json | 7 +- .../bbs_mod/models/item/magnum.rhizome.json | 7 +- .../models/item/mandarinabavaria.hop.json | 7 +- .../models/item/mandarinabavaria.rhizome.json | 7 +- .../bbs_mod/models/item/merkur.hop.json | 7 +- .../bbs_mod/models/item/merkur.rhizome.json | 7 +- .../bbs_mod/models/item/millenium.hop.json | 7 +- .../models/item/millenium.rhizome.json | 7 +- .../bbs_mod/models/item/mosaic.hop.json | 7 +- .../bbs_mod/models/item/mosaic.rhizome.json | 7 +- .../bbs_mod/models/item/motueka.hop.json | 7 +- .../bbs_mod/models/item/motueka.rhizome.json | 7 +- .../bbs_mod/models/item/mounthood.hop.json | 7 +- .../models/item/mounthood.rhizome.json | 7 +- .../bbs_mod/models/item/mountrainier.hop.json | 7 +- .../models/item/mountrainier.rhizome.json | 7 +- .../bbs_mod/models/item/nelsonsauvin.hop.json | 7 +- .../models/item/nelsonsauvin.rhizome.json | 7 +- .../bbs_mod/models/item/newport.hop.json | 7 +- .../bbs_mod/models/item/newport.rhizome.json | 7 +- .../bbs_mod/models/item/northdown.hop.json | 7 +- .../models/item/northdown.rhizome.json | 7 +- .../models/item/northernbrewer.hop.json | 7 +- .../models/item/northernbrewer.rhizome.json | 7 +- .../bbs_mod/models/item/nugget.hop.json | 7 +- .../bbs_mod/models/item/nugget.rhizome.json | 7 +- .../bbs_mod/models/item/olympic.hop.json | 7 +- .../bbs_mod/models/item/olympic.rhizome.json | 7 +- .../assets/bbs_mod/models/item/omega.hop.json | 7 +- .../bbs_mod/models/item/omega.rhizome.json | 7 +- .../assets/bbs_mod/models/item/opal.hop.json | 7 +- .../bbs_mod/models/item/opal.rhizome.json | 7 +- .../assets/bbs_mod/models/item/orion.hop.json | 7 +- .../bbs_mod/models/item/orion.rhizome.json | 7 +- .../bbs_mod/models/item/pacifica.hop.json | 7 +- .../bbs_mod/models/item/pacifica.rhizome.json | 7 +- .../bbs_mod/models/item/pacificgem.hop.json | 7 +- .../models/item/pacificgem.rhizome.json | 7 +- .../bbs_mod/models/item/pacificjade.hop.json | 7 +- .../models/item/pacificjade.rhizome.json | 7 +- .../bbs_mod/models/item/palisade.hop.json | 7 +- .../bbs_mod/models/item/palisade.rhizome.json | 7 +- .../bbs_mod/models/item/perlegermany.hop.json | 7 +- .../models/item/perlegermany.rhizome.json | 7 +- .../bbs_mod/models/item/perleusa.hop.json | 7 +- .../bbs_mod/models/item/perleusa.rhizome.json | 7 +- .../bbs_mod/models/item/phoenix.hop.json | 7 +- .../bbs_mod/models/item/phoenix.rhizome.json | 7 +- .../bbs_mod/models/item/pilgrim.hop.json | 7 +- .../bbs_mod/models/item/pilgrim.rhizome.json | 7 +- .../bbs_mod/models/item/pioneer.hop.json | 7 +- .../bbs_mod/models/item/pioneer.rhizome.json | 7 +- .../bbs_mod/models/item/polaris.hop.json | 7 +- .../bbs_mod/models/item/polaris.rhizome.json | 7 +- .../bbs_mod/models/item/premiant.hop.json | 7 +- .../bbs_mod/models/item/premiant.rhizome.json | 7 +- .../models/item/prideofringwood.hop.json | 7 +- .../models/item/prideofringwood.rhizome.json | 7 +- .../bbs_mod/models/item/progress.hop.json | 7 +- .../bbs_mod/models/item/progress.rhizome.json | 7 +- .../assets/bbs_mod/models/item/rakau.hop.json | 7 +- .../bbs_mod/models/item/rakau.rhizome.json | 7 +- .../bbs_mod/models/item/record.hop.json | 7 +- .../bbs_mod/models/item/record.rhizome.json | 7 +- .../bbs_mod/models/item/riwaka.hop.json | 7 +- .../bbs_mod/models/item/riwaka.rhizome.json | 7 +- .../assets/bbs_mod/models/item/saaz.hop.json | 7 +- .../bbs_mod/models/item/saaz.rhizome.json | 7 +- .../bbs_mod/models/item/santiam.hop.json | 7 +- .../bbs_mod/models/item/santiam.rhizome.json | 7 +- .../bbs_mod/models/item/saphir.hop.json | 7 +- .../bbs_mod/models/item/saphir.rhizome.json | 7 +- .../assets/bbs_mod/models/item/satus.hop.json | 7 +- .../bbs_mod/models/item/satus.rhizome.json | 7 +- .../models/item/savinjskigolding.hop.json | 7 +- .../models/item/savinjskigolding.rhizome.json | 7 +- .../bbs_mod/models/item/select.hop.json | 7 +- .../bbs_mod/models/item/select.rhizome.json | 7 +- .../bbs_mod/models/item/simcoe.hop.json | 7 +- .../bbs_mod/models/item/simcoe.rhizome.json | 7 +- .../bbs_mod/models/item/smaragd.hop.json | 7 +- .../bbs_mod/models/item/smaragd.rhizome.json | 7 +- .../bbs_mod/models/item/sorachiace.hop.json | 7 +- .../models/item/sorachiace.rhizome.json | 7 +- .../models/item/southerncross.hop.json | 7 +- .../models/item/southerncross.rhizome.json | 7 +- .../bbs_mod/models/item/sovereign.hop.json | 7 +- .../models/item/sovereign.rhizome.json | 7 +- .../assets/bbs_mod/models/item/spalt.hop.json | 7 +- .../bbs_mod/models/item/spalt.rhizome.json | 7 +- .../bbs_mod/models/item/sterling.hop.json | 7 +- .../bbs_mod/models/item/sterling.rhizome.json | 7 +- .../bbs_mod/models/item/sticklebract.hop.json | 7 +- .../models/item/sticklebract.rhizome.json | 7 +- .../models/item/strisselspalt.hop.json | 7 +- .../models/item/strisselspalt.rhizome.json | 7 +- .../models/item/styriangolding.hop.json | 7 +- .../models/item/styriangolding.rhizome.json | 7 +- .../bbs_mod/models/item/summer.hop.json | 7 +- .../bbs_mod/models/item/summer.rhizome.json | 7 +- .../bbs_mod/models/item/summit.hop.json | 7 +- .../bbs_mod/models/item/summit.rhizome.json | 7 +- .../bbs_mod/models/item/superalpha.hop.json | 7 +- .../models/item/superalpha.rhizome.json | 7 +- .../bbs_mod/models/item/superpride.hop.json | 7 +- .../models/item/superpride.rhizome.json | 7 +- .../bbs_mod/models/item/sussex.hop.json | 7 +- .../bbs_mod/models/item/sussex.rhizome.json | 7 +- .../assets/bbs_mod/models/item/sylva.hop.json | 7 +- .../bbs_mod/models/item/sylva.rhizome.json | 7 +- .../bbs_mod/models/item/tahoma.hop.json | 7 +- .../bbs_mod/models/item/tahoma.rhizome.json | 7 +- .../bbs_mod/models/item/talisman.hop.json | 7 +- .../bbs_mod/models/item/talisman.rhizome.json | 7 +- .../bbs_mod/models/item/target.hop.json | 7 +- .../bbs_mod/models/item/target.rhizome.json | 7 +- .../models/item/tettnangergermany.hop.json | 7 +- .../item/tettnangergermany.rhizome.json | 7 +- .../models/item/tettnangerusa.hop.json | 7 +- .../models/item/tettnangerusa.rhizome.json | 7 +- .../bbs_mod/models/item/tomahawk.hop.json | 7 +- .../bbs_mod/models/item/tomahawk.rhizome.json | 7 +- .../bbs_mod/models/item/tradition.hop.json | 7 +- .../models/item/tradition.rhizome.json | 7 +- .../bbs_mod/models/item/triplepearl.hop.json | 7 +- .../models/item/triplepearl.rhizome.json | 7 +- .../bbs_mod/models/item/triskel.hop.json | 7 +- .../bbs_mod/models/item/triskel.rhizome.json | 7 +- .../assets/bbs_mod/models/item/ultra.hop.json | 7 +- .../bbs_mod/models/item/ultra.rhizome.json | 7 +- .../bbs_mod/models/item/vanguard.hop.json | 7 +- .../bbs_mod/models/item/vanguard.rhizome.json | 7 +- .../bbs_mod/models/item/waiiti.hop.json | 7 +- .../bbs_mod/models/item/waiiti.rhizome.json | 7 +- .../bbs_mod/models/item/waimea.hop.json | 7 +- .../bbs_mod/models/item/waimea.rhizome.json | 7 +- .../bbs_mod/models/item/wakatu.hop.json | 7 +- .../bbs_mod/models/item/wakatu.rhizome.json | 7 +- .../bbs_mod/models/item/warrior.hop.json | 7 +- .../bbs_mod/models/item/warrior.rhizome.json | 7 +- .../models/item/whitbreadgolding.hop.json | 7 +- .../models/item/whitbreadgolding.rhizome.json | 7 +- .../bbs_mod/models/item/willamette.hop.json | 7 +- .../models/item/willamette.rhizome.json | 7 +- .../models/item/yakimacluster.hop.json | 7 +- .../models/item/yakimacluster.rhizome.json | 7 +- .../models/item/yamhillgolding.hop.json | 7 +- .../models/item/yamhillgolding.rhizome.json | 7 +- .../bbs_mod/models/item/yeoman.hop.json | 7 +- .../bbs_mod/models/item/yeoman.rhizome.json | 7 +- .../bbs_mod/models/item/zenith.hop.json | 7 +- .../bbs_mod/models/item/zenith.rhizome.json | 7 +- .../assets/bbs_mod/models/item/zeus.hop.json | 7 +- .../bbs_mod/models/item/zeus.rhizome.json | 7 +- .../bbs_mod/models/item/zythos.hop.json | 7 +- .../bbs_mod/models/item/zythos.rhizome.json | 7 +- .../assets/bbs_mod/recipes/microbrewer.json | 2 +- .../assets/bbs_mod/recipes/watergallon.json | 2 +- .../assets/bbs_mod/recipes/waterkeg.json | 3 +- .../assets/bbs_mod/recipes/wortkeg.json | 18 - .../bbs_mod/textures/item/beerbucket.png | Bin 1586 -> 0 bytes .../bbs_mod/textures/item/bucket_fluid.png | Bin 225 -> 0 bytes .../assets/bbs_mod/textures/item/pellet.png | Bin 3588 -> 0 bytes .../bbs_mod/textures/item/priming_sugar.png | Bin 3052 -> 0 bytes .../assets/bbs_mod/textures/item/spoon.png | Bin 5016 -> 0 bytes .../bbs_mod/textures/item/stirringspoon.png | Bin 5016 -> 0 bytes .../bbs_mod/textures/item/thermometer.png | Bin 3394 -> 0 bytes .../bbs_mod/textures/item/wortbucket.png | Bin 1586 -> 0 bytes .../bbs_mod/utils/ABV_and_Gravity_Formula.js | 1077 ---- .../assets/bbs_mod/utils/HopsTypes.json | 824 --- .../assets/bbs_mod/utils/IBU_Formula.js | 329 - .../bbs_mod/utils/OG_FG_Extract_Formula.js | 198 - .../assets/bbs_mod/utils/SRM_Formula.js | 1064 ---- 370 files changed, 782 insertions(+), 18405 deletions(-) delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/BasicBlock.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/crops/BlockCrop.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModelList.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModels.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/AluminiumPot.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/ContainerPot.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/GuiPot.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/TileEntityAluminiumPot.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/ContainerFermentor.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/FermentorBucket.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/GuiFermentor.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/TileEntityFermentorBucket.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/ContainerPelleter.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/GuiPelleter.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/PelleterBlock.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/TileEntityPelleter.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/compat/MainCompatHandler.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPCompatibility.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPInfoProvider.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/fluids/BlockBeer.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/fluids/BlockWort.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/fluids/FluidBeer.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/fluids/FluidWort.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSBlocks.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSConfig.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSCropBlockRegistry.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSCropItemRegistry.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSCropRegistry.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSFluids.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSGetMarketDataFireBase.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSGuiHandler.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSHopsTypes.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSItemBlockCrop.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSItemRenderRegister.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSItems.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSMarketData.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSRecipes.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/BBSTooltipHandler.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/items/BeerBucket.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/items/ItemBase.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/items/WortBucket.java delete mode 100644 src/main/java/com/rafacost3d/bbs_mod/proxy/ServerProxy.java delete mode 100644 src/main/resources/assets/bbs_mod/blockstates/aluminiumpot.json delete mode 100755 src/main/resources/assets/bbs_mod/models/block/boilingpot.mtl delete mode 100755 src/main/resources/assets/bbs_mod/models/block/boilingpot.obj delete mode 100644 src/main/resources/assets/bbs_mod/models/block/hopcropblock.json delete mode 100644 src/main/resources/assets/bbs_mod/models/block/pelleter.json delete mode 100755 src/main/resources/assets/bbs_mod/models/block/pelleter.mtl delete mode 100755 src/main/resources/assets/bbs_mod/models/block/pelleter.obj delete mode 100644 src/main/resources/assets/bbs_mod/models/fluid/beer_flow.json delete mode 100644 src/main/resources/assets/bbs_mod/models/fluid/beer_still.json delete mode 100644 src/main/resources/assets/bbs_mod/models/fluid/wort_flow.json delete mode 100644 src/main/resources/assets/bbs_mod/models/fluid/wort_still.json delete mode 100644 src/main/resources/assets/bbs_mod/recipes/wortkeg.json delete mode 100755 src/main/resources/assets/bbs_mod/textures/item/beerbucket.png delete mode 100644 src/main/resources/assets/bbs_mod/textures/item/bucket_fluid.png delete mode 100644 src/main/resources/assets/bbs_mod/textures/item/pellet.png delete mode 100755 src/main/resources/assets/bbs_mod/textures/item/priming_sugar.png delete mode 100644 src/main/resources/assets/bbs_mod/textures/item/spoon.png delete mode 100755 src/main/resources/assets/bbs_mod/textures/item/stirringspoon.png delete mode 100755 src/main/resources/assets/bbs_mod/textures/item/thermometer.png delete mode 100755 src/main/resources/assets/bbs_mod/textures/item/wortbucket.png delete mode 100644 src/main/resources/assets/bbs_mod/utils/ABV_and_Gravity_Formula.js delete mode 100644 src/main/resources/assets/bbs_mod/utils/HopsTypes.json delete mode 100644 src/main/resources/assets/bbs_mod/utils/IBU_Formula.js delete mode 100644 src/main/resources/assets/bbs_mod/utils/OG_FG_Extract_Formula.js delete mode 100644 src/main/resources/assets/bbs_mod/utils/SRM_Formula.js diff --git a/build.gradle b/build.gradle index 3d88060..5e6c16e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,4 @@ buildscript { - - repositories { jcenter() maven { url = "http://files.minecraftforge.net/maven" } @@ -9,25 +7,20 @@ buildscript { classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT' } } - apply plugin: 'net.minecraftforge.gradle.forge' //Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. - version = "1.12.2-" + MAJOR + "." + MINOR + "." + BN group = "com.rafacost3d.bbs_mod" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "bbs_mod" - sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. compileJava { sourceCompatibility = targetCompatibility = '1.8' } - minecraft { version = "1.12.2-14.23.2.2611" runDir = "run" mappings = "snapshot_20171003" } - processResources { // this will ensure that this task is redone when the versions change. inputs.property "version", project.version @@ -47,6 +40,26 @@ processResources { } } +repositories { + maven { + // location of the maven that hosts JEI files + name = "Progwml6 maven" + url = "http://dvs1.progwml6.com/files/maven" + } + maven { + // location of a maven mirror for JEI files, as a fallback + name = "ModMaven" + url = "modmaven.k-4u.nl" + } +} + +dependencies { + // compile against the JEI API but do not include it at runtime + deobfProvided "mezz.jei:jei_${mc_version}:${jei_version}:api" + // at runtime, use the full JEI jar + runtime "mezz.jei:jei_${mc_version}:${jei_version}" +} + task increaseVersion { group 'VersionControl' description 'My Versioning System' diff --git a/gradle.properties b/gradle.properties index b555110..d14afb4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,7 @@ -#Sun Mar 18 13:57:53 EDT 2018 -MAJOR=0 +#Mon Mar 26 13:29:57 EDT 2018 +MAJOR=1 org.gradle.jvmargs=-Xmx3G -MINOR=3 -BN=104 +MINOR=0 +mc_version=1.12.2 +jei_version=4.8.5.147 +BN=181 diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/BasicBlock.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/BasicBlock.java deleted file mode 100644 index e4dfa89..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/BasicBlock.java +++ /dev/null @@ -1,71 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks; - - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import net.minecraft.block.Block; -import net.minecraft.block.material.Material; -import net.minecraft.block.properties.PropertyDirection; -import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.item.Item; -import net.minecraft.item.ItemBlock; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.World; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -public class BasicBlock extends Block { - public static final PropertyDirection FACING = PropertyDirection.create("facing"); - protected String name; - - public BasicBlock(Material material, String name){ - super(material); - this.name = name; - setUnlocalizedName(BBSMod.MODID + "." + name); - setRegistryName(name); - setCreativeTab(CreativeTabsBBS.BBSTabsMachines); - GameRegistry.register(this); - GameRegistry.register(new ItemBlock(this), getRegistryName()); - setDefaultState(blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH)); - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory")); - } - - @Override - public void onBlockPlacedBy(World world, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { - world.setBlockState(pos, state.withProperty(FACING, getFacingFromEntity(pos, placer)), 2); - } - - public static EnumFacing getFacingFromEntity(BlockPos clickedBlock, EntityLivingBase entity) { - return EnumFacing.getFacingFromVector( - (float) (entity.posX - clickedBlock.getX()), - (float) (entity.posY - clickedBlock.getY()), - (float) (entity.posZ - clickedBlock.getZ())); - } - - @Override - public IBlockState getStateFromMeta(int meta) { - return getDefaultState() - .withProperty(FACING, EnumFacing.getFront(meta & 7)); - } - - @Override - public int getMetaFromState(IBlockState state) { - return state.getValue(FACING).getIndex(); - } - - @Override - protected BlockStateContainer createBlockState() { - return new BlockStateContainer(this, FACING); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/BlockCrop.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/BlockCrop.java deleted file mode 100644 index aba9ac1..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/BlockCrop.java +++ /dev/null @@ -1,290 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.crops; - -import net.minecraft.block.Block; -import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.item.Item; -import net.minecraft.block.BlockCrops; -import net.minecraft.block.properties.PropertyInteger; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; -import net.minecraft.util.math.AxisAlignedBB; -import net.minecraft.util.math.BlockPos; -import net.minecraft.util.math.MathHelper; -import net.minecraft.world.IBlockAccess; -import net.minecraft.world.World; -import net.minecraftforge.common.EnumPlantType; -import net.minecraftforge.common.IPlantable; -import net.minecraftforge.event.ForgeEventFactory; -import net.minecraftforge.fml.common.FMLLog; - -import java.util.List; -import java.util.Random; - -public class BlockCrop extends BlockCrops implements IPlantable { - - private static final int MATURE_AGE = 7; - - private static final PropertyInteger AGE = PropertyInteger.create("age", 0, MATURE_AGE); - - private static final AxisAlignedBB[] CROPS_AABB = new AxisAlignedBB[]{new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.125D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.25D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.375D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.5D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.625D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.75D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.875D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 1.0D, 1.0D)}; - - private final String registerName; - public final String name; - private String BASE_STAGE_ID = null; - - private Item seed; - private Item food; - - public void setSeed(Item seed) { - this.seed = seed; - } - - public void setFood(Item food) { - this.food = food; - } - - public BlockCrop(String registerName, String name) { - super(); - this.registerName = registerName; - this.name = name; - this.setDefaultState(blockState.getBaseState().withProperty(getAgeProperty(), 0)); - } - - public String getStageId(int stage) { - if (BASE_STAGE_ID == null) { - BASE_STAGE_ID = registerName.replaceFirst("hop", "").replace("Crop", "") + "_stage"; - } - return BASE_STAGE_ID + stage; - } - - - @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { - // CROPS_AABB is based on an age range from 0 to 7. Times two should fix that issue. - return CROPS_AABB[state.getValue(AGE)]; - } - - private boolean isSuitableSoilBlock(Block soilBlock) { - return soilBlock == Blocks.FARMLAND; - } - - @Override - public PropertyInteger getAgeProperty() { - return AGE; - } - - public int getMatureAge() { - return MATURE_AGE; - } - - public boolean isMature(IBlockState state) { - return state.getValue(getAgeProperty()) >= MATURE_AGE; - } - - @Override - public Item getSeed() { - if (seed == null) { - FMLLog.bigWarning("No seed have been set up for %s.", getUnlocalizedName()); - return new Item(); - } - return seed; - } - - @Override - public ItemStack getItem(World worldIn, BlockPos pos, IBlockState state) { - return new ItemStack(getSeed()); - } - - @Override - public boolean canGrow(World worldIn, BlockPos pos, IBlockState state, boolean isClient) { - return !isMature(state); - } - - @Override - public Item getCrop() { - if (food == null) { - FMLLog.bigWarning("No food has been set up for %s.", getUnlocalizedName()); - return new Item(); - } - - return food; - } - - @Override - public IBlockState getStateFromMeta(int meta) { - return getDefaultState().withProperty(getAgeProperty(), meta); - } - - @Override - public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand) { - this.checkAndDropBlock(worldIn, pos, state); - - if (worldIn.getLightFromNeighbors(pos.up()) >= 9) { - int currentGrowthLevel = getMetaFromState(state); - - if (currentGrowthLevel < getMatureAge()) { - float f = getGrowthChance(this, worldIn, pos); - - if (rand.nextInt((int) (50.0F / f) + 1) == 0) { - worldIn.setBlockState(pos, this.getStateFromMeta(currentGrowthLevel + 1), 2); - } - } - } - } - - @Override - public Item getItemDropped(IBlockState state, Random rand, int fortune) { - if (!isMature(state)) { - return getSeed(); - } else { - return getCrop(); - } - } - - public int getMetaFromState(IBlockState state) { - return state.getValue(getAgeProperty()); - } - - @Override - public boolean canPlaceBlockAt(World world, BlockPos pos) { - Block soilBlock = world.getBlockState(pos.down()).getBlock(); - - return isSuitableSoilBlock(soilBlock); - } - - @Override - public void dropBlockAsItemWithChance(World worldIn, BlockPos pos, IBlockState state, float chance, int fortune) { - if (!worldIn.isRemote && !worldIn.restoringBlockSnapshots) { - final List items = getDrops(worldIn, pos, state, fortune); - chance = ForgeEventFactory.fireBlockHarvesting(items, worldIn, pos, state, fortune, chance, false, harvesters.get()); - - for (ItemStack item : items) { - if (worldIn.rand.nextFloat() <= chance) { - spawnAsEntity(worldIn, pos, item); - } - } - } - } - - @Override - public EnumPlantType getPlantType(IBlockAccess world, BlockPos pos) { - return EnumPlantType.Plains; - } - - @Override - public BlockStateContainer createBlockState() { - return new BlockStateContainer(this, AGE); - } - - private int getRandomInt(World world) { - return MathHelper.getInt(world.rand, 1, 3); - } - - @Override - public void grow(World worldIn, BlockPos pos, IBlockState state) { - int newGrowth = getMetaFromState(state) + getRandomInt(worldIn); - - if (newGrowth > MATURE_AGE) { - newGrowth = MATURE_AGE; - } - - worldIn.setBlockState(pos, getStateFromMeta(newGrowth), 2); - } - - @Override - public void grow(World worldIn, Random rand, BlockPos pos, IBlockState state) { - grow(worldIn, pos, state); - } - - @Override - public int hashCode() { - return registerName.hashCode(); - } - - @Override - public boolean equals(Object obj) { - return (obj instanceof BlockCrop && registerName.equals(((BlockCrop) obj).registerName)); - } - - @Override - public List getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune) { - - final List ret = new java.util.ArrayList(); - - final Random rand = world instanceof World ? ((World) world).rand : new Random(); - - final int age = getMetaFromState(state); - - final int count = quantityDropped(state, fortune, rand); - - for (int i = 0; i < count; i++) { - final Item item = this.getItemDropped(state, rand, fortune); - if (item != null) { - ret.add(new ItemStack(item, 1, this.damageDropped(state))); - } - } - - if (age >= getMatureAge()) { - for (int i = 0; i < 3 + fortune; ++i) { - if (rand.nextInt(2 * getMatureAge()) <= age) { - ret.add(new ItemStack(getSeed(), 1, 0)); - } - } - } - - return ret; - } - - @Override - protected boolean canSustainBush(IBlockState state) { - return isSuitableSoilBlock(state.getBlock()); - } - - @Override - public int getMaxAge() { - return getMatureAge(); - } - - @Override - protected int getAge(IBlockState state) { - return getMetaFromState(state); - } - - @Override - public IBlockState withAge(int age) { - return getDefaultState().withProperty(AGE, age); - } - - @Override - public boolean isMaxAge(IBlockState state) { - return getAge(state) >= getMaxAge(); - } - - @Override - public boolean canUseBonemeal(World worldIn, Random rand, BlockPos pos, IBlockState state) { - return getAge(state) < getMaxAge(); - } - - @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ){ - if(!world.isRemote) { - if (this.isMaxAge(state)) { - Random r = new Random(); - int Low = 1; - int High = 6; - int Result = r.nextInt(High-Low) + Low; - EntityItem item = new EntityItem(world,pos.getX(), pos.getY(), pos.getZ(), new ItemStack(getCrop(), Result)); - world.spawnEntity((item)); - world.setBlockState(pos, this.withAge(6)); - return true; - } - } - return false; - } - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModelList.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModelList.java deleted file mode 100644 index fbc8b05..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModelList.java +++ /dev/null @@ -1,33 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.crops; - -import com.rafacost3d.bbs_mod.BBSMod; - -import java.util.HashMap; - - -public class CropsModelList { - - private final HashMap registrations = new HashMap(); - - private final String rootDirectory; - - public CropsModelList(String resourceRoot) { - this.rootDirectory = getResourcePath(resourceRoot); - } - - public CropsModelList add(int meta, String path) { - this.registrations.put(meta, this.rootDirectory != null ? this.rootDirectory + path : getResourcePath(path)); - return this; - } - - HashMap getRegistrations() { - return this.registrations; - } - - private static String getResourcePath(String resource) { - return (BBSMod.MODID + ":") + resource; - } - - - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModels.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModels.java deleted file mode 100644 index 76a650b..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/crops/CropsModels.java +++ /dev/null @@ -1,81 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.crops; - -import com.rafacost3d.bbs_mod.init.BBSCropRegistry; -import net.minecraft.block.Block; -import net.minecraft.client.Minecraft; -import net.minecraft.client.renderer.block.model.ModelBakery; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.item.Item; -import net.minecraft.util.ResourceLocation; - -import java.util.Collection; -import java.util.HashMap; -import java.util.Map; - -public class CropsModels { - private static final HashMap models = new HashMap(); - - public static void preInit() { - defineItemModels(); - prepareModels(); - } - - public static void init() { - registerModels(); - } - - private static void defineItemModels() { - - for (BlockCrop crop : BBSCropRegistry.getCrops().values()) { - registerItemModels(getItem(crop), new CropsModelList("") - .add(0, crop.getStageId(0)) - .add(1, crop.getStageId(1)) - .add(2, crop.getStageId(2)) - .add(3, crop.getStageId(3)) - .add(4, crop.getStageId(4)) - .add(5, crop.getStageId(5)) - .add(6, crop.getStageId(6)) - .add(7, crop.getStageId(7)) - ); - } - } - - private static void registerItemModels(Item item, CropsModelList list) { - models.put(item, list); - } - - private static void prepareModels() { - for (Map.Entry entry : models.entrySet()) { - Item item = entry.getKey(); - - Collection registrations = entry.getValue().getRegistrations().values(); - - for (String registration : registrations) { - if (item == null || registration == null) continue; - - ModelBakery.registerItemVariants(item, new ResourceLocation(registration)); - } - } - } - - private static void registerModels() { - for (HashMap.Entry entry : models.entrySet()) { - Item item = entry.getKey(); - - HashMap registrations = entry.getValue().getRegistrations(); - - for (Map.Entry registration : registrations.entrySet()) { - int meta = registration.getKey(); - String path = registration.getValue(); - - ModelResourceLocation resource = new ModelResourceLocation(path, "inventory"); - - Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, meta, resource); - } - } - } - - private static Item getItem(Block block) { - return Item.getItemFromBlock(block); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/AluminiumPot.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/AluminiumPot.java deleted file mode 100644 index a32dc04..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/AluminiumPot.java +++ /dev/null @@ -1,139 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot; - - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.blocks.BasicBlock; -import com.rafacost3d.bbs_mod.compat.top.TOPInfoProvider; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import com.rafacost3d.bbs_mod.init.BBSConstants; -import com.rafacost3d.bbs_mod.init.BBSGuiHandler; -import com.rafacost3d.bbs_mod.init.BBSItems; -import mcjty.theoneprobe.api.IProbeHitData; -import mcjty.theoneprobe.api.IProbeInfo; -import mcjty.theoneprobe.api.ProbeMode; -import net.minecraft.block.ITileEntityProvider; -import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; -import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; -import net.minecraft.util.text.TextFormatting; -import net.minecraft.world.IBlockAccess; -import net.minecraft.world.World; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.IItemHandler; - - -public class AluminiumPot extends BasicBlock implements ITileEntityProvider, TOPInfoProvider { - - public AluminiumPot(Material material, String name){ - super(Material.IRON, name); - setCreativeTab(CreativeTabsBBS.BBSTabsMachines); - setHarvestLevel("shovel", -1); - setHardness(1F); - GameRegistry.registerTileEntity(TileEntityAluminiumPot.class, BBSMod.MODID + "_aluminiumpot"); - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory")); - } - - @SideOnly(Side.CLIENT) - @Override - public boolean shouldSideBeRendered(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side) { - return false; - } - - @Override - public boolean isBlockNormalCube(IBlockState blockState) { - return false; - } - - @Override - public boolean isOpaqueCube(IBlockState blockState) { - return false; - } - - @Override - public TileEntity createNewTileEntity(World worldIn, int meta) { - return new TileEntityAluminiumPot(); - } - - private TileEntityAluminiumPot getTE(World world, BlockPos pos) { - return (TileEntityAluminiumPot) world.getTileEntity(pos); - } - - @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { - if (!world.isRemote) { - if (!player.isSneaking()) { - TileEntityAluminiumPot tile = getTE(world, pos); - ItemStack itemStack = player.getHeldItem(hand); - if (itemStack.getItem() == BBSItems.sanitizer) { - itemStack.damageItem(1, player); - player.sendMessage(new TextComponentString("Cleaning Boiling Pot.")); - tile.setClean(true); - } - if (itemStack.getItem() == BBSItems.stirringspoon) { - if(tile.getTimeBoil()<=105) { - tile.setTimeBoil(tile.getTimeBoil() + 15); - player.sendMessage(new TextComponentString("Boil Time: " + tile.getTimeBoil() + " min")); - } else { - tile.setTimeBoil(0); - } - } - } else { - player.openGui(BBSMod.instance, BBSGuiHandler.ALUMINIUMPOT, world, pos.getX(), pos.getY(), pos.getZ()); - } - } - return true; - - } - - - @Override - public void addProbeInfo(ProbeMode mode, IProbeInfo probeInfo, EntityPlayer player, World world, IBlockState blockState, IProbeHitData data) { - TileEntity te = world.getTileEntity(data.getPos()); - try { - if (te instanceof TileEntityAluminiumPot) { - TileEntityAluminiumPot tile = (TileEntityAluminiumPot) te; - Double d = tile.getTemp(); - Integer i = d.intValue(); - probeInfo.horizontal().text(TextFormatting.GREEN + "Hops: " + tile.getHopsType()); - probeInfo.horizontal().text(TextFormatting.GREEN + "Clean: " + tile.getClean()); - probeInfo.horizontal().text(TextFormatting.GREEN + "Malt: " + tile.getMalt()); - probeInfo.horizontal().text(TextFormatting.GREEN + "Hops: " + tile.getHops()); - probeInfo.text(TextFormatting.GREEN + "Temperature: ").progress(i, BBSConstants.WATER_BOILING, probeInfo.defaultProgressStyle().suffix(BBSConstants.DEGREE)); - probeInfo.horizontal().text(TextFormatting.GREEN + "Boil Time: " + tile.getTimeBoil() + " min"); - probeInfo.horizontal().text(TextFormatting.GREEN + "Time Boiling: " + tile.getCount() + " min"); - probeInfo.horizontal().text(TextFormatting.GREEN + "Heat Rate: " + tile.getHeatRate()); - } - } catch (Exception e) { - e.printStackTrace(); - } - } - - @Override - public void breakBlock(World world, BlockPos pos, IBlockState state) { - TileEntityAluminiumPot tile = getTE(world, pos); - IItemHandler itemHandler = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.NORTH); - ItemStack stack = itemHandler.getStackInSlot(0); - if (!stack.isEmpty()) { - EntityItem item = new EntityItem(world, pos.getX(), pos.getY(), pos.getZ(), stack); - world.spawnEntity(item); - } - super.breakBlock(world, pos, state); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/ContainerPot.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/ContainerPot.java deleted file mode 100644 index e5cab6a..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/ContainerPot.java +++ /dev/null @@ -1,100 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot; - -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.*; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.IItemHandler; -import net.minecraftforge.items.SlotItemHandler; - -public class ContainerPot extends Container { - - public ContainerPot(InventoryPlayer playerInv, final TileEntityAluminiumPot pot) { - - IItemHandler inventory = pot.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.NORTH); - addSlotToContainer(new SlotItemHandler(inventory, 0, 80, 35) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 1, 8, 16) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 2, 8, 35) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 3, 8, 54) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 4, 152, 35) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - - for (int i = 0; i < 3; i++) { - for (int j = 0; j < 9; j++) { - addSlotToContainer(new Slot(playerInv, j + i * 9 + 9, 8 + j * 18, 84 + i * 18)); - } - } - - for (int k = 0; k < 9; k++) { - addSlotToContainer(new Slot(playerInv, k, 8 + k * 18, 142)); - } - } - - - @Override - public boolean canInteractWith(EntityPlayer player) { - return true; - } - - @Override - public ItemStack transferStackInSlot(EntityPlayer player, int index) { - ItemStack itemstack = ItemStack.EMPTY; - Slot slot = inventorySlots.get(index); - - if (slot != null && slot.getHasStack()) { - ItemStack itemstack1 = slot.getStack(); - itemstack = itemstack1.copy(); - - int containerSlots = inventorySlots.size() - player.inventory.mainInventory.size(); - - if (index < containerSlots) { - if (!this.mergeItemStack(itemstack1, containerSlots, inventorySlots.size(), true)) { - return ItemStack.EMPTY; - } - } else if (!this.mergeItemStack(itemstack1, 0, containerSlots, false)) { - return ItemStack.EMPTY; - } - - if (itemstack1.getCount() == 0) { - slot.putStack(ItemStack.EMPTY); - } else { - slot.onSlotChanged(); - } - - if (itemstack1.getCount() == itemstack.getCount()) { - return ItemStack.EMPTY; - } - - slot.onTake(player, itemstack1); - } - - return itemstack; - } - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/GuiPot.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/GuiPot.java deleted file mode 100644 index 1e1bc98..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/GuiPot.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot; - - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.init.BBSBlocks; -import com.rafacost3d.bbs_mod.init.BBSConstants; -import net.minecraft.client.gui.inventory.GuiContainer; -import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.resources.I18n; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.Container; -import net.minecraft.util.ResourceLocation; - -public class GuiPot extends GuiContainer { - private static final ResourceLocation BG_TEXTURE = new ResourceLocation(BBSMod.MODID, "textures/gui/aluminium_kettle.png"); - private InventoryPlayer playerInv; - - public GuiPot(Container container, InventoryPlayer playerInv) { - super(container); - this.playerInv = playerInv; - } - - @Override - protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { - GlStateManager.color(1, 1, 1, 1); - mc.getTextureManager().bindTexture(BG_TEXTURE); - int x = (width - xSize) / 2; - int y = (height - ySize) / 2; - drawTexturedModalRect(x, y, 0, 0, xSize, ySize); - } - @Override - protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) { - String name = I18n.format(BBSBlocks.aluminiumPot.getUnlocalizedName() + ".name"); - fontRendererObj.drawString(name, xSize / 2 - fontRendererObj.getStringWidth(name) / 2, 6, 0x404040); - fontRendererObj.drawString(playerInv.getDisplayName().getUnformattedText(), 8, ySize - 94, 0x404040); - fontRendererObj.drawString(BBSConstants.WATER_BOILING + " " + BBSConstants.DEGREE, 138, 73, 0x404040); - fontRendererObj.drawString("Water", 27, 21, 0x404040); - fontRendererObj.drawString("Hops", 27, 40, 0x404040); - fontRendererObj.drawString("Malts", 27, 59, 0x404040); - fontRendererObj.drawString("Bucket", 74, 53, 0x404040); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/TileEntityAluminiumPot.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/TileEntityAluminiumPot.java deleted file mode 100644 index eac62ab..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/aluminiumpot/TileEntityAluminiumPot.java +++ /dev/null @@ -1,289 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot; - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.init.BBSConstants; -import com.rafacost3d.bbs_mod.init.BBSItems; -import com.rafacost3d.bbs_mod.items.WortBucket; -import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; -import net.minecraft.init.Items; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.ITickable; -import net.minecraft.util.math.BlockPos; -import net.minecraftforge.common.capabilities.Capability; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.ItemStackHandler; - - -import javax.annotation.Nullable; - - -public class TileEntityAluminiumPot extends TileEntity implements ITickable { - private int count; - private int delayCounter = 20; - private double temp = BBSConstants.ROOM_TEMP; - private boolean isClean = false; - private boolean hasWater = false; - private boolean hasMalt = false; - private boolean hasHops = false; - private boolean hasBucket = false; - private String hopsType = ""; - private int timeBoil=0; - private double lovibond=0.0; - - public int getTimeBoil() { - return timeBoil; - } - - public void setTimeBoil(int timeBoil) { - this.timeBoil = timeBoil; - } - - private ItemStackHandler inventory = new ItemStackHandler(5); - - - public Boolean getClean() { return isClean;} - public Boolean setClean(Boolean clean) { isClean = clean; return isClean;} - public Boolean getWater() { - ItemStack itemStackinv = inventory.getStackInSlot(1); - if(itemStackinv.getItem() == BBSItems.watergallon) { - hasWater=true; - } else { - hasWater=false; - } - return hasWater; - } - public Boolean getMalt() { - ItemStack itemStackinv = inventory.getStackInSlot(3); - if(itemStackinv.getItem() == BBSItems.lme_pilsen) { - hasMalt=true; - lovibond=2.0; - } else if(itemStackinv.getItem() == BBSItems.lme_extralight) { - hasMalt=true; - lovibond=2.5; - } else if(itemStackinv.getItem() == BBSItems.lme_wheat) { - hasMalt=true; - lovibond=3.0; - } else if(itemStackinv.getItem() == BBSItems.lme_light) { - hasMalt=true; - lovibond=4.0; - } else if(itemStackinv.getItem() == BBSItems.lme_munich) { - hasMalt=true; - lovibond=8.0; - } else if(itemStackinv.getItem() == BBSItems.lme_amber) { - hasMalt=true; - lovibond=10.0; - } else if(itemStackinv.getItem() == BBSItems.lme_dark) { - hasMalt=true; - lovibond=30.0; - } else { - hasMalt=false; - lovibond=0.0; - } - return hasMalt; - } - public Boolean getHops() { - ItemStack itemStackinv = inventory.getStackInSlot(2); - if(!itemStackinv.isEmpty()) { - String name[] = itemStackinv.getUnlocalizedName().split("[.]"); - if (name[2].equals("hop") || name[2].equals("pellet")) { - //BBSMod.logger.info("Name: " + name[2]); - hasHops = true; - hopsType = itemStackinv.getDisplayName(); - } else { - hasHops = false; - hopsType = ""; - } - } - return hasHops; - } - public String getHopsType() { - ItemStack itemStackinv = inventory.getStackInSlot(2); - if(!itemStackinv.isEmpty()) { - String name[] = itemStackinv.getUnlocalizedName().split("[.]"); - if (name.length >= 2 && name[2].equals("hop") || name[2].equals("pellet")) { - //BBSMod.logger.info("Name: " + name[2]); - hasHops = true; - hopsType = itemStackinv.getDisplayName(); - } else { - hasHops = false; - hopsType = ""; - } - } - return hopsType; - } - public Boolean getBucket() { - ItemStack itemStackinv = inventory.getStackInSlot(0); - if(itemStackinv.getItem() == Items.BUCKET) { - hasBucket=true; - } else { - hasBucket=false; - } - return hasBucket; - } - public double getTemp() { return temp; } - public int getCount() { return count; } - - @Override - public NBTTagCompound writeToNBT(NBTTagCompound compound) { - compound.setTag("inventory", inventory.serializeNBT()); - compound.setBoolean("clean", isClean); - compound.setBoolean("water", hasWater); - compound.setBoolean("malt", hasMalt); - compound.setBoolean("hops", hasHops); - compound.setString("hopsType", hopsType); - compound.setBoolean("bucket", hasBucket); - compound.setDouble("temperature", temp); - compound.setInteger("seconds", count); - compound.setDouble("lovibond", lovibond); - return super.writeToNBT(compound); - } - - @Override - public void readFromNBT(NBTTagCompound compound) { - inventory.deserializeNBT(compound.getCompoundTag("inventory")); - isClean = compound.getBoolean("clean"); - hasWater = compound.getBoolean("water"); - hasMalt = compound.getBoolean("malt"); - hasHops = compound.getBoolean("hops"); - hopsType = compound.getString("hopsType"); - hasBucket = compound.getBoolean("bucket"); - temp = compound.getInteger("temperature"); - count = compound.getInteger("seconds"); - lovibond = compound.getDouble("lovibond"); - super.readFromNBT(compound); - } - - @Override - public boolean hasCapability(Capability capability, @Nullable EnumFacing facing) { - return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing); - } - - @Nullable - @Override - public T getCapability(Capability capability, @Nullable EnumFacing facing) { - return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY ? (T)inventory : super.getCapability(capability, facing); - } - - - @Override - public void update() { - if (!world.isRemote) { - updateCounter(); - } - } - - private void updateCounter() { - //Get HeatRate. - Integer heat = getHeatRate(); - getWater(); - getBucket(); - getMalt(); - delayCounter--; - if (delayCounter <= 0 && heat < 0) { - delayCounter = 20; - if(temp<=BBSConstants.ROOM_TEMP){ - temp = BBSConstants.ROOM_TEMP; - markDirty(); - } else { - temp--; - markDirty(); - } - } else if (delayCounter <=0 && heat > 0 && hasBucket && hasWater && hasMalt) { - delayCounter = 20; - if(temp>=BBSConstants.WATER_BOILING) - { - count++; - temp=BBSConstants.WATER_BOILING; - markDirty(); - if(count>=timeBoil) { - try { - if(!inventory.getStackInSlot(1).isEmpty() && !inventory.getStackInSlot(3).isEmpty() && !inventory.getStackInSlot(0).isEmpty() && inventory.getStackInSlot(2).getCount()>=32) { - WortBucket wb = BBSItems.wortBucket; - ItemStack resultBucket = new ItemStack(wb); - resultBucket.setTagCompound(new NBTTagCompound()); - String nameHop[] = inventory.getStackInSlot(2).getUnlocalizedName().split("[.]"); - resultBucket.getTagCompound().setString("wortType", nameHop[1]); - //Use Water - inventory.getStackInSlot(1).shrink(1); - //Use Hops - if(nameHop.length>=2 && nameHop[2].equals("hop") && hasHops) { - Double quantD=0.0; - quantD = inventory.getStackInSlot(2).getCount() * BBSConstants.HOPS_WEIGHT; - //String quant = String.format("%.2f", quantD) + BBSConstants.UNIT_WEIGHT; - resultBucket.getTagCompound().setDouble("wortQuant", quantD); - resultBucket.getTagCompound().setString("hopType", nameHop[2]); - inventory.getStackInSlot(2).shrink(64); - } else if(nameHop.length>=2 && nameHop[2].equals("pellet") && hasHops) { - Double quantD=0.0; - quantD = inventory.getStackInSlot(2).getCount() * BBSConstants.PELLETS_WEIGHT; - //String quant = String.format("%.2f", quantD) + BBSConstants.UNIT_WEIGHT; - resultBucket.getTagCompound().setDouble("wortQuant", quantD); - resultBucket.getTagCompound().setString("hopType", nameHop[2]); - inventory.getStackInSlot(2).shrink(64); - } else { - hasHops=false; - hopsType=""; - } - - resultBucket.getTagCompound().setInteger("maltQuant", inventory.getStackInSlot(3).getCount()); - resultBucket.getTagCompound().setDouble("lovibond", lovibond); - inventory.getStackInSlot(3).shrink(5); - inventory.getStackInSlot(0).shrink(1); - resultBucket.getTagCompound().setInteger("timeBoiling", count); - inventory.setStackInSlot(4,resultBucket); - BBSMod.logger.info("Wort is Done! Type:" + resultBucket.getTagCompound().getString("wortType") + " Quant: " + resultBucket.getTagCompound().getString("wortQuant")); - temp = BBSConstants.ROOM_TEMP; - count = 0; - isClean = false; - hasHops = false; - hopsType = ""; - hasBucket = false; - hasWater = false; - - } - } catch (Exception e) { - BBSMod.logger.warn("Couldn't process Wort"); - e.printStackTrace(); - } - } else { - - markDirty(); - } - } else { - temp += ((0.25) * heat); - markDirty(); - } - } - } - - - public int getHeatRate() { - BlockPos posBelow = pos.add(0, -1, 0); - IBlockState stateBelow = world.getBlockState(posBelow); - if (stateBelow == null) - { - return 0; - } - - int heat; - Block heatSource = stateBelow.getBlock(); - if (heatSource == Blocks.LIT_FURNACE) { - heat = 2; - } else if (heatSource == Blocks.TORCH) { - heat = 1; - } else if (heatSource == Blocks.LAVA) { - heat = 4; - } else if (heatSource == Blocks.FLOWING_LAVA) { - heat = 4; - } else if (heatSource == Blocks.FIRE) { - heat = 3; - } else { heat = 0;} - - return heat; - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/ContainerFermentor.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/ContainerFermentor.java deleted file mode 100644 index 5c0d382..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/ContainerFermentor.java +++ /dev/null @@ -1,103 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket; - -import com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot.TileEntityAluminiumPot; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.Container; -import net.minecraft.inventory.Slot; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.IItemHandler; -import net.minecraftforge.items.SlotItemHandler; - - -public class ContainerFermentor extends Container { - - public ContainerFermentor(InventoryPlayer playerInv, final TileEntityFermentorBucket pot) { - - IItemHandler inventory = pot.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.NORTH); - addSlotToContainer(new SlotItemHandler(inventory, 0, 80, 35) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 1, 8, 16) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 2, 8, 35) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 3, 8, 54) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - addSlotToContainer(new SlotItemHandler(inventory, 4, 152, 35) { - @Override - public void onSlotChanged() { - pot.markDirty(); - } - }); - - for (int i = 0; i < 3; i++) { - for (int j = 0; j < 9; j++) { - addSlotToContainer(new Slot(playerInv, j + i * 9 + 9, 8 + j * 18, 84 + i * 18)); - } - } - - for (int k = 0; k < 9; k++) { - addSlotToContainer(new Slot(playerInv, k, 8 + k * 18, 142)); - } - } - - - @Override - public boolean canInteractWith(EntityPlayer player) { - return true; - } - - @Override - public ItemStack transferStackInSlot(EntityPlayer player, int index) { - ItemStack itemstack = ItemStack.EMPTY; - Slot slot = inventorySlots.get(index); - - if (slot != null && slot.getHasStack()) { - ItemStack itemstack1 = slot.getStack(); - itemstack = itemstack1.copy(); - - int containerSlots = inventorySlots.size() - player.inventory.mainInventory.size(); - - if (index < containerSlots) { - if (!this.mergeItemStack(itemstack1, containerSlots, inventorySlots.size(), true)) { - return ItemStack.EMPTY; - } - } else if (!this.mergeItemStack(itemstack1, 0, containerSlots, false)) { - return ItemStack.EMPTY; - } - - if (itemstack1.getCount() == 0) { - slot.putStack(ItemStack.EMPTY); - } else { - slot.onSlotChanged(); - } - - if (itemstack1.getCount() == itemstack.getCount()) { - return ItemStack.EMPTY; - } - - slot.onTake(player, itemstack1); - } - - return itemstack; - } - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/FermentorBucket.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/FermentorBucket.java deleted file mode 100644 index 8c411e0..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/FermentorBucket.java +++ /dev/null @@ -1,129 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket; - - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.blocks.BasicBlock; -import com.rafacost3d.bbs_mod.compat.top.TOPInfoProvider; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import com.rafacost3d.bbs_mod.init.BBSGuiHandler; -import com.rafacost3d.bbs_mod.init.BBSItems; -import mcjty.theoneprobe.api.IProbeHitData; -import mcjty.theoneprobe.api.IProbeInfo; -import mcjty.theoneprobe.api.ProbeMode; -import net.minecraft.block.ITileEntityProvider; -import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; -import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; -import net.minecraft.util.text.TextFormatting; -import net.minecraft.world.IBlockAccess; -import net.minecraft.world.World; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.IItemHandler; - -public class FermentorBucket extends BasicBlock implements ITileEntityProvider, TOPInfoProvider { - - public FermentorBucket(Material material, String name) { - super(Material.ROCK, name); - setCreativeTab(CreativeTabsBBS.BBSTabsMachines); - setHarvestLevel("shovel", -1); - setHardness(1F); - GameRegistry.registerTileEntity(TileEntityFermentorBucket.class, BBSMod.MODID + "_fermentorbucket"); - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory")); - } - - @SideOnly(Side.CLIENT) - @Override - public boolean shouldSideBeRendered(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side) { - return false; - } - - @Override - public boolean isBlockNormalCube(IBlockState blockState) { - return false; - } - - @Override - public boolean isOpaqueCube(IBlockState blockState) { - return false; - } - - @Override - public TileEntity createNewTileEntity(World worldIn, int meta) { - return new TileEntityFermentorBucket(); - } - - private TileEntityFermentorBucket getTE(World world, BlockPos pos) { - return (TileEntityFermentorBucket) world.getTileEntity(pos); - } - @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { - if (!world.isRemote) { - player.openGui(BBSMod.instance, BBSGuiHandler.FERMENTORBUCKET, world, pos.getX(), pos.getY(), pos.getZ()); - /* - if (!player.isSneaking()) { - TileEntityFermentorBucket tile = getTE(world, pos); - ItemStack itemStack = player.getHeldItem(hand); - if (itemStack.getItem() == BBSItems.sanitizer) { - itemStack.damageItem(1, player); - player.sendMessage(new TextComponentString("Cleaning Boiling Pot.")); - } - if (itemStack.getItem() == BBSItems.stirringspoon) { - //if(tile.getTimeBoil()<=105) { - // tile.setTimeBoil(tile.getTimeBoil() + 15); - // player.sendMessage(new TextComponentString("Boil Time: " + tile.getTimeBoil() + " min")); - //} else { - // tile.setTimeBoil(0); - //} - } - } else { - //player.openGui(BBSMod.instance, BBSGuiHandler.FERMENTORBUCKET, world, pos.getX(), pos.getY(), pos.getZ()); - } - */ - } - return true; - } - @Override - public void addProbeInfo(ProbeMode mode, IProbeInfo probeInfo, EntityPlayer player, World world, IBlockState blockState, IProbeHitData data) { - //TileEntity te = world.getTileEntity(data.getPos()); - try { - //if (te instanceof TileEntityAluminiumPot) { - // TileEntityAluminiumPot tile = (TileEntityAluminiumPot) te; - // Double d = tile.getTemp(); - // Integer i = d.intValue(); - probeInfo.horizontal().text(TextFormatting.GREEN + "6.5gl Fermentor Bucket"); - //} - } catch (Exception e) { - e.printStackTrace(); - } - } - - @Override - public void breakBlock(World world, BlockPos pos, IBlockState state) { - TileEntityFermentorBucket tile = getTE(world, pos); - IItemHandler itemHandler = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.NORTH); - ItemStack stack = itemHandler.getStackInSlot(0); - if (!stack.isEmpty()) { - EntityItem item = new EntityItem(world, pos.getX(), pos.getY(), pos.getZ(), stack); - world.spawnEntity(item); - } - super.breakBlock(world, pos, state); - } - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/GuiFermentor.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/GuiFermentor.java deleted file mode 100644 index e3fc0b5..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/GuiFermentor.java +++ /dev/null @@ -1,41 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket; - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.init.BBSBlocks; -import com.rafacost3d.bbs_mod.init.BBSConstants; -import net.minecraft.client.gui.inventory.GuiContainer; -import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.resources.I18n; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.Container; -import net.minecraft.util.ResourceLocation; - -public class GuiFermentor extends GuiContainer { - private static final ResourceLocation BG_TEXTURE = new ResourceLocation(BBSMod.MODID, "textures/gui/aluminium_kettle.png"); - private InventoryPlayer playerInv; - - public GuiFermentor(Container container, InventoryPlayer playerInv) { - super(container); - this.playerInv = playerInv; - } - - @Override - protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { - GlStateManager.color(1, 1, 1, 1); - mc.getTextureManager().bindTexture(BG_TEXTURE); - int x = (width - xSize) / 2; - int y = (height - ySize) / 2; - drawTexturedModalRect(x, y, 0, 0, xSize, ySize); - } - @Override - protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) { - String name = I18n.format(BBSBlocks.fermentorBucket.getUnlocalizedName() + ".name"); - fontRendererObj.drawString(name, xSize / 2 - fontRendererObj.getStringWidth(name) / 2, 6, 0x404040); - fontRendererObj.drawString(playerInv.getDisplayName().getUnformattedText(), 8, ySize - 94, 0x404040); - fontRendererObj.drawString(BBSConstants.ROOM_TEMP + " " + BBSConstants.DEGREE, 138, 73, 0x404040); - fontRendererObj.drawString("Water", 27, 21, 0x404040); - fontRendererObj.drawString("Yeast", 27, 40, 0x404040); - fontRendererObj.drawString("Extras", 27, 59, 0x404040); - fontRendererObj.drawString("Wort", 74, 53, 0x404040); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/TileEntityFermentorBucket.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/TileEntityFermentorBucket.java deleted file mode 100644 index 3c6aec0..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/fermentorbucket/TileEntityFermentorBucket.java +++ /dev/null @@ -1,228 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket; - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.init.BBSConstants; -import com.rafacost3d.bbs_mod.init.BBSHopsTypes; -import com.rafacost3d.bbs_mod.init.BBSItems; -import com.rafacost3d.bbs_mod.items.BeerBucket; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.ITickable; -import net.minecraftforge.common.capabilities.Capability; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.ItemStackHandler; - -import javax.annotation.Nullable; - -public class TileEntityFermentorBucket extends TileEntity implements ITickable { - - private int count; - private int delayCounter = 20; - private double temp = BBSConstants.ROOM_TEMP; - private boolean isClean = false; - private boolean hasWater = false; - private double waterQuant = 0.0; - private boolean hasYeast = false; - private double yeastQuant = 0.0; - private boolean hasExtra = false; - private double extraQuant = 0.0; - private String extraType = ""; - private int timeFerment=20; - private boolean hasBucket = false; - - - private ItemStackHandler inventory = new ItemStackHandler(5); - - public Boolean getClean() { return isClean;} - public Boolean setClean(Boolean clean) { isClean = clean; return isClean;} - public Boolean getWater() { - ItemStack itemStackinv = inventory.getStackInSlot(1); - if(itemStackinv.getItem() == BBSItems.watergallon) { - hasWater=true; - waterQuant = inventory.getStackInSlot(1).getCount(); - } else { - hasWater=false; - } - return hasWater; - } - public Boolean getYeast() { - ItemStack itemStackinv = inventory.getStackInSlot(2); - if(itemStackinv.getItem() == BBSItems.yeast) { - hasYeast=true; - yeastQuant = inventory.getStackInSlot(2).getCount(); - } else { - hasYeast=false; - } - return hasYeast; - } - public Boolean getExtra() { - ItemStack itemStackinv = inventory.getStackInSlot(3); - if(!itemStackinv.isEmpty()) { - String name[] = itemStackinv.getUnlocalizedName().split("[.]"); - if (name[2].equals("hop") || name[2].equals("pellet")) { - hasExtra = true; - extraQuant = inventory.getStackInSlot(3).getCount(); - } else { - hasExtra = false; - } - } - return hasExtra; - } - public String getExtraType() { - ItemStack itemStackinv = inventory.getStackInSlot(3); - if(!itemStackinv.isEmpty()) { - String name[] = itemStackinv.getUnlocalizedName().split("[.]"); - if (name.length >= 2 && name[2].equals("hop") || name[2].equals("pellet")) { - hasExtra = true; - extraType = itemStackinv.getDisplayName(); - } else { - hasExtra = false; - extraType = ""; - } - } - return extraType; - } - - public Boolean getBucket() { - ItemStack itemStackinv = inventory.getStackInSlot(0); - if(itemStackinv.getItem() == BBSItems.wortBucket) { - hasBucket=true; - } else { - hasBucket=false; - } - return hasBucket; - } - public double getTemp() { return temp; } - public int getCount() { return count; } - - @Override - public NBTTagCompound writeToNBT(NBTTagCompound compound) { - compound.setTag("inventory", inventory.serializeNBT()); - compound.setBoolean("clean", isClean); - compound.setBoolean("water", hasWater); - compound.setBoolean("yeast", hasYeast); - compound.setBoolean("extra", hasExtra); - compound.setBoolean("bucket", hasBucket); - compound.setString("extratype", extraType); - compound.setDouble("waterQ", waterQuant); - compound.setDouble("yeastQ", yeastQuant); - compound.setDouble("extraQ", extraQuant); - compound.setInteger("time", count); - return super.writeToNBT(compound); - } - - @Override - public void readFromNBT(NBTTagCompound compound) { - inventory.deserializeNBT(compound.getCompoundTag("inventory")); - isClean = compound.getBoolean("clean"); - hasWater = compound.getBoolean("water"); - hasYeast = compound.getBoolean("yeast"); - hasExtra = compound.getBoolean("extra"); - hasBucket = compound.getBoolean("bucket"); - extraType = compound.getString("extratype"); - waterQuant = compound.getDouble("waterQ"); - yeastQuant = compound.getDouble("yeastQ"); - extraQuant = compound.getDouble("extraQ"); - count = compound.getInteger("time"); - super.readFromNBT(compound); - } - - @Override - public boolean hasCapability(Capability capability, @Nullable EnumFacing facing) { - return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing); - } - - @Nullable - @Override - public T getCapability(Capability capability, @Nullable EnumFacing facing) { - return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY ? (T)inventory : super.getCapability(capability, facing); - } - - - @Override - public void update() { - if (!world.isRemote) { - updateCounter(); - } - } - - private void updateCounter() { - getWater(); - getYeast(); - getExtra(); - getExtraType(); - - delayCounter--; - if (delayCounter <=0 && hasYeast) { - delayCounter = 20; - count++; - markDirty(); - if(count>=timeFerment) { - try { - if(!inventory.getStackInSlot(0).isEmpty() && !inventory.getStackInSlot(1).isEmpty() && !inventory.getStackInSlot(2).isEmpty()) { - BeerBucket wb = BBSItems.beerBucket; - ItemStack resultBucket = new ItemStack(wb); - resultBucket.setTagCompound(new NBTTagCompound()); - // Hops Type - resultBucket.getTagCompound().setString("beerType", inventory.getStackInSlot(0).getTagCompound().getString("wortType")); - //SRM - Double e=2.718281828459045235; - Double srm=0.0; - Double mcu=0.0; - Integer boil = 1; - Integer time = inventory.getStackInSlot(0).getTagCompound().getInteger("timeBoiling"); - Integer batch = boil + inventory.getStackInSlot(1).getCount(); - Double lovibond=inventory.getStackInSlot(0).getTagCompound().getDouble("lovibond"); - Double quant= inventory.getStackInSlot(0).getTagCompound().getInteger("maltQuant") * 3.3; - mcu=lovibond * (quant/batch); - srm=1.4922 * Math.pow(mcu, 0.6859); - resultBucket.getTagCompound().setDouble("srm", srm); - //OG FG ABV - Double points = 37 * quant; - Double OG = ((points/batch) * 0.001)+1; - Double FG = ((OG-1) * (1-0.72))+1; - Double ABV = (OG-FG) * (125 * 1.05); - resultBucket.getTagCompound().setDouble("og", OG); - resultBucket.getTagCompound().setDouble("fg", FG); - resultBucket.getTagCompound().setDouble("abv", ABV); - //IBU - Double hopQuantg = inventory.getStackInSlot(0).getTagCompound().getDouble("wortQuant"); - Double hopQuant = 0.0352739619*hopQuantg; - Double BG = (batch/boil) * (OG-1); - Double tfactor=0.0; - Double bfactor=0.0; - BBSMod.logger.info(inventory.getStackInSlot(0).getTagCompound().getString("wortType")); - BBSMod.logger.info(BBSHopsTypes.getAlpha(inventory.getStackInSlot(0).getTagCompound().getString("wortType"))); - Double aa= BBSHopsTypes.getAlpha(inventory.getStackInSlot(0).getTagCompound().getString("wortType")); - tfactor = (1-Math.pow(e,(-0.04*time)))/4.15; - bfactor = 1.65*Math.pow(0.000125,BG); - Double util = bfactor * tfactor; - if(inventory.getStackInSlot(0).getTagCompound().getString("hopType").equals("pellet")) { - util = util * 1.1; - } - Double IBU = util * (((aa/100) * hopQuant * 7490)/batch); - resultBucket.getTagCompound().setDouble("ibu", IBU); - - //Remove Items - inventory.getStackInSlot(0).shrink(1); - inventory.getStackInSlot(1).shrink(5); - inventory.getStackInSlot(2).shrink(1); - inventory.setStackInSlot(4,resultBucket); - temp = BBSConstants.ROOM_TEMP; - count = 0; - isClean = false; - hasBucket = false; - hasWater = false; - } - } catch (Exception e) { - BBSMod.logger.warn("Couldn't process Beer"); - e.printStackTrace(); - } - } else { - markDirty(); - } - } - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/ContainerPelleter.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/ContainerPelleter.java deleted file mode 100644 index 0c929b4..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/ContainerPelleter.java +++ /dev/null @@ -1,74 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.pelleter; - -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.*; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.IItemHandler; -import net.minecraftforge.items.SlotItemHandler; - -public class ContainerPelleter extends Container { - - public ContainerPelleter(InventoryPlayer playerInv, final TileEntityPelleter pelleter) { - IItemHandler inventory = pelleter.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.NORTH); - addSlotToContainer(new SlotItemHandler(inventory, 0, 80, 35) { - @Override - public void onSlotChanged() { - pelleter.markDirty(); - } - }); - - for (int i = 0; i < 3; i++) { - for (int j = 0; j < 9; j++) { - addSlotToContainer(new Slot(playerInv, j + i * 9 + 9, 8 + j * 18, 84 + i * 18)); - } - } - - for (int k = 0; k < 9; k++) { - addSlotToContainer(new Slot(playerInv, k, 8 + k * 18, 142)); - } - } - - - @Override - public boolean canInteractWith(EntityPlayer playerIn) { - return true; - } - - @Override - public ItemStack transferStackInSlot(EntityPlayer playerIn, int index) { - ItemStack itemstack = ItemStack.EMPTY; - Slot slot = inventorySlots.get(index); - - if (slot != null && slot.getHasStack()) { - ItemStack itemstack1 = slot.getStack(); - itemstack = itemstack1.copy(); - - int containerSlots = inventorySlots.size() - playerIn.inventory.mainInventory.size(); - - if (index < containerSlots) { - if (!this.mergeItemStack(itemstack1, containerSlots, inventorySlots.size(), true)) { - return ItemStack.EMPTY; - } - } else if (!this.mergeItemStack(itemstack1, 0, containerSlots, false)) { - return ItemStack.EMPTY; - } - - if (itemstack1.getCount() == 0) { - slot.putStack(ItemStack.EMPTY); - } else { - slot.onSlotChanged(); - } - - if (itemstack1.getCount() == itemstack.getCount()) { - return ItemStack.EMPTY; - } - - slot.onTake(playerIn, itemstack1); - } - return itemstack; - } - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/GuiPelleter.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/GuiPelleter.java deleted file mode 100644 index 332de60..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/GuiPelleter.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.pelleter; - - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.init.BBSBlocks; -import net.minecraft.client.gui.inventory.GuiContainer; -import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.resources.I18n; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.Container; -import net.minecraft.util.ResourceLocation; - -public class GuiPelleter extends GuiContainer{ - - private static final ResourceLocation BG_TEXTURE = new ResourceLocation(BBSMod.MODID, "textures/gui/pelleter.png"); - - private InventoryPlayer playerInv; - - public GuiPelleter(Container container, InventoryPlayer playerInv) { - super(container); - this.playerInv = playerInv; - } - - @Override - protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) { - GlStateManager.color(1, 1, 1, 1); - mc.getTextureManager().bindTexture(BG_TEXTURE); - int x = (width - xSize) / 2; - int y = (height - ySize) / 2; - drawTexturedModalRect(x, y, 0, 0, xSize, ySize); - } - - @Override - protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) { - String name = I18n.format(BBSBlocks.pelleterBlock.getUnlocalizedName() + ".name"); - fontRendererObj.drawString(name, xSize / 2 - fontRendererObj.getStringWidth(name) / 2, 6, 0x404040); - fontRendererObj.drawString(playerInv.getDisplayName().getUnformattedText(), 8, ySize - 94, 0x404040); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/PelleterBlock.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/PelleterBlock.java deleted file mode 100644 index beb6bca..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/PelleterBlock.java +++ /dev/null @@ -1,89 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.pelleter; - - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.blocks.BasicBlock; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import com.rafacost3d.bbs_mod.init.BBSGetMarketDataFireBase; -import com.rafacost3d.bbs_mod.init.BBSGuiHandler; -import net.minecraft.block.ITileEntityProvider; -import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.IBlockAccess; -import net.minecraft.world.World; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.IItemHandler; - - -public class PelleterBlock extends BasicBlock implements ITileEntityProvider{ - - protected String name; - - public PelleterBlock(Material material, String name) { - super(Material.IRON, name); - setCreativeTab(CreativeTabsBBS.BBSTabsMachines); - GameRegistry.registerTileEntity(TileEntityPelleter.class, BBSMod.MODID + "_pelleter"); - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory")); - } - - @SideOnly(Side.CLIENT) - @Override - public boolean shouldSideBeRendered(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side) { - return false; - } - - @Override - public boolean isBlockNormalCube(IBlockState blockState) { - return false; - } - - @Override - public boolean isOpaqueCube(IBlockState blockState) { - return false; - } - - @Override - public TileEntity createNewTileEntity(World worldIn, int meta) { - return new TileEntityPelleter(); - } - - private TileEntityPelleter getTE(World world, BlockPos pos) { - return (TileEntityPelleter) world.getTileEntity(pos); - } - - @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { - player.openGui(BBSMod.instance, BBSGuiHandler.PELLETER, world, pos.getX(), pos.getY(), pos.getZ()); - player.openContainer.detectAndSendChanges(); - return true; - } - - @Override - public void breakBlock(World world, BlockPos pos, IBlockState state) { - TileEntityPelleter tile = getTE(world, pos); - IItemHandler itemHandler = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.NORTH); - ItemStack stack = itemHandler.getStackInSlot(0); - if (!stack.isEmpty()) { - EntityItem item = new EntityItem(world, pos.getX(), pos.getY(), pos.getZ(), stack); - world.spawnEntity(item); - } - super.breakBlock(world, pos, state); - } -} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/TileEntityPelleter.java b/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/TileEntityPelleter.java deleted file mode 100644 index e5faf8e..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/blocks/machines/pelleter/TileEntityPelleter.java +++ /dev/null @@ -1,69 +0,0 @@ -package com.rafacost3d.bbs_mod.blocks.machines.pelleter; - -import com.rafacost3d.bbs_mod.init.BBSCropRegistry; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.ITickable; -import net.minecraftforge.common.capabilities.Capability; -import net.minecraftforge.items.CapabilityItemHandler; -import net.minecraftforge.items.ItemStackHandler; - -import javax.annotation.Nullable; - - -public class TileEntityPelleter extends TileEntity implements ITickable { - private int delayCounter = 20; - public ItemStackHandler inventory = new ItemStackHandler(1); - - - @Override - public NBTTagCompound writeToNBT(NBTTagCompound compound) { - compound.setTag("inventory", inventory.serializeNBT()); - return super.writeToNBT(compound); - } - - @Override - public void readFromNBT(NBTTagCompound compound) { - inventory.deserializeNBT(compound.getCompoundTag("inventory")); - super.readFromNBT(compound); - } - - @Override - public boolean hasCapability(Capability capability, @Nullable EnumFacing facing) { - return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing); - } - - @Nullable - @Override - public T getCapability(Capability capability, @Nullable EnumFacing facing) { - return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY ? (T)inventory : super.getCapability(capability, facing); - } - - - @Override - public void update() { - if (!world.isRemote) { - updateCounter(); - } - } - - private void updateCounter() { - delayCounter--; - String nameHop[] = inventory.getStackInSlot(0).getUnlocalizedName().split("[.]"); - if (!world.isRemote && delayCounter <= 0 && inventory.getStackInSlot(0).getCount()>0 && nameHop[2].equals("hop")) { - delayCounter = 10; - markDirty(); - ItemStack itemStack=null; - itemStack = new ItemStack(BBSCropRegistry.getPellet(nameHop[1].toLowerCase())); - itemStack.grow(1); - inventory.getStackInSlot(0).shrink(1); - EntityItem entityItem = new EntityItem(world, this.getPos().getX(), this.getPos().getY(), this.getPos().getZ(), itemStack); - world.spawnEntity(entityItem); - } else { - markDirty(); - } - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/compat/MainCompatHandler.java b/src/main/java/com/rafacost3d/bbs_mod/compat/MainCompatHandler.java deleted file mode 100644 index 7bd83e5..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/compat/MainCompatHandler.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.rafacost3d.bbs_mod.compat; - -import com.rafacost3d.bbs_mod.compat.top.TOPCompatibility; -import net.minecraftforge.fml.common.Loader; - -public class MainCompatHandler { - public static void registerTOP() { - if (Loader.isModLoaded("theoneprobe")) { - TOPCompatibility.register(); - } - } - -} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPCompatibility.java b/src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPCompatibility.java deleted file mode 100644 index a450f95..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPCompatibility.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.rafacost3d.bbs_mod.compat.top; - -import com.rafacost3d.bbs_mod.BBSMod; -import mcjty.theoneprobe.api.*; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.world.World; -import net.minecraftforge.fml.common.event.FMLInterModComms; - -import javax.annotation.Nullable; - -public class TOPCompatibility { - - private static boolean registered; - - public static void register() { - if (registered) - return; - registered = true; - FMLInterModComms.sendFunctionMessage("theoneprobe", "getTheOneProbe", "com.rafacost3d.bbs_mod.compat.top.TOPCompatibility$GetTheOneProbe"); - } - - - public static class GetTheOneProbe implements com.google.common.base.Function { - - public static ITheOneProbe probe; - - @Nullable - @Override - public Void apply(ITheOneProbe theOneProbe) { - probe = theOneProbe; - System.out.println(" << " + BBSMod.MODNAME + " Enabled Support for The One Probe >> "); - probe.registerProvider(new IProbeInfoProvider() { - @Override - public String getID() { - return "bbs_mod:default"; - } - - @Override - public void addProbeInfo(ProbeMode mode, IProbeInfo probeInfo, EntityPlayer player, World world, IBlockState blockState, IProbeHitData data) { - if (blockState.getBlock() instanceof TOPInfoProvider) { - TOPInfoProvider provider = (TOPInfoProvider) blockState.getBlock(); - provider.addProbeInfo(mode, probeInfo, player, world, blockState, data); - } - - } - }); - return null; - } - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPInfoProvider.java b/src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPInfoProvider.java deleted file mode 100644 index d6bc83c..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/compat/top/TOPInfoProvider.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.rafacost3d.bbs_mod.compat.top; - -import mcjty.theoneprobe.api.IProbeHitData; -import mcjty.theoneprobe.api.IProbeInfo; -import mcjty.theoneprobe.api.ProbeMode; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.world.World; - -public interface TOPInfoProvider { - void addProbeInfo(ProbeMode mode, IProbeInfo probeInfo, EntityPlayer player, World world, IBlockState blockState, IProbeHitData data); -} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java b/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java index eb5b4df..86f7c76 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java +++ b/src/main/java/com/rafacost3d/bbs_mod/creativetabs/CreativeTabsBBS.java @@ -16,19 +16,19 @@ public class CreativeTabsBBS { public static final CreativeTabs BBSTabsHops = new CreativeTabs(Reference.MODID + ".hops") { @Override @SideOnly(Side.CLIENT) - public ItemStack getTabIconItem() { return CropRegistry.getFood(CropRegistry.HORIZON).getDefaultInstance(); } + public ItemStack getTabIconItem() { return CropRegistry.getFood(CropRegistry.POLARIS).getDefaultInstance(); } }; - +/* public static final CreativeTabs BBSTabsPellets = new CreativeTabs(Reference.MODID + ".pellets") { @Override @SideOnly(Side.CLIENT) public ItemStack getTabIconItem() { return CropRegistry.getPellet(CropRegistry.HORIZON).getDefaultInstance(); } }; - +*/ public static final CreativeTabs BBSTabsSeeds = new CreativeTabs(Reference.MODID + ".seeds") { @Override @SideOnly(Side.CLIENT) - public ItemStack getTabIconItem() { return CropRegistry.getFood(CropRegistry.HORIZON).getDefaultInstance(); } + public ItemStack getTabIconItem() { return CropRegistry.getFood(CropRegistry.POLARIS).getDefaultInstance(); } }; public static final CreativeTabs BBSTabsMachines = new CreativeTabs(Reference.MODID + ".machines") { diff --git a/src/main/java/com/rafacost3d/bbs_mod/fluids/BlockBeer.java b/src/main/java/com/rafacost3d/bbs_mod/fluids/BlockBeer.java deleted file mode 100644 index 88874c9..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/fluids/BlockBeer.java +++ /dev/null @@ -1,70 +0,0 @@ -package com.rafacost3d.bbs_mod.fluids; - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.client.renderer.block.statemap.StateMapperBase; -import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.item.Item; -import net.minecraft.item.ItemBlock; -import net.minecraft.item.ItemStack; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.World; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fluids.BlockFluidClassic; -import net.minecraftforge.fluids.Fluid; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -public class BlockBeer extends BlockFluidClassic { - - public static final String name = "beer"; - - public BlockBeer(Fluid fluid, Material material) { - super(FluidBeer.instance, Material.WATER); - setUnlocalizedName(BBSMod.MODID + "." + name); - setRegistryName(name); - setCreativeTab(CreativeTabsBBS.BBSTabsFluids); - GameRegistry.register(this); - GameRegistry.register(new ItemBlock(this), getRegistryName()); - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomMeshDefinition(Item.getItemFromBlock(this), new ItemMeshDefinition() { - @Override - public ModelResourceLocation getModelLocation(ItemStack stack) { - return new ModelResourceLocation(BBSMod.MODID + ":beer", "fluid"); - } - }); - ModelLoader.setCustomStateMapper(this, new StateMapperBase() { - @Override - protected ModelResourceLocation getModelResourceLocation(IBlockState state) { - return new ModelResourceLocation(BBSMod.MODID + ":beer", "fluid"); - } - }); - } - - - @Override - public void onEntityCollidedWithBlock(World worldIn, BlockPos pos, IBlockState state, Entity entityIn) { - if(entityIn instanceof EntityLivingBase) { - ((EntityLivingBase)entityIn).addPotionEffect(new PotionEffect(Potion.getPotionById(2), 100, 10, false, true)); - ((EntityLivingBase)entityIn).addPotionEffect(new PotionEffect(Potion.getPotionById(25), 10, 10, false, true)); - ((EntityLivingBase)entityIn).addPotionEffect(new PotionEffect(Potion.getPotionById(9), 1, 10, false, true)); - } - } - - @Override - public EnumBlockRenderType getRenderType(IBlockState state){ - return EnumBlockRenderType.MODEL; - } -} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/fluids/BlockWort.java b/src/main/java/com/rafacost3d/bbs_mod/fluids/BlockWort.java deleted file mode 100644 index e8409bf..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/fluids/BlockWort.java +++ /dev/null @@ -1,70 +0,0 @@ -package com.rafacost3d.bbs_mod.fluids; - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.client.renderer.block.statemap.StateMapperBase; -import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.item.Item; -import net.minecraft.item.ItemBlock; -import net.minecraft.item.ItemStack; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.World; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fluids.BlockFluidClassic; -import net.minecraftforge.fluids.Fluid; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - - -public class BlockWort extends BlockFluidClassic { - - public static String name = "wort"; - - public BlockWort(Fluid fluid, Material material) { - super(FluidWort.instance, Material.WATER); - setUnlocalizedName(BBSMod.MODID + "." + name); - setRegistryName(name); - setCreativeTab(CreativeTabsBBS.BBSTabsFluids); - GameRegistry.register(this); - GameRegistry.register(new ItemBlock(this), getRegistryName()); - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomMeshDefinition(Item.getItemFromBlock(this), new ItemMeshDefinition() { - @Override - public ModelResourceLocation getModelLocation(ItemStack stack) { - return new ModelResourceLocation(BBSMod.MODID + ":wort", "fluid"); - } - }); - ModelLoader.setCustomStateMapper(this, new StateMapperBase() { - @Override - protected ModelResourceLocation getModelResourceLocation(IBlockState state) { - return new ModelResourceLocation(BBSMod.MODID + ":wort", "fluid"); - } - }); - } - - - @Override - public void onEntityCollidedWithBlock(World worldIn, BlockPos pos, IBlockState state, Entity entityIn) { - if(entityIn instanceof EntityLivingBase) { - ((EntityLivingBase)entityIn).addPotionEffect(new PotionEffect(Potion.getPotionById(2), 200, 10, false, true)); - } - } - - @Override - public EnumBlockRenderType getRenderType(IBlockState state){ - return EnumBlockRenderType.MODEL; - } -} - diff --git a/src/main/java/com/rafacost3d/bbs_mod/fluids/FluidBeer.java b/src/main/java/com/rafacost3d/bbs_mod/fluids/FluidBeer.java deleted file mode 100644 index 74efc9f..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/fluids/FluidBeer.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.rafacost3d.bbs_mod.fluids; - -import com.rafacost3d.bbs_mod.BBSMod; -import net.minecraft.util.ResourceLocation; -import net.minecraftforge.fluids.Fluid; - -public class FluidBeer extends Fluid { - protected String name; - public static final FluidBeer instance = new FluidBeer("beer"); - - public FluidBeer(String name){ - super(name, new ResourceLocation(BBSMod.MODID + ":" + "fluid/" + name + "_still"), new ResourceLocation(BBSMod.MODID + ":" + "fluid/" + name + "_flow")); - setDensity(1060); - setTemperature(277); - setViscosity(1800); - } -} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/fluids/FluidWort.java b/src/main/java/com/rafacost3d/bbs_mod/fluids/FluidWort.java deleted file mode 100644 index ebbfa43..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/fluids/FluidWort.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.rafacost3d.bbs_mod.fluids; - -import com.rafacost3d.bbs_mod.BBSMod; -import net.minecraft.util.ResourceLocation; -import net.minecraftforge.fluids.Fluid; - -public class FluidWort extends Fluid { - - protected String name; - public static final FluidWort instance = new FluidWort("wort"); - - public FluidWort(String name){ - super(name, new ResourceLocation(BBSMod.MODID + ":" + "fluid/" + name + "_still"), new ResourceLocation(BBSMod.MODID + ":" + "fluid/" + name + "_flow")); - setDensity(10000); - setTemperature(338); - setViscosity(13000); - } -} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSBlocks.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSBlocks.java deleted file mode 100644 index 3a31a9b..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSBlocks.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot.AluminiumPot; -import com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket.FermentorBucket; -import com.rafacost3d.bbs_mod.blocks.machines.pelleter.PelleterBlock; -import net.minecraft.block.material.Material; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -public class BBSBlocks { - - public static PelleterBlock pelleterBlock; - public static AluminiumPot aluminiumPot; - public static FermentorBucket fermentorBucket; - - public static void preinit(){ - pelleterBlock = new PelleterBlock(Material.ROCK, "pelleter"); - aluminiumPot = new AluminiumPot(Material.IRON, "aluminiumpot"); - fermentorBucket = new FermentorBucket(Material.ROCK, "fermentorbucket"); - } - - @SideOnly(Side.CLIENT) - public static void initModels(){ - pelleterBlock.initModel(); - aluminiumPot.initModel(); - fermentorBucket.initModel(); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSConfig.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSConfig.java deleted file mode 100644 index 102cc4d..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSConfig.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.proxy.CommonProxy; -import net.minecraftforge.common.config.Configuration; -import org.apache.logging.log4j.Level; - -@net.minecraftforge.common.config.Config(modid=BBSMod.MODID) -public class BBSConfig { - private static final String CATEGORY_GENERAL = "general"; - - public static String breweryname = "Your Brewery"; - public static boolean metric = true; - - public static void readConfig() { - Configuration cfg = CommonProxy.config; - try { - cfg.load(); - initGeneralConfig(cfg); - } catch (Exception e1) { - BBSMod.logger.log(Level.ERROR, "Problem loading BBSMod config file!", e1); - } finally { - if (cfg.hasChanged()) { - cfg.addCustomCategoryComment(CATEGORY_GENERAL,"Selected below the Unit System you prefer. Metric (true) or US/Imperial (false)"); - cfg.save(); - } - } - } - - private static void initGeneralConfig(Configuration cfg) { - cfg.addCustomCategoryComment(CATEGORY_GENERAL,"Selected below the Unit System you prefer. Metric (true) or US/Imperial (false)"); - metric = cfg.getBoolean("metric", Configuration.CATEGORY_GENERAL, true,"Set Metric (true) or US/Imperial (false)"); - breweryname = cfg.getString("breweryname", CATEGORY_GENERAL, breweryname, "Set your Brewery Name here"); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSConstants.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSConstants.java index fd673ab..ca8a2ae 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSConstants.java +++ b/src/main/java/com/rafacost3d/bbs_mod/init/BBSConstants.java @@ -17,7 +17,7 @@ public class BBSConstants { public static Double BP_MIN_LIQUID = null; public static void preint(){ - if(BBSConfig.metric) { + if(ConfigInit.metric) { BBSMod.logger.info("Loading Metric Defaults"); DEGREE = " \u2103"; ROOM_TEMP = 20; diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropBlockRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropBlockRegistry.java deleted file mode 100644 index ad3154f..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropBlockRegistry.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - -import net.minecraft.block.Block; -import net.minecraft.item.ItemBlock; -import net.minecraftforge.fml.common.registry.GameRegistry; - -public class BBSCropBlockRegistry { - - private static boolean initialized = false; - - public static void initBlockRegistry() { - initialized = true; - } - - - public static void registerBlock(String registerName, ItemBlock itemBlock, Block block) { - block.setRegistryName(registerName); - block.setUnlocalizedName(registerName); - - GameRegistry.register(block); - - itemBlock.setRegistryName(registerName); - itemBlock.setUnlocalizedName(registerName); - GameRegistry.register(itemBlock); - } - - public static void registerBlock(String registerName, Block block) { - final ItemBlock itemBlock = new ItemBlock(block); - registerBlock(registerName, itemBlock, block); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropItemRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropItemRegistry.java deleted file mode 100644 index c0c6aa4..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropItemRegistry.java +++ /dev/null @@ -1,45 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import net.minecraft.client.resources.I18n; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -import java.util.HashMap; -import java.util.List; - -public class BBSCropItemRegistry { - public static final HashMap items = new HashMap(); - - public static boolean initialized = false; - - public static void registerItems() { - initialized = true; - } - - private static Item registerGenericItem(String registryName) { - final Item item = new Item(); - - return registerItem(item, registryName); - } - - public static Item registerItem(Item item, String registryName) { - String name[] = registryName.split("[.]"); - if (name[1].equals("rhizome")) { - item.setCreativeTab(CreativeTabsBBS.BBSTabsSeeds); - } else if (name[1].equals("pellet")) { - item.setCreativeTab(CreativeTabsBBS.BBSTabsPellets); - } else { - item.setCreativeTab(CreativeTabsBBS.BBSTabsHops); - } - item.setRegistryName(registryName); - item.setUnlocalizedName(registryName); - items.put(registryName, item); - return GameRegistry.register(item); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropRegistry.java deleted file mode 100644 index 0f78b0a..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSCropRegistry.java +++ /dev/null @@ -1,440 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - -import com.rafacost3d.bbs_mod.blocks.crops.BlockCrop; -import net.minecraft.init.Blocks; -import net.minecraft.item.Item; -import net.minecraft.item.ItemBlock; -import net.minecraft.item.ItemSeedFood; -import net.minecraft.item.ItemSeeds; -import net.minecraftforge.fml.common.FMLLog; - -import java.text.MessageFormat; -import java.util.HashMap; - -public class BBSCropRegistry { - - public static final String CROP_BLOCK_NAME = "hop{0}.crop"; - public static final String ITEM_NAME = "{0}.hop"; - public static final String SEED_ITEM_NAME = "{0}.rhizome"; - public static final String PELLET_ITEM_NAME = "{0}.pellet"; - - public static final String ADMIRAL = "admiral"; - public static final String AHTANUM = "ahtanum"; - public static final String AMARILLO = "amarillo"; - public static final String AQUILA = "aquila"; - public static final String ARAMIS = "aramis"; - public static final String AURORA = "aurora"; - public static final String BANNER = "banner"; - public static final String BCGOLDING = "bcgolding"; - public static final String BITTERGOLD = "bittergold"; - public static final String BLANC = "blanc"; - public static final String BOBEK = "bobek"; - public static final String BRAMLINGCROSS = "bramlingcross"; - public static final String BRAVO = "bravo"; - public static final String BREWERSGOLDGERMANY = "brewersgoldgermany"; - public static final String BREWERSGOLDUSA = "brewersgoldusa"; - public static final String BULLION = "bullion"; - public static final String CASCADE = "cascade"; - public static final String CELEIA = "celeia"; - public static final String CENTENNIAL = "centennial"; - public static final String CHALLENGER = "challenger"; - public static final String CHELAN = "chelan"; - public static final String CHINOOK = "chinook"; - public static final String CITRA = "citra"; - public static final String CLUSTER = "cluster"; - public static final String COLUMBUS = "columbus"; - public static final String COMET = "comet"; - public static final String CRYSTAL = "crystal"; - public static final String DRRUDI = "drrudi"; - public static final String EASTKENTGOLDING = "eastkentgolding"; - public static final String EKUANOT = "ekuanot"; - public static final String ELLA = "ella"; - public static final String EROICA = "eroica"; - public static final String FALCONERSFLIGHT = "falconersflight"; - public static final String FIRSTGOLD = "firstgold"; - public static final String FUGGLEUK = "fuggleuk"; - public static final String GALAXY = "galaxy"; - public static final String GALENA = "galena"; - public static final String GLACIER = "glacier"; - public static final String GOLD = "gold"; - public static final String GOLDINGUK = "goldinguk"; - public static final String GOLDINGUSA = "goldingusa"; - public static final String GREENBULLET = "greenbullet"; - public static final String HALLERTAUMITTELFRUH = "hallertaumittelfruh"; - public static final String HALLERTAUUSA = "hallertauusa"; - public static final String HBC431EXPERIMENTAL = "hbc431experimental"; - public static final String HBC438EXPERIMENTAL = "hbc438experimental"; - public static final String HBC472EXPERIMENTAL = "hbc472experimental"; - public static final String HBC682EXPERIMENTAL = "hbc682experimental"; - public static final String HELGA = "helga"; - public static final String HERALD = "herald"; - public static final String HERKULES = "herkules"; - public static final String HERSBRUCKER = "hersbrucker"; - public static final String HORIZON = "horizon"; - public static final String HUELLMELON = "huellmelon"; - public static final String HULLERBITTERER = "hullerbitterer"; - public static final String KOHATU = "kohatu"; - public static final String LIBERTY = "liberty"; - public static final String LORAL = "loral"; - public static final String LUBELSKA = "lubelska"; - public static final String MAGNUM = "magnum"; - public static final String MANDARINABAVARIA = "mandarinabavaria"; - public static final String MERKUR = "merkur"; - public static final String MILLENIUM = "millenium"; - public static final String MOSAIC = "mosaic"; - public static final String MOTUEKA = "motueka"; - public static final String MOUNTHOOD = "mounthood"; - public static final String MOUNTRAINIER = "mountrainier"; - public static final String NELSONSAUVIN = "nelsonsauvin"; - public static final String NEWPORT = "newport"; - public static final String NORTHDOWN = "northdown"; - public static final String NORTHERNBREWER = "northernbrewer"; - public static final String NUGGET = "nugget"; - public static final String OLYMPIC = "olympic"; - public static final String OMEGA = "omega"; - public static final String OPAL = "opal"; - public static final String ORION = "orion"; - public static final String PACIFICA = "pacifica"; - public static final String PACIFICGEM = "pacificgem"; - public static final String PACIFICJADE = "pacificjade"; - public static final String PALISADE = "palisade"; - public static final String PERLEGERMANY = "perlegermany"; - public static final String PERLEUSA = "perleusa"; - public static final String PHOENIX = "phoenix"; - public static final String PILGRIM = "pilgrim"; - public static final String PIONEER = "pioneer"; - public static final String POLARIS = "polaris"; - public static final String PREMIANT = "premiant"; - public static final String PRIDEOFRINGWOOD = "prideofringwood"; - public static final String PROGRESS = "progress"; - public static final String RAKAU = "rakau"; - public static final String RECORD = "record"; - public static final String RIWAKA = "riwaka"; - public static final String SAAZ = "saaz"; - public static final String SANTIAM = "santiam"; - public static final String SAPHIR = "saphir"; - public static final String SATUS = "satus"; - public static final String SAVINJSKIGOLDING = "savinjskigolding"; - public static final String SELECT = "select"; - public static final String SIMCOE = "simcoe"; - public static final String SMARAGD = "smaragd"; - public static final String SORACHIACE = "sorachiace"; - public static final String SOUTHERNCROSS = "southerncross"; - public static final String SOVEREIGN = "sovereign"; - public static final String SPALT = "spalt"; - public static final String STERLING = "sterling"; - public static final String STICKLEBRACT = "sticklebract"; - public static final String STRISSELSPALT = "strisselspalt"; - public static final String STYRIANGOLDING = "styriangolding"; - public static final String SUMMER = "summer"; - public static final String SUMMIT = "summit"; - public static final String SUPERALPHA = "superalpha"; - public static final String SUPERPRIDE = "superpride"; - public static final String SUSSEX = "sussex"; - public static final String SYLVA = "sylva"; - public static final String TAHOMA = "tahoma"; - public static final String TALISMAN = "talisman"; - public static final String TARGET = "target"; - public static final String TETTNANGERGERMANY = "tettnangergermany"; - public static final String TETTNANGERUSA = "tettnangerusa"; - public static final String TOMAHAWK = "tomahawk"; - public static final String TRADITION = "tradition"; - public static final String TRIPLEPEARL = "triplepearl"; - public static final String TRISKEL = "triskel"; - public static final String ULTRA = "ultra"; - public static final String VANGUARD = "vanguard"; - public static final String WAIITI = "waiiti"; - public static final String WAIMEA = "waimea"; - public static final String WAKATU = "wakatu"; - public static final String WARRIOR = "warrior"; - public static final String WHITBREADGOLDING = "whitbreadgolding"; - public static final String WILLAMETTE = "willamette"; - public static final String YAKIMACLUSTER = "yakimacluster"; - public static final String YAMHILLGOLDING = "yamhillgolding"; - public static final String YEOMAN = "yeoman"; - public static final String ZENITH = "zenith"; - public static final String ZEUS = "zeus"; - public static final String ZYTHOS = "zythos"; - - - public static final String[] cropNames = new String[] { - ADMIRAL, - AHTANUM, - AMARILLO, - AQUILA, - ARAMIS, - AURORA, - BANNER, - BCGOLDING, - BITTERGOLD, - BLANC, - BOBEK, - BRAMLINGCROSS, - BRAVO, - BREWERSGOLDGERMANY, - BREWERSGOLDUSA, - BULLION, - CASCADE, - CELEIA, - CENTENNIAL, - CHALLENGER, - CHELAN, - CHINOOK, - CITRA, - CLUSTER, - COLUMBUS, - COMET, - CRYSTAL, - DRRUDI, - EASTKENTGOLDING, - EKUANOT, - ELLA, - EROICA, - FALCONERSFLIGHT, - FIRSTGOLD, - FUGGLEUK, - GALAXY, - GALENA, - GLACIER, - GOLD, - GOLDINGUK, - GOLDINGUSA, - GREENBULLET, - HALLERTAUMITTELFRUH, - HALLERTAUUSA, - HBC431EXPERIMENTAL, - HBC438EXPERIMENTAL, - HBC472EXPERIMENTAL, - HBC682EXPERIMENTAL, - HELGA, - HERALD, - HERKULES, - HERSBRUCKER, - HORIZON, - HUELLMELON, - HULLERBITTERER, - KOHATU, - LIBERTY, - LORAL, - LUBELSKA, - MAGNUM, - MANDARINABAVARIA, - MERKUR, - MILLENIUM, - MOSAIC, - MOTUEKA, - MOUNTHOOD, - MOUNTRAINIER, - NELSONSAUVIN, - NEWPORT, - NORTHDOWN, - NORTHERNBREWER, - NUGGET, - OLYMPIC, - OMEGA, - OPAL, - ORION, - PACIFICA, - PACIFICGEM, - PACIFICJADE, - PALISADE, - PERLEGERMANY, - PERLEUSA, - PHOENIX, - PILGRIM, - PIONEER, - POLARIS, - PREMIANT, - PRIDEOFRINGWOOD, - PROGRESS, - RAKAU, - RECORD, - RIWAKA, - SAAZ, - SANTIAM, - SAPHIR, - SATUS, - SAVINJSKIGOLDING, - SELECT, - SIMCOE, - SMARAGD, - SORACHIACE, - SOUTHERNCROSS, - SOVEREIGN, - SPALT, - STERLING, - STICKLEBRACT, - STRISSELSPALT, - STYRIANGOLDING, - SUMMER, - SUMMIT, - SUPERALPHA, - SUPERPRIDE, - SUSSEX, - SYLVA, - TAHOMA, - TALISMAN, - TARGET, - TETTNANGERGERMANY, - TETTNANGERUSA, - TOMAHAWK, - TRADITION, - TRIPLEPEARL, - TRISKEL, - ULTRA, - VANGUARD, - WAIITI, - WAIMEA, - WAKATU, - WARRIOR, - WHITBREADGOLDING, - WILLAMETTE, - YAKIMACLUSTER, - YAMHILLGOLDING, - YEOMAN, - ZENITH, - ZEUS, - ZYTHOS - }; - - private static boolean isInitialized = false; - - private static final HashMap seeds = new HashMap(); - private static final HashMap foods = new HashMap(); - private static final HashMap pellets = new HashMap(); - private static final HashMap crops = new HashMap(); - - public static HashMap getSeeds() { - return seeds; - } - - public static HashMap getFoods() { - return foods; - } - - public static HashMap getPellets() { - return pellets; - } - - public static HashMap getCrops() { - if (!isInitialized) { - FMLLog.bigWarning("Crop registry is not initialized."); - return new HashMap(); - } - return crops; - } - - public static boolean isInitialized() { - return isInitialized; - } - - public static Item getSeed(String cropName) { - if (!isInitialized()) { - FMLLog.bigWarning("Crop registry has not been initialized yet."); - return null; - } - - if (!seeds.containsKey(cropName)) { - FMLLog.bigWarning("No seed for key %s", cropName); - return null; - } - - - return seeds.get(cropName); - } - - public static ItemSeedFood getFood(String cropName) { - if (!isInitialized()) { - FMLLog.bigWarning("Crop registry has not been initialized yet."); - return null; - } - - if (!foods.containsKey(cropName)) { - FMLLog.bigWarning("No food for key %s", cropName); - return null; - } - - - return foods.get(cropName); - } - - public static ItemSeedFood getPellet(String cropName) { - if (!isInitialized()) { - FMLLog.bigWarning("Crop registry has not been initialized yet."); - return null; - } - - if (!pellets.containsKey(cropName)) { - FMLLog.bigWarning("No pellet for key %s", cropName); - return null; - } - - - return pellets.get(cropName); - } - - public static BlockCrop getCrop(String cropName) { - if (!isInitialized()) { - FMLLog.bigWarning("Crop registry has not been initialized yet."); - return null; - } - - if (!crops.containsKey(cropName)) { - FMLLog.bigWarning("No crop for key %s", cropName); - return null; - } - - - return crops.get(cropName); - } - - public static void registerCrops() { - if (isInitialized) return; - - for (String cropName : cropNames) { - registerCrop(cropName); - } - - isInitialized = true; - } - - private static void registerCrop(String cropName) { - final String registryName = MessageFormat.format(CROP_BLOCK_NAME, cropName); - final BlockCrop cropBlock = new BlockCrop(registryName, cropName); - final ItemBlock cropItemBlock = new BBSItemBlockCrop(cropBlock); - - BBSCropBlockRegistry.registerBlock(registryName, cropItemBlock, cropBlock); - - final ItemSeedFood item = createItem(cropBlock); - BBSCropItemRegistry.registerItem(item, MessageFormat.format(ITEM_NAME, cropName)); - cropBlock.setFood(item); - - final ItemSeedFood itemPellet = createItem(cropBlock); - BBSCropItemRegistry.registerItem(itemPellet, MessageFormat.format(PELLET_ITEM_NAME, cropName)); - //cropBlock.setFood(itemPellet); - - final Item seedItem = createSeed(cropBlock); - BBSCropItemRegistry.registerItem(seedItem, getSeedName(cropName)); - cropBlock.setSeed(seedItem); - - seeds.put(cropName, seedItem); - foods.put(cropName, item); - pellets.put(cropName, itemPellet); - crops.put(cropName, cropBlock); - - } - - private static String getSeedName(String cropName) { - return MessageFormat.format(SEED_ITEM_NAME, cropName); - } - - - private static ItemSeedFood createItem(BlockCrop cropBlock) { - return new ItemSeedFood(1, 0.6F, cropBlock, Blocks.FARMLAND); - } - - private static Item createSeed(BlockCrop cropBlock) { - return new ItemSeeds(cropBlock, Blocks.FARMLAND); - } - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSFluids.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSFluids.java deleted file mode 100644 index e6ae7c6..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSFluids.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - -import com.rafacost3d.bbs_mod.fluids.BlockBeer; -import com.rafacost3d.bbs_mod.fluids.BlockWort; -import com.rafacost3d.bbs_mod.fluids.FluidBeer; -import com.rafacost3d.bbs_mod.fluids.FluidWort; -import net.minecraft.block.material.Material; -import net.minecraftforge.fluids.FluidRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -public class BBSFluids { - - public static BlockWort blockWort; - public static BlockBeer blockBeer; - - public static void preinit() { - FluidRegistry.registerFluid(FluidWort.instance); - FluidRegistry.registerFluid(FluidBeer.instance); - - FluidRegistry.addBucketForFluid(FluidWort.instance); - FluidRegistry.addBucketForFluid(FluidBeer.instance); - - blockWort = new BlockWort(FluidWort.instance, Material.WATER); - blockBeer = new BlockBeer(FluidBeer.instance, Material.WATER); - - } - - @SideOnly(Side.CLIENT) - public static void initModels(){ - blockWort.initModel(); - blockBeer.initModel(); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSGetMarketDataFireBase.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSGetMarketDataFireBase.java deleted file mode 100644 index d13c47e..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSGetMarketDataFireBase.java +++ /dev/null @@ -1,68 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import com.google.gson.Gson; -import com.google.gson.JsonElement; -import com.google.gson.JsonStreamParser; -import com.rafacost3d.bbs_mod.BBSMod; -import java.io.InputStreamReader; -import java.net.URL; -import java.util.HashMap; - - -public class BBSGetMarketDataFireBase extends Thread { - - public static BBSGetMarketDataFireBase activeThread; - public static HashMap priceList = new HashMap(); - public static HashMap quantList = new HashMap(); - - public static HashMap getPriceList() { - return priceList; - } - - public static HashMap getQuantList() { - return quantList; - } - - public BBSGetMarketDataFireBase(){ - setName("Beer Brewing Simulator Market Data"); - setDaemon(true); - start(); - activeThread=this; - } - - @Override - public void run(){ - Gson gson = new Gson(); - try { - BBSMod.logger.info("Attempting to download Today's Market Data from FireBase Server"); - URL url = new URL("https://tbbs-be97f.firebaseio.com/market_data.json"); - JsonStreamParser parser = new JsonStreamParser(new InputStreamReader(url.openStream())); - while(parser.hasNext()) { - try{ - JsonElement je = parser.next(); - BBSMarketData[] market = gson.fromJson(je, BBSMarketData[].class); - if(market!=null) { - for(int i=0; i < market.length; i++ ) { - try { - BBSMod.logger.info("[BBSMod Market Info]: Price and Quantity for " + market[i].getItemKey() + " were updated."); - priceList.put(market[i].getItemKey(), market[i].getUnitPrice()); - quantList.put(market[i].getItemKey(), market[i].getQuantity()); - } - catch (Exception e) { - //e.printStackTrace(); - } - } - } - }catch(Exception exParse) { - BBSMod.logger.warn("Error on parsing Today's Market Data"); - exParse.printStackTrace(); - } - } - } catch(Exception e) { - BBSMod.logger.warn("Could not load Today's Market Data"); - e.printStackTrace(); - } - - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSGuiHandler.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSGuiHandler.java deleted file mode 100644 index 3559cc7..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSGuiHandler.java +++ /dev/null @@ -1,53 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot.ContainerPot; -import com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot.GuiPot; -import com.rafacost3d.bbs_mod.blocks.machines.aluminiumpot.TileEntityAluminiumPot; -import com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket.ContainerFermentor; -import com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket.GuiFermentor; -import com.rafacost3d.bbs_mod.blocks.machines.fermentorbucket.TileEntityFermentorBucket; -import com.rafacost3d.bbs_mod.blocks.machines.pelleter.ContainerPelleter; -import com.rafacost3d.bbs_mod.blocks.machines.pelleter.GuiPelleter; -import com.rafacost3d.bbs_mod.blocks.machines.pelleter.TileEntityPelleter; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.Container; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.World; -import net.minecraftforge.fml.common.network.IGuiHandler; - -public class BBSGuiHandler implements IGuiHandler { - public static final int PELLETER = 0; - public static final int ALUMINIUMPOT = 1; - public static final int FERMENTORBUCKET = 2; - - - @Override - public Container getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { - switch (ID) { - case PELLETER: - return new ContainerPelleter(player.inventory, (TileEntityPelleter) world.getTileEntity(new BlockPos(x, y, z))); - case ALUMINIUMPOT: - return new ContainerPot(player.inventory, (TileEntityAluminiumPot) world.getTileEntity(new BlockPos(x, y, z))); - case FERMENTORBUCKET: - return new ContainerFermentor(player.inventory, (TileEntityFermentorBucket) world.getTileEntity(new BlockPos(x, y, z))); - default: - return null; - } - } - - @Override - public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { - switch (ID) { - case PELLETER: - return new GuiPelleter(getServerGuiElement(ID, player, world, x, y, z), player.inventory); - case ALUMINIUMPOT: - return new GuiPot(getServerGuiElement(ID, player, world, x, y, z), player.inventory); - case FERMENTORBUCKET: - return new GuiFermentor(getServerGuiElement(ID, player, world, x, y, z), player.inventory); - default: - return null; - } - } - -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSHopsTypes.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSHopsTypes.java deleted file mode 100644 index b515f83..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSHopsTypes.java +++ /dev/null @@ -1,160 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import java.util.HashMap; -import java.util.Map; - -public class BBSHopsTypes { - - public static final Map alphas = new HashMap(); - - - public BBSHopsTypes() { - - } - public static Double getAlpha(String name) { - alphas.put("admiral", 14.5); - alphas.put("ahtanum", 5.5); - alphas.put("amarillo", 8.6); - alphas.put("aquila", 7.0); - alphas.put("aramis", 8.1); - alphas.put("aurora", 10.0); - alphas.put("banner", 10.7); - alphas.put("bcgolding", 5.0); - alphas.put("bittergold", 13.0); - alphas.put("blanc", 10.5); - alphas.put("bobek", 5.0); - alphas.put("bramlingcross", 6.5); - alphas.put("bravo", 16.5); - alphas.put("brewersgoldgermany", 5.5); - alphas.put("brewersgoldusa", 9.5); - alphas.put("bullion", 7.5); - alphas.put("cascade", 7.0); - alphas.put("celeia", 4.5); - alphas.put("centennial", 7.8); - alphas.put("challenger", 8.5); - alphas.put("chelan", 13.0); - alphas.put("chinook", 13.0); - alphas.put("citra", 11.0); - alphas.put("cluster", 7.5); - alphas.put("columbus", 4.0); - alphas.put("comet", 9.0); - alphas.put("crystal", 4.5); - alphas.put("drrudi", 11.0); - alphas.put("eastkentgolding", 5.0); - alphas.put("ekuanot", 14.0); - alphas.put("ella", 14.8); - alphas.put("eroica", 12.0); - alphas.put("falconersflight", 10.8); - alphas.put("firstgold", 7.5); - alphas.put("fuggleuk", 4.5); - alphas.put("galaxy", 13.8); - alphas.put("galena", 13.0); - alphas.put("glacier", 5.5); - alphas.put("gold", 5.0); - alphas.put("goldinguk", 5.0); - alphas.put("goldingusa", 4.5); - alphas.put("greenbullet", 12.5); - alphas.put("hallertaumittelfruh", 3.75); - alphas.put("hallertauusa", 5.0); - alphas.put("hbc431experimental", 15.0); - alphas.put("hbc438experimental", 13.7); - alphas.put("hbc472experimental", 10.0); - alphas.put("hbc682experimental", 19.5); - alphas.put("helga", 6.0); - alphas.put("herald", 12.0); - alphas.put("herkules", 14.5); - alphas.put("hersbrucker", 3.0); - alphas.put("horizon", 10.5); - alphas.put("huellmelon", 7.0); - alphas.put("hullerbitterer", 5.75); - alphas.put("kohatu", 6.5); - alphas.put("liberty", 4.0); - alphas.put("loral", 11.8); - alphas.put("lubelska", 4.5); - alphas.put("magnum", 15.0); - alphas.put("mandarinabavaria", 8.5); - alphas.put("merkur", 13.0); - alphas.put("millenium", 17.0); - alphas.put("mosaic", 12.0); - alphas.put("motueka", 7.0); - alphas.put("mounthood", 4.8); - alphas.put("mountrainier", 6.2); - alphas.put("nelsonsauvin", 12.5); - alphas.put("newport", 11.0); - alphas.put("northdown", 8.6); - alphas.put("northernbrewer", 7.8); - alphas.put("nugget", 14.0); - alphas.put("olympic", 12.0); - alphas.put("omega", 10.0); - alphas.put("opal", 6.5); - alphas.put("orion", 7.0); - alphas.put("pacifica", 14.0); - alphas.put("pacificgem", 13.0); - alphas.put("pacificjade", 5.5); - alphas.put("palisade", 8.0); - alphas.put("perlegermany", 6.5); - alphas.put("perleusa", 7.5); - alphas.put("phoenix", 10.0); - alphas.put("pilgrim", 11.0); - alphas.put("pioneer", 10.0); - alphas.put("polaris", 20.5); - alphas.put("premiant", 8.5); - alphas.put("prideofringwood", 9.5); - alphas.put("progress", 6.25); - alphas.put("rakau", 10.5); - alphas.put("record", 6.5); - alphas.put("riwaka", 5.5); - alphas.put("saaz", 3.5); - alphas.put("santiam", 7.0); - alphas.put("saphir", 3.0); - alphas.put("satus", 13.0); - alphas.put("savinjskigolding", 5.0); - alphas.put("select", 4.0); - alphas.put("simcoe", 13.0); - alphas.put("smaragd", 5.0); - alphas.put("sorachiace", 13.0); - alphas.put("southerncross", 12.5); - alphas.put("sovereign", 5.5); - alphas.put("spalt", 4.0); - alphas.put("sterling", 7.0); - alphas.put("sticklebract", 11.5); - alphas.put("strisselspalt", 2.0); - alphas.put("styriangolding", 5.5); - alphas.put("summer", 6.0); - alphas.put("summit", 16.0); - alphas.put("superalpha", 13.0); - alphas.put("superpride", 14.0); - alphas.put("sussex", 5.0); - alphas.put("sylva", 6.5); - alphas.put("tahoma", 7.0); - alphas.put("talisman", 8.0); - alphas.put("target", 11.5); - alphas.put("tettnangergermany", 4.5); - alphas.put("tettnangerusa", 5.0); - alphas.put("tomahawk", 16.0); - alphas.put("tradition", 5.5); - alphas.put("triplepearl", 10.0); - alphas.put("triskel", 8.5); - alphas.put("ultra", 9.5); - alphas.put("vanguard", 5.5); - alphas.put("waiiti", 3.0); - alphas.put("waimea", 17.5); - alphas.put("wakatu", 7.5); - alphas.put("warrior", 16.5); - alphas.put("whitbreadgolding", 6.5); - alphas.put("willamette", 5.5); - alphas.put("yakimacluster", 7.0); - alphas.put("yamhillgolding", 4.0); - alphas.put("yeoman", 7.25); - alphas.put("zenith", 9.0); - alphas.put("zeus", 16.0); - alphas.put("zythos", 11.0); - - if(alphas.containsKey(name)) { - return alphas.get(name); - } else { - return 0.0; - } - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSItemBlockCrop.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSItemBlockCrop.java deleted file mode 100644 index feb60da..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSItemBlockCrop.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - -import net.minecraft.block.Block; -import net.minecraft.client.resources.I18n; -import net.minecraft.item.ItemBlock; -import net.minecraft.item.ItemStack; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - - -public class BBSItemBlockCrop extends ItemBlock { - - public BBSItemBlockCrop(Block block) { - super(block); - } - - @SideOnly(Side.CLIENT) - @Override - public String getItemStackDisplayName(ItemStack stack) { - return (I18n.format("bbs_mod." + this.getUnlocalizedNameInefficiently(stack) + ".name")).trim(); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSItemRenderRegister.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSItemRenderRegister.java deleted file mode 100644 index f08b878..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSItemRenderRegister.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - -import net.minecraft.client.Minecraft; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.item.Item; - -public class BBSItemRenderRegister { - public static void registerItemRenderer() { - for (Item item : BBSCropItemRegistry.items.values()) { - register(item); - } - } - - private static void register(final Item item) { - final String resName = item.getRegistryName().toString(); - - final ModelResourceLocation res = - new ModelResourceLocation(resName, "inventory"); - Minecraft.getMinecraft().getRenderItem(). - getItemModelMesher().register(item, 0, res); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSItems.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSItems.java deleted file mode 100644 index 0b914be..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSItems.java +++ /dev/null @@ -1,76 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import com.rafacost3d.bbs_mod.items.*; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - - -public class BBSItems { - - public static ItemBase stirringspoon; - public static ItemBase sanitizer; - public static ItemBase watergallon; - public static ItemBase lme_pilsen; - public static ItemBase lme_extralight; - public static ItemBase lme_wheat; - public static ItemBase lme_light; - public static ItemBase lme_munich; - public static ItemBase lme_amber; - public static ItemBase lme_dark; - public static ItemBase priming_sugar; - public static ItemBase yeast; - public static ItemBase thermometer; - public static WortBucket wortBucket; - public static BeerBucket beerBucket; - - - - public static void preinit(){ - stirringspoon = new ItemBase("stirringspoon").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - sanitizer = new ItemBase("sanitizer").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - sanitizer.setMaxDamage(64); - sanitizer.setMaxStackSize(1); - watergallon = new ItemBase("watergallon").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - watergallon.setMaxDamage(64); - watergallon.setMaxStackSize(5); - lme_pilsen = new ItemBase("lme_pilsen").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - lme_pilsen.setMaxStackSize(5); - lme_extralight = new ItemBase("lme_extralight").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - lme_extralight.setMaxStackSize(5); - lme_wheat = new ItemBase("lme_wheat").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - lme_wheat.setMaxStackSize(5); - lme_light = new ItemBase("lme_light").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - lme_light.setMaxStackSize(5); - lme_munich = new ItemBase("lme_munich").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - lme_munich.setMaxStackSize(5); - lme_amber = new ItemBase("lme_amber").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - lme_amber.setMaxStackSize(5); - lme_dark = new ItemBase("lme_dark").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - lme_dark.setMaxStackSize(5); - priming_sugar = new ItemBase("priming_sugar").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - yeast = new ItemBase("yeast").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - thermometer = new ItemBase("thermometer").setCreativeTab(CreativeTabsBBS.BBSTabsItems); - wortBucket = new WortBucket(BBSFluids.blockWort); - beerBucket = new BeerBucket(BBSFluids.blockBeer); - } - - @SideOnly(Side.CLIENT) - public static void initModels() { - stirringspoon.initModel(); - sanitizer.initModel(); - watergallon.initModel(); - lme_pilsen.initModel(); - lme_extralight.initModel(); - lme_wheat.initModel(); - lme_light.initModel(); - lme_munich.initModel(); - lme_amber.initModel(); - lme_dark.initModel(); - priming_sugar.initModel(); - yeast.initModel(); - thermometer.initModel(); - wortBucket.initModel(); - beerBucket.initModel(); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSMarketData.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSMarketData.java deleted file mode 100644 index 33b875b..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSMarketData.java +++ /dev/null @@ -1,53 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - -import com.google.gson.annotations.Expose; -import com.google.gson.annotations.SerializedName; -import org.apache.commons.lang3.builder.ToStringBuilder; - -public class BBSMarketData { - @SerializedName("itemKey") - @Expose - private String itemKey; - @SerializedName("quantity") - @Expose - private Integer quantity; - @SerializedName("unitPrice") - @Expose - private Double unitPrice; - - public BBSMarketData(String itemKey, Integer quantity, Double unitPrice) { - super(); - this.itemKey = itemKey; - this.quantity = quantity; - this.unitPrice = unitPrice; - } - - public String getItemKey() { - return itemKey; - } - - public void setItemKey(String itemKey) { - this.itemKey = itemKey; - } - - public Integer getQuantity() { - return quantity; - } - - public void setQuantity(Integer quantity) { - this.quantity = quantity; - } - - public Double getUnitPrice() { - return unitPrice; - } - - public void setUnitPrice(Double unitPrice) { - this.unitPrice = unitPrice; - } - - @Override - public String toString() { - return ToStringBuilder.reflectionToString(this); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSRecipes.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSRecipes.java deleted file mode 100644 index 5992761..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSRecipes.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import net.minecraft.item.ItemSeedFood; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraftforge.fml.common.registry.GameRegistry; - -public class BBSRecipes { - - public static void init() { - - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BBSTooltipHandler.java b/src/main/java/com/rafacost3d/bbs_mod/init/BBSTooltipHandler.java deleted file mode 100644 index b14468b..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BBSTooltipHandler.java +++ /dev/null @@ -1,37 +0,0 @@ -package com.rafacost3d.bbs_mod.init; - - -import net.minecraft.item.ItemStack; -import net.minecraftforge.event.entity.player.ItemTooltipEvent; -import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -import java.util.HashMap; - -@SideOnly(Side.CLIENT) -public class BBSTooltipHandler { - - @SubscribeEvent - public void handleItemTooltipEvent(ItemTooltipEvent event) { - ItemStack stack = event.getItemStack(); - HashMap plist = BBSGetMarketDataFireBase.getPriceList(); - - try { - String nameHop[] = stack.getUnlocalizedName().split("[.]"); - if (nameHop[2].equals("hop")) { - event.getToolTip().add("Quant: " + String.format("%.2f",stack.getCount() * BBSConstants.HOPS_WEIGHT) + BBSConstants.UNIT_WEIGHT); - event.getToolTip().add("Value B$: " + String.format("%.2f", plist.get("hop." + nameHop[1]) * stack.getCount())); - } else if (nameHop[2].equals("pellet")) { - event.getToolTip().add("Quant: " + String.format("%.2f",stack.getCount() * BBSConstants.PELLETS_WEIGHT) + BBSConstants.UNIT_WEIGHT); - event.getToolTip().add("Value B$: " + String.format("%.2f", plist.get("pellet." + nameHop[1]) * stack.getCount())); - } else if (nameHop[2].equals("rhizome")) { - event.getToolTip().add("Quant: " + String.format("%.2f",stack.getCount() * BBSConstants.PELLETS_WEIGHT) + BBSConstants.UNIT_WEIGHT); - event.getToolTip().add("Value B$: " + String.format("%.2f",plist.get("rhizome." + nameHop[1]) * stack.getCount())); - } - - } catch (Exception e) { - // e.printStackTrace(); - } - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java b/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java index cc152cc..213785f 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java +++ b/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java @@ -8,18 +8,21 @@ import net.minecraftforge.fml.relauncher.SideOnly; public class BlocksInit { + /* @GameRegistry.ObjectHolder("bbs_mod:modelblock") public static ModelBlock modelBlock; - @GameRegistry.ObjectHolder("bbs_mod:microbrewer") - public static MicroBrewerBlock microBrewerBlock; @GameRegistry.ObjectHolder("bbs_mod:micropack") public static MicroPackBlock microPackBlock; + */ + @GameRegistry.ObjectHolder("bbs_mod:microbrewer") + public static MicroBrewerBlock microBrewerBlock; + @SideOnly(Side.CLIENT) public static void initModels() { - modelBlock.initModel(); microBrewerBlock.initModel(); - microPackBlock.initModel(); + //modelBlock.initModel(); + //microPackBlock.initModel(); } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java b/src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java index 6815a9f..28d0e4b 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java +++ b/src/main/java/com/rafacost3d/bbs_mod/init/ItemInit.java @@ -1,8 +1,13 @@ package com.rafacost3d.bbs_mod.init; +import com.rafacost3d.bbs_mod.objects.items.BeerKegItem; import com.rafacost3d.bbs_mod.objects.items.ItemBase; +import com.rafacost3d.bbs_mod.objects.items.MashKegItem; import net.minecraft.item.Item; +import net.minecraftforge.fml.common.registry.GameRegistry; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; import java.util.ArrayList; import java.util.List; @@ -10,7 +15,7 @@ public class ItemInit { public static final List ITEMS = new ArrayList(); - public static final Item SPOON = new ItemBase("spoon"); + //public static final Item SPOON = new ItemBase("spoon"); public static final Item SANITIZER = new ItemBase("sanitizer"); public static final Item WATERGALLON = new ItemBase("watergallon"); public static final Item LME_PILSEN = new ItemBase("lme_pilsen"); @@ -20,14 +25,24 @@ public class ItemInit { public static final Item LME_MUNICH = new ItemBase("lme_munich"); public static final Item LME_AMBER = new ItemBase("lme_amber"); public static final Item LME_DARK = new ItemBase("lme_dark"); - public static final Item PRIMING_SUGAR = new ItemBase("priming_sugar"); + //public static final Item PRIMING_SUGAR = new ItemBase("priming_sugar"); public static final Item YEAST = new ItemBase("yeast"); - public static final Item THERMOMETER = new ItemBase("thermometer"); + //public static final Item THERMOMETER = new ItemBase("thermometer"); public static final Item WATER_KEG = new ItemBase("waterkeg"); - public static final Item MASH_KEG = new ItemBase("mashkeg"); public static final Item WORT_KEG = new ItemBase("wortkeg"); public static final Item HOTWORT_KEG = new ItemBase("hotwortkeg"); - public static final Item BEER_KEG = new ItemBase("beerkeg"); + //public static final Item BEER_KEG = new ItemBase("beerkeg"); public static final Item KEG = new ItemBase("keg"); + public static final Item GRAFTER = new ItemBase("grafter"); + @GameRegistry.ObjectHolder("bbs_mod:mashkeg") + public static MashKegItem mashKegItem; + @GameRegistry.ObjectHolder("bbs_mod:beerkeg") + public static BeerKegItem BEER_KEG; + + @SideOnly(Side.CLIENT) + public static void initModels() { + mashKegItem.initModel(); + BEER_KEG.initModel(); + } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/items/BeerBucket.java b/src/main/java/com/rafacost3d/bbs_mod/items/BeerBucket.java deleted file mode 100644 index 5dc70bc..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/items/BeerBucket.java +++ /dev/null @@ -1,176 +0,0 @@ -package com.rafacost3d.bbs_mod.items; - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import net.minecraft.block.Block; -import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelBakery; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.client.resources.I18n; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.Item; -import net.minecraft.item.ItemBucket; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -import java.util.List; - -public class BeerBucket extends ItemBucket { - protected String name; - protected String hopsType; - protected Double hops; - - - public static BeerBucket instance; - - public BeerBucket(Block containedBlockIn) { - super(containedBlockIn); - name = "beerbucket"; - setRegistryName(name); - setUnlocalizedName(BBSMod.MODID + "." + name); - GameRegistry.register(this); - this.setCreativeTab(CreativeTabsBBS.BBSTabsFluids); - hopsType = "No Hop"; - hops = 0.0; - } - - - public String getHopsType() { - return hopsType; - } - - public void setHopsType(String hopsType) { - this.hopsType = hopsType; - } - - public Double getHopsQuant() { - return hops; - } - - public void setHopsQuant(Double hopsQuant) { - this.hops = hopsQuant; - } - - @SideOnly(Side.CLIENT) - public void initModel() { - final ModelResourceLocation srm0Model = new ModelResourceLocation(getRegistryName() + "_srm0", "inventory"); - final ModelResourceLocation srm1Model = new ModelResourceLocation(getRegistryName() + "_srm1", "inventory"); - final ModelResourceLocation srm2Model = new ModelResourceLocation(getRegistryName() + "_srm2", "inventory"); - final ModelResourceLocation srm3Model = new ModelResourceLocation(getRegistryName() + "_srm3", "inventory"); - final ModelResourceLocation srm4Model = new ModelResourceLocation(getRegistryName() + "_srm4", "inventory"); - final ModelResourceLocation srm5Model = new ModelResourceLocation(getRegistryName() + "_srm5", "inventory"); - final ModelResourceLocation srm6Model = new ModelResourceLocation(getRegistryName() + "_srm6", "inventory"); - final ModelResourceLocation srm7Model = new ModelResourceLocation(getRegistryName() + "_srm7", "inventory"); - final ModelResourceLocation srm8Model = new ModelResourceLocation(getRegistryName() + "_srm8", "inventory"); - final ModelResourceLocation srm9Model = new ModelResourceLocation(getRegistryName() + "_srm9", "inventory"); - final ModelResourceLocation srm10Model = new ModelResourceLocation(getRegistryName() + "_srm10", "inventory"); - - ModelBakery.registerItemVariants(this, srm0Model, srm1Model, srm2Model, srm3Model, srm4Model, srm5Model, srm6Model, srm7Model, srm8Model, srm9Model, srm10Model); - - ModelLoader.setCustomMeshDefinition(this, new ItemMeshDefinition() { - @Override - public ModelResourceLocation getModelLocation(ItemStack stack) { - int srm = getSRM(stack); - switch (srm) { - case 0: - return srm0Model; - case 1: - return srm1Model; - case 2: - return srm2Model; - case 3: - return srm3Model; - case 4: - return srm4Model; - case 5: - return srm5Model; - case 6: - return srm6Model; - case 7: - return srm7Model; - case 8: - return srm8Model; - case 9: - return srm9Model; - case 10: - return srm10Model; - default: - return srm0Model; - - } - } - }); - } - - private Integer getSRM(ItemStack stack) { - int SRM; - if(stack.hasTagCompound()) { - SRM = (int) Math.round(stack.getTagCompound().getDouble("srm")); - } else { - SRM = 0; - } - return SRM; - } - - private NBTTagCompound getTagCompoundSafe(ItemStack stack) { - NBTTagCompound tagCompound = stack.getTagCompound(); - if (tagCompound == null) { - tagCompound = new NBTTagCompound(); - stack.setTagCompound(tagCompound); - } - return tagCompound; - } - - String[] wortTypes = { "hopsleaf"}; - - @Override - public String getUnlocalizedName(ItemStack stack) - { - if (stack.hasTagCompound()) - { - NBTTagCompound itemData = stack.getTagCompound(); - if (itemData.hasKey("wortTypes")) - { - return "item." + BBSMod.MODID + ".beertype." + itemData.getString("beerType"); - } - } - return "item.bbs_mod.beertype.nullBeer"; - } - - @SideOnly(Side.CLIENT) - public void getSubItems(Item item, CreativeTabs tab, List itemList) - { - for (int pos = 0; pos < wortTypes.length; pos++) - { - ItemStack wortStack = new ItemStack(item); - wortStack.setTagCompound(new NBTTagCompound()); - wortStack.getTagCompound().setString("beerType", wortTypes[pos]); - itemList.add(wortStack); - } - } - - @SideOnly(Side.CLIENT) - public void addInformation(ItemStack stack, EntityPlayer player, - List tooltip, boolean isAdvanced) - { - if ( stack.hasTagCompound() - && stack.getTagCompound().hasKey("beerType")) - { - tooltip.add("Hops: " + I18n.format("item." + stack.getTagCompound().getString("beerType") + ".hop.name")); - tooltip.add("IBU: " + String.format("%.2f",stack.getTagCompound().getDouble("ibu"))); - tooltip.add("SRM: " + String.format("%.2f",stack.getTagCompound().getDouble("srm"))); - tooltip.add("ABV: " + String.format("%.2f",stack.getTagCompound().getDouble("abv")) + "%"); - tooltip.add("OG: " + String.format("%.3f",stack.getTagCompound().getDouble("og"))); - tooltip.add("FG: " + String.format("%.3f",stack.getTagCompound().getDouble("fg"))); - } - else - { - tooltip.add(I18n.format("tooltip.bbs_mod.beertype.nullBeer.desc")); - } - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/items/ItemBase.java b/src/main/java/com/rafacost3d/bbs_mod/items/ItemBase.java deleted file mode 100644 index 6e756e3..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/items/ItemBase.java +++ /dev/null @@ -1,33 +0,0 @@ -package com.rafacost3d.bbs_mod.items; - - -import com.rafacost3d.bbs_mod.BBSMod; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.item.Item; -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -public class ItemBase extends Item { - - protected String name; - - public ItemBase(String name) { - setRegistryName(name); - setUnlocalizedName(BBSMod.MODID + "." + name); - GameRegistry.register(this); - } - - @Override - public ItemBase setCreativeTab(CreativeTabs tab) { - super.setCreativeTab(tab); - return this; - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomModelResourceLocation(this, 0, new ModelResourceLocation(getRegistryName(), "inventory")); - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/items/WortBucket.java b/src/main/java/com/rafacost3d/bbs_mod/items/WortBucket.java deleted file mode 100644 index ac84649..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/items/WortBucket.java +++ /dev/null @@ -1,110 +0,0 @@ -package com.rafacost3d.bbs_mod.items; - -import com.rafacost3d.bbs_mod.BBSMod; -import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; -import com.rafacost3d.bbs_mod.init.BBSConstants; -import net.minecraft.client.resources.I18n; -import net.minecraft.item.Item; -import net.minecraft.block.Block; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBucket; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; - -import net.minecraftforge.client.model.ModelLoader; -import net.minecraftforge.fml.common.registry.GameRegistry; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -import java.util.List; - -public class WortBucket extends ItemBucket { - protected String name; - protected String hopsType; - protected Double hops; - - - public static WortBucket instance; - - public WortBucket(Block containedBlockIn) { - super(containedBlockIn); - name = "wortbucket"; - setRegistryName(name); - setUnlocalizedName(BBSMod.MODID + "." + name); - GameRegistry.register(this); - this.setCreativeTab(CreativeTabsBBS.BBSTabsFluids); - hopsType = "No Hop"; - hops = 0.0; - } - - - public String getHopsType() { - return hopsType; - } - - public void setHopsType(String hopsType) { - this.hopsType = hopsType; - } - - public Double getHopsQuant() { - return hops; - } - - public void setHopsQuant(Double hopsQuant) { - this.hops = hopsQuant; - } - - @SideOnly(Side.CLIENT) - public void initModel() { - ModelLoader.setCustomModelResourceLocation(this, 0, new ModelResourceLocation(getRegistryName(), "inventory")); - } - - String[] wortTypes = { "hopsleaf"}; - - @Override - public String getUnlocalizedName(ItemStack stack) - { - if (stack.hasTagCompound()) - { - NBTTagCompound itemData = stack.getTagCompound(); - if (itemData.hasKey("wortTypes")) - { - return "item." + BBSMod.MODID + ".worttype." + itemData.getString("wortType"); - } - } - return "item.bbs_mod.worttype.nullWort"; - } - - @SideOnly(Side.CLIENT) - public void getSubItems(Item item, CreativeTabs tab, List itemList) - { - for (int pos = 0; pos < wortTypes.length; pos++) - { - ItemStack wortStack = new ItemStack(item); - wortStack.setTagCompound(new NBTTagCompound()); - wortStack.getTagCompound().setString("wortType", wortTypes[pos]); - itemList.add(wortStack); - } - } - - @SideOnly(Side.CLIENT) - public void addInformation(ItemStack stack, EntityPlayer player, - List tooltip, boolean isAdvanced) - { - if ( stack.hasTagCompound() - && stack.getTagCompound().hasKey("wortType")) - { - tooltip.add("Hops: " + I18n.format("item." + stack.getTagCompound().getString("wortType") + "." + stack.getTagCompound().getString("hopType") + ".name")); - //tooltip.add("Type: " + stack.getTagCompound().getString("hopType")); - tooltip.add("Hops Quantity: " + String.format("%.2f",stack.getTagCompound().getDouble("wortQuant")) + BBSConstants.UNIT_WEIGHT); - tooltip.add("Malt Quantity: " + stack.getTagCompound().getInteger("maltQuant")); - tooltip.add("Time Boiled: " + stack.getTagCompound().getInteger("timeBoiling") + " min"); - } - else - { - tooltip.add(I18n.format("tooltip.bbs_mod.worttype.nullWort.desc")); - } - } -} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java index 3843586..5310439 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java @@ -5,9 +5,12 @@ import com.google.common.collect.Table; import com.rafacost3d.bbs_mod.init.ItemInit; import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; +import com.rafacost3d.bbs_mod.objects.items.MashKegItem; +import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; import java.util.Map; @@ -24,9 +27,165 @@ public static MicroBrewerRecipes getInstance() private MicroBrewerRecipes() { + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("malt")), new ItemStack(CropRegistry.getFood("malt")), new ItemStack(CropRegistry.getFood("maltpilsen")), 5.0F, 20); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltpilsen")), new ItemStack(CropRegistry.getFood("maltpilsen")), new ItemStack(CropRegistry.getFood("maltmunich")), 5.0F, 20);addMicroBrewerRecipe(new ItemStack(Items.WHEAT), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_WHEAT), 5.0F, 20); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltmunich")), new ItemStack(CropRegistry.getFood("maltmunich")), new ItemStack(CropRegistry.getFood("maltamber")), 5.0F, 20);addMicroBrewerRecipe(new ItemStack(Items.WHEAT), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_WHEAT), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltamber")), new ItemStack(CropRegistry.getFood("maltamber")), new ItemStack(CropRegistry.getFood("maltdark")), 5.0F, 20); + addMicroBrewerRecipe(new ItemStack(Items.WHEAT), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_WHEAT), 5.0F, 240); - addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_WHEAT), new ItemStack(ItemInit.MASH_KEG), 5.0F, 720); - addMicroBrewerRecipe(new ItemStack(ItemInit.MASH_KEG), new ItemStack(CropRegistry.getFood("liberty")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("malt")), new ItemStack(ItemInit.WATERGALLON), new ItemStack(ItemInit.LME_EXTRALIGHT), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("malt")), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_LIGHT), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltpilsen")), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_PILSEN), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltmunich")), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_MUNICH), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltamber")), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_AMBER), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltdark")), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_DARK), 5.0F, 240); + + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_WHEAT), new ItemStack(ItemInit.mashKegItem), 5.0F, 720); + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_EXTRALIGHT), new ItemStack(ItemInit.mashKegItem), 5.0F, 720); + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_LIGHT), new ItemStack(ItemInit.mashKegItem), 5.0F, 720); + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_PILSEN), new ItemStack(ItemInit.mashKegItem), 5.0F, 720); + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_MUNICH), new ItemStack(ItemInit.mashKegItem), 5.0F, 720); + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_AMBER), new ItemStack(ItemInit.mashKegItem), 5.0F, 720); + addMicroBrewerRecipe(new ItemStack(ItemInit.WATER_KEG), new ItemStack(ItemInit.LME_DARK), new ItemStack(ItemInit.mashKegItem), 5.0F, 720); + + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("admiral")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("ahtanum")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("amarillo")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("aquila")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("aramis")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("aurora")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("banner")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("bcgolding")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("bittergold")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("blanc")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("bobek")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("bramlingcross")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("bravo")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("brewersgoldgermany")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("brewersgoldusa")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("bullion")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("cascade")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("celeia")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("centennial")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("challenger")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("chelan")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("chinook")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("citra")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("cluster")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("columbus")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("comet")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("crystal")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("drrudi")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("eastkentgolding")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("ekuanot")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("ella")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("eroica")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("falconersflight")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("firstgold")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("fuggleuk")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("galaxy")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("galena")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("glacier")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("gold")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("goldinguk")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("goldingusa")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("greenbullet")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hallertaumittelfruh")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hallertauusa")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hbc431experimental")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hbc438experimental")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hbc472experimental")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hbc682experimental")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("helga")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("herald")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("herkules")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hersbrucker")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("horizon")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("huellmelon")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("hullerbitterer")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("kohatu")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("liberty")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("loral")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("lubelska")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("magnum")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("mandarinabavaria")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("merkur")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("millenium")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("mosaic")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("motueka")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("mounthood")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("mountrainier")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("nelsonsauvin")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("newport")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("northdown")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("northernbrewer")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("nugget")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("olympic")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("omega")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("opal")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("orion")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("pacifica")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("pacificgem")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("pacificjade")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("palisade")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("perlegermany")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("perleusa")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("phoenix")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("pilgrim")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("pioneer")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("polaris")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("premiant")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("prideofringwood")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("progress")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("rakau")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("record")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("riwaka")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("saaz")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("santiam")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("saphir")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("satus")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("savinjskigolding")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("select")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("simcoe")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("smaragd")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("sorachiace")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("southerncross")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("sovereign")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("spalt")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("sterling")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("sticklebract")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("strisselspalt")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("styriangolding")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("summer")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("summit")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("superalpha")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("superpride")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("sussex")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("sylva")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("tahoma")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("talisman")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("target")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("tettnangergermany")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("tettnangerusa")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("tomahawk")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("tradition")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("triplepearl")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("triskel")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("ultra")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("vanguard")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("waiiti")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("waimea")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("wakatu")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("warrior")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("whitbreadgolding")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("willamette")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("yakimacluster")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("yamhillgolding")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("yeoman")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("zenith")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("zeus")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.mashKegItem), new ItemStack(CropRegistry.getFood("zythos")), new ItemStack(ItemInit.HOTWORT_KEG), 5.0F, 1800); + addMicroBrewerRecipe(new ItemStack(ItemInit.HOTWORT_KEG), new ItemStack(Blocks.ICE), new ItemStack(ItemInit.WORT_KEG), 5.0F, 1800); addMicroBrewerRecipe(new ItemStack(ItemInit.WORT_KEG), new ItemStack(ItemInit.YEAST), new ItemStack(ItemInit.BEER_KEG), 5.0F, 16000); } @@ -92,4 +251,6 @@ public int getMicroBrewerCookTime(ItemStack stack) } return 0; } + + } diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java index 15f3298..bd0820a 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java @@ -1,8 +1,12 @@ package com.rafacost3d.bbs_mod.objects.blocks.machines; +import com.rafacost3d.bbs_mod.init.ItemInit; import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerRecipes; +import com.rafacost3d.bbs_mod.objects.items.MashKegItem; +import com.rafacost3d.bbs_mod.util.BeerMath; import net.minecraft.block.Block; import net.minecraft.block.material.Material; +import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; import net.minecraft.init.Items; @@ -205,10 +209,12 @@ public int getCookTime(ItemStack input1) return 720; case "item.liberty.hop": return 1800; + case "item.bbs_mod.wortkeg": + return 1800; case "item.bbs_mod.yeast": return 16000; default: - return 200; + return 20; } } @@ -240,7 +246,7 @@ public void smeltItem() ItemStack input2 = (ItemStack)this.inventory.get(1); //Shrink Recipe Quantity - if(input1.getItem()==Items.SUGAR && input2.getItem()==Items.WHEAT) { + if(input1.getItem()==Items.SUGAR) { if(input1.getCount()==64 && input2.getCount() == 64){ ItemStack result = MicroBrewerRecipes.getInstance().getMicroBrewerResult(input1, input2); ItemStack output = (ItemStack) this.inventory.get(3); @@ -252,15 +258,119 @@ public void smeltItem() } else { ItemStack result = MicroBrewerRecipes.getInstance().getMicroBrewerResult(input1, input2); + ItemStack ic = new ItemStack(result.getItem()); ItemStack output = (ItemStack) this.inventory.get(3); + Item a = result.getItem(); + Item b = ItemInit.mashKegItem; + Item c = ItemInit.HOTWORT_KEG; + Item d = ItemInit.WORT_KEG; + Item e = ItemInit.BEER_KEG; + if(a == b){ + String lme = input1.getItem().getUnlocalizedName(); + String malt; + Integer lb; + Double lovi; + switch (lme){ + case "item.bbs_mod.lme_pilsen": + malt = "Pilsen"; + lb = 1; + lovi = 2.0; + break; + case "item.bbs_mod.lme_extralight": + malt = "Extralight"; + lb = 2; + lovi = 2.5; + break; + case "item.bbs_mod.lme_wheat": + malt = "Wheat"; + lb = 3; + lovi = 3.0; + break; + case "item.bbs_mod.lme_light": + malt = "Light"; + lb = 4; + lovi = 4.0; + break; + case "item.bbs_mod.lme_munich": + malt = "Munich"; + lb = 5; + lovi = 8.0; + break; + case "item.bbs_mod.lme_amber": + malt = "Amber"; + lb = 6; + lovi = 10.0; + break; + case "item.bbs_mod.lme_dark": + malt = "Dark"; + lb = 7; + lovi = 30.0; + break; + default: + return; + } + getTagCompoundSafe(ic).setString("malt", "LME " + malt); + getTagCompoundSafe(ic).setInteger("lb", lb); + getTagCompoundSafe(ic).setDouble("srm", BeerMath.RoundTo2Decimals(BeerMath.SRM(lovi, input1.getCount()))); + getTagCompoundSafe(ic).setDouble("og", BeerMath.RoundTo3Decimals(BeerMath.OG(input1.getCount()*3.3,5))); + if (output.isEmpty()) this.inventory.set(3, ic); + input1.shrink(input1.getCount()); + input2.shrink(1); + } else if(a==c) { + String name[] = input1.getUnlocalizedName().split("[.]"); + getTagCompoundSafe(ic).setString("malt", getTagCompoundSafe(input2).getString("malt")); + getTagCompoundSafe(ic).setInteger("lb", getTagCompoundSafe(input2).getInteger("lb")); + getTagCompoundSafe(ic).setDouble("srm", getTagCompoundSafe(input2).getDouble("srm")); + getTagCompoundSafe(ic).setDouble("og", getTagCompoundSafe(input2).getDouble("og")); + getTagCompoundSafe(ic).setDouble("ibu", BeerMath.RoundTo2Decimals(BeerMath.IBU(input1.getCount(),5.0, 5.0,getTagCompoundSafe(input2).getDouble("og"), name[1]))); + if (output.isEmpty()) this.inventory.set(3, ic); + input1.shrink(input1.getCount()); + input2.shrink(1); + } else if(a==d) { + Double lb = getTagCompoundSafe(input2).getDouble("srm"); + getTagCompoundSafe(ic).setString("malt", getTagCompoundSafe(input2).getString("malt")); + getTagCompoundSafe(ic).setInteger("lb", lb.intValue()); + getTagCompoundSafe(ic).setDouble("srm", getTagCompoundSafe(input2).getDouble("srm")); + getTagCompoundSafe(ic).setDouble("og", getTagCompoundSafe(input2).getDouble("og")); + getTagCompoundSafe(ic).setDouble("ibu", getTagCompoundSafe(input2).getDouble("ibu")); + if (output.isEmpty()) this.inventory.set(3, ic); + input1.shrink(1); + input2.shrink(1); + + } else if(a==e) { + Double og = getTagCompoundSafe(input2).getDouble("og"); + Double fg = BeerMath.RoundTo3Decimals(BeerMath.FG(og)); + Double abv = BeerMath.RoundTo2Decimals(BeerMath.ABV(og,fg)); + getTagCompoundSafe(ic).setString("malt", getTagCompoundSafe(input2).getString("malt")); + getTagCompoundSafe(ic).setInteger("lb", getTagCompoundSafe(input2).getInteger("lb")); + getTagCompoundSafe(ic).setDouble("srm", getTagCompoundSafe(input2).getDouble("srm")); + getTagCompoundSafe(ic).setDouble("og", og); + getTagCompoundSafe(ic).setDouble("ibu", getTagCompoundSafe(input2).getDouble("ibu")); + getTagCompoundSafe(ic).setDouble("fg", fg); + getTagCompoundSafe(ic).setDouble("abv", abv); + if (output.isEmpty()) this.inventory.set(3, ic); + input1.shrink(1); + input2.shrink(1); + } else { if (output.isEmpty()) this.inventory.set(3, result.copy()); else if (output.getItem() == result.getItem()) output.grow(result.getCount()); input1.shrink(1); input2.shrink(1); + } + } } } + private NBTTagCompound getTagCompoundSafe(ItemStack stack) { + NBTTagCompound tagCompound = stack.getTagCompound(); + if (tagCompound == null) { + tagCompound = new NBTTagCompound(); + stack.setTagCompound(tagCompound); + } + return tagCompound; + } + public static int getItemBurnTime(ItemStack fuel) { if(fuel.isEmpty()) return 0; diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java index a0730ff..cb52725 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockBBSCrop.java @@ -5,6 +5,7 @@ import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; +import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; @@ -21,7 +22,10 @@ import net.minecraftforge.common.IPlantable; import net.minecraftforge.event.ForgeEventFactory; import net.minecraftforge.fml.common.FMLLog; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; +import javax.annotation.Nullable; import java.util.List; import java.util.Random; @@ -224,8 +228,10 @@ public List getDrops(IBlockAccess world, BlockPos pos, IBlockState st for (int i = 0; i < count; i++) { final Item item = this.getItemDropped(state, rand, fortune); + final Item seed = getSeed(); if (item != null) { - ret.add(new ItemStack(item, 1, this.damageDropped(state))); + ret.add(new ItemStack(item, 2, this.damageDropped(state))); + ret.add(new ItemStack(seed, 1, 0)); } } @@ -279,12 +285,13 @@ public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, En int High = 6; int Result = r.nextInt(High-Low) + Low; EntityItem item = new EntityItem(world,pos.getX(), pos.getY(), pos.getZ(), new ItemStack(getCrop(), Result)); + EntityItem item2 = new EntityItem(world,pos.getX(), pos.getY(), pos.getZ(), new ItemStack(getSeed(), Result)); world.spawnEntity((item)); + world.spawnEntity((item2)); world.setBlockState(pos, this.withAge(6)); return true; } } return false; } - } \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java index a73955e..c197981 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BlockRegistry.java @@ -1,11 +1,17 @@ package com.rafacost3d.bbs_mod.objects.crops; import net.minecraft.block.Block; +import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.ItemBlock; +import net.minecraft.item.ItemStack; +import net.minecraft.world.World; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; import net.minecraftforge.registries.IForgeRegistry; +import javax.annotation.Nullable; import java.util.ArrayList; import java.util.List; diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java index 4de34aa..465d258 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/CropRegistry.java @@ -1,5 +1,6 @@ package com.rafacost3d.bbs_mod.objects.crops; + import net.minecraft.init.Blocks; import net.minecraft.item.Item; import net.minecraft.item.ItemSeedFood; @@ -9,11 +10,18 @@ import java.text.MessageFormat; import java.util.HashMap; + public class CropRegistry { public static final String CROP_BLOCK_NAME = "hop{0}.crop"; public static final String ITEM_NAME = "{0}.hop"; public static final String SEED_ITEM_NAME = "{0}.rhizome"; - public static final String PELLET_ITEM_NAME = "{0}.pellet"; + //public static final String PELLET_ITEM_NAME = "{0}.pellet"; + + public static final String MALT = "malt"; + public static final String MALT_PILSEN = "maltpilsen"; + public static final String MALT_MUNICH = "maltmunich"; + public static final String MALT_AMBER = "maltamber"; + public static final String MALT_DARK = "maltdark"; public static final String ADMIRAL = "admiral"; public static final String AHTANUM = "ahtanum"; @@ -155,6 +163,11 @@ public class CropRegistry { public static final String[] cropNames = new String[] { + MALT, + MALT_PILSEN, + MALT_MUNICH, + MALT_AMBER, + MALT_DARK, ADMIRAL, AHTANUM, AMARILLO, @@ -402,8 +415,8 @@ private static void registerCrop(String cropName) { ItemRegistry.registerItem(item, MessageFormat.format(ITEM_NAME, cropName)); cropBlock.setFood(item); - final ItemSeedFood itemPellet = createItem(cropBlock); - ItemRegistry.registerItem(itemPellet, MessageFormat.format(PELLET_ITEM_NAME, cropName)); + //final ItemSeedFood itemPellet = createItem(cropBlock); + //ItemRegistry.registerItem(itemPellet, MessageFormat.format(PELLET_ITEM_NAME, cropName)); final Item seedItem = createSeed(cropBlock); @@ -412,7 +425,7 @@ private static void registerCrop(String cropName) { seeds.put(cropName, seedItem); foods.put(cropName, item); - pellets.put(cropName, itemPellet); + //pellets.put(cropName, itemPellet); crops.put(cropName, cropBlock); } @@ -423,9 +436,12 @@ private static String getSeedName(String cropName) { private static ItemSeedFood createItem(BlockBBSCrop cropBlock) { return new ItemSeedFood(1, 0.6F, cropBlock, Blocks.FARMLAND); + } private static Item createSeed(BlockBBSCrop cropBlock) { return new ItemSeeds(cropBlock, Blocks.FARMLAND); } + + } diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java index e944b51..4a1a8ea 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModelList.java @@ -1,7 +1,6 @@ package com.rafacost3d.bbs_mod.objects.crops; import com.rafacost3d.bbs_mod.util.Reference; - import java.util.HashMap; public class ItemModelList { @@ -10,11 +9,6 @@ public class ItemModelList { private final String rootDirectory; public ItemModelList(String resourceRoot) { - /* - if (resourceRoot.charAt(resourceRoot.length() - 1) != '/') { - throw new RuntimeException("Resource root path must be relative! (end with '/')"); - } -*/ this.rootDirectory = getResourcePath(resourceRoot); } diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java index ce10251..24a4fcc 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemModels.java @@ -4,15 +4,23 @@ import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.block.model.ModelBakery; import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; +import net.minecraft.util.text.TextFormatting; +import net.minecraft.world.World; import net.minecraftforge.fml.common.FMLLog; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; +import javax.annotation.Nullable; import java.util.Collection; import java.util.HashMap; +import java.util.List; import java.util.Map; -public class ItemModels { +public class ItemModels extends Item { private static final HashMap models = new HashMap(); public static void preInit() { @@ -42,6 +50,7 @@ private static void defineItemModels() { private static void registerItemModels(Item item, ItemModelList list) { models.put(item, list); + } private static void prepareModels() { diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java index 5daad06..e0f50ae 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRegistry.java @@ -1,11 +1,18 @@ package com.rafacost3d.bbs_mod.objects.crops; import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; +import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.world.World; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; import net.minecraftforge.registries.IForgeRegistry; +import javax.annotation.Nullable; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -30,8 +37,8 @@ public static Item registerItem(Item item, String registryName) { String name[] = registryName.split("[.]"); if (name[1].equals("rhizome")) { item.setCreativeTab(CreativeTabsBBS.BBSTabsSeeds); - } else if (name[1].equals("pellet")) { - item.setCreativeTab(CreativeTabsBBS.BBSTabsPellets); + //} else if (name[1].equals("pellet")) { + // item.setCreativeTab(CreativeTabsBBS.BBSTabsPellets); } else { item.setCreativeTab(CreativeTabsBBS.BBSTabsHops); } @@ -46,4 +53,5 @@ public void onItemRegistry(RegistryEvent.Register e) { reg.registerAll(itemlist.toArray(new Item[0])); //GeneralOreRegistry.initOreRegistry(); } + } diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java index f26324e..2fd9ac5 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/ItemRenderRegister.java @@ -2,7 +2,15 @@ import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.world.World; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +import javax.annotation.Nullable; +import java.util.List; public class ItemRenderRegister { public static void registerItemRenderer() { diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java b/src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java index 5ccae53..8451f0e 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/items/ItemBase.java @@ -6,7 +6,15 @@ import com.rafacost3d.bbs_mod.init.ItemInit; import com.rafacost3d.bbs_mod.util.IHasModel; import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.util.text.TextFormatting; +import net.minecraft.world.World; + +import javax.annotation.Nullable; +import java.util.List; public class ItemBase extends Item implements IHasModel { @@ -22,4 +30,56 @@ public ItemBase(String name){ public void registerModels(){ BBSMod.proxy.registerItemRenderer(this, 0, "inventory"); } + + @Override + public void addInformation(ItemStack stack, @Nullable World worldIn, List tooltip, ITooltipFlag flagIn) { + if(getTagCompoundSafe(stack).hasKey("ibu")) { + tooltip.add(TextFormatting.GREEN + "Malt: " + getTagCompoundSafe(stack).getString("malt")); + tooltip.add(TextFormatting.GREEN + "SRM: " + getTagCompoundSafe(stack).getDouble("srm")); + tooltip.add(TextFormatting.GREEN + "IBU: " + getTagCompoundSafe(stack).getDouble("ibu")); + tooltip.add(TextFormatting.GREEN + "OG: " + getTagCompoundSafe(stack).getDouble("og")); + } + + if(getTagCompoundSafe(stack).hasKey("abv")) { + tooltip.add(TextFormatting.GREEN + "FG: " + getTagCompoundSafe(stack).getDouble("fg")); + tooltip.add(TextFormatting.GREEN + "ABV: " + getTagCompoundSafe(stack).getDouble("abv") + "%"); + } + + if(stack.getItem().getUnlocalizedName().startsWith("item.bbs_mod.lme_")) { + String lme = stack.getItem().getUnlocalizedName(); + switch (lme){ + case "item.bbs_mod.lme_pilsen": + tooltip.add(TextFormatting.GREEN + "LoviBond: 2.0"); + break; + case "item.bbs_mod.lme_extralight": + tooltip.add(TextFormatting.GREEN + "LoviBond: 2.5"); + break; + case "item.bbs_mod.lme_wheat": + tooltip.add(TextFormatting.GREEN + "LoviBond: 3.0"); + break; + case "item.bbs_mod.lme_light": + tooltip.add(TextFormatting.GREEN + "LoviBond: 4.0"); + break; + case "item.bbs_mod.lme_munich": + tooltip.add(TextFormatting.GREEN + "LoviBond: 8.0"); + break; + case "item.bbs_mod.lme_amber": + tooltip.add(TextFormatting.GREEN + "LoviBond: 10.0"); + break; + case "item.bbs_mod.lme_dark": + tooltip.add(TextFormatting.GREEN + "LoviBond: 30.0"); + break; + } + } + + } + + private NBTTagCompound getTagCompoundSafe(ItemStack stack) { + NBTTagCompound tagCompound = stack.getTagCompound(); + if (tagCompound == null) { + tagCompound = new NBTTagCompound(); + stack.setTagCompound(tagCompound); + } + return tagCompound; + } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java index 78fa9aa..4f70518 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java +++ b/src/main/java/com/rafacost3d/bbs_mod/proxy/ClientProxy.java @@ -1,6 +1,7 @@ package com.rafacost3d.bbs_mod.proxy; import com.rafacost3d.bbs_mod.init.BlocksInit; +import com.rafacost3d.bbs_mod.init.ItemInit; import com.rafacost3d.bbs_mod.objects.crops.ItemModels; import com.rafacost3d.bbs_mod.objects.crops.ItemRenderRegister; import net.minecraft.client.renderer.block.model.ModelResourceLocation; @@ -42,5 +43,6 @@ public void postInit(FMLPostInitializationEvent e) { @SubscribeEvent public static void registerModels(ModelRegistryEvent event) { BlocksInit.initModels(); + ItemInit.initModels(); } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java index 1d3a99e..7a1c40f 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java +++ b/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java @@ -2,7 +2,9 @@ import com.rafacost3d.bbs_mod.BBSMod; +import com.rafacost3d.bbs_mod.init.BBSConstants; import com.rafacost3d.bbs_mod.init.BlocksInit; +import com.rafacost3d.bbs_mod.init.ConfigInit; import com.rafacost3d.bbs_mod.objects.blocks.*; import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackBlock; import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackTileEntity; @@ -11,11 +13,14 @@ import com.rafacost3d.bbs_mod.objects.crops.BlockRegistry; import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; import com.rafacost3d.bbs_mod.objects.crops.ItemRegistry; +import com.rafacost3d.bbs_mod.objects.items.BeerKegItem; +import com.rafacost3d.bbs_mod.objects.items.MashKegItem; import com.rafacost3d.bbs_mod.util.Reference; import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemBlock; import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.common.config.Configuration; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.FMLInitializationEvent; @@ -25,11 +30,19 @@ import net.minecraftforge.fml.common.network.NetworkRegistry; import net.minecraftforge.fml.common.registry.GameRegistry; +import java.io.File; + @Mod.EventBusSubscriber public class CommonProxy { + public static Configuration config; + public void registerItemRenderer(Item item, int meta, String id) {} public void preInit(FMLPreInitializationEvent e) { + File directory = e.getModConfigurationDirectory(); + config = new Configuration(new File(directory.getPath(), "bbs_mod.cfg")); + ConfigInit.readConfig(); + BBSConstants.preint(); CropRegistry.registerCrops(); BlockRegistry.initBlockRegistry(); MinecraftForge.EVENT_BUS.register(new BlockRegistry()); @@ -39,8 +52,14 @@ public void preInit(FMLPreInitializationEvent e) { public void init(FMLInitializationEvent e) { NetworkRegistry.INSTANCE.registerGuiHandler(BBSMod.instance, new GuiProxy()); + MinecraftForge.addGrassSeed(CropRegistry.getSeed(CropRegistry.LIBERTY).getDefaultInstance(), 10); + MinecraftForge.addGrassSeed(CropRegistry.getSeed(CropRegistry.STRISSELSPALT).getDefaultInstance(), 10); + MinecraftForge.addGrassSeed(CropRegistry.getSeed(CropRegistry.MALT).getDefaultInstance(), 5); } public void postInit(FMLPostInitializationEvent e) { + if (config.hasChanged()) { + config.save(); + } } @SubscribeEvent @@ -48,13 +67,16 @@ public static void registerBlocks(RegistryEvent.Register event) { event.getRegistry().register(new ModelBlock()); event.getRegistry().register(new MicroBrewerBlock()); GameRegistry.registerTileEntity(TileEntityMicroBrewer.class, Reference.MODID + "_microbrewer"); - event.getRegistry().register(new MicroPackBlock()); - GameRegistry.registerTileEntity(MicroPackTileEntity.class, Reference.MODID + "_micropack"); + //event.getRegistry().register(new MicroPackBlock()); + //GameRegistry.registerTileEntity(MicroPackTileEntity.class, Reference.MODID + "_micropack"); } @SubscribeEvent public static void registerItems(RegistryEvent.Register event) { - event.getRegistry().register(new ItemBlock(BlocksInit.modelBlock).setRegistryName(BlocksInit.modelBlock.getRegistryName())); - event.getRegistry().register(new ItemBlock(BlocksInit.microBrewerBlock).setRegistryName(BlocksInit.microBrewerBlock.getRegistryName())); - event.getRegistry().register(new ItemBlock(BlocksInit.microPackBlock).setRegistryName(BlocksInit.microPackBlock.getRegistryName())); + event.getRegistry().register(new ItemBlock(BlocksInit.microBrewerBlock).setRegistryName(BlocksInit.microBrewerBlock.getRegistryName())); + event.getRegistry().register(new MashKegItem()); + event.getRegistry().register(new BeerKegItem()); + //event.getRegistry().register(new ItemBlock(BlocksInit.modelBlock).setRegistryName(BlocksInit.modelBlock.getRegistryName())); + //event.getRegistry().register(new ItemBlock(BlocksInit.microPackBlock).setRegistryName(BlocksInit.microPackBlock.getRegistryName())); + } } diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/ServerProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/ServerProxy.java deleted file mode 100644 index 0e06592..0000000 --- a/src/main/java/com/rafacost3d/bbs_mod/proxy/ServerProxy.java +++ /dev/null @@ -1,7 +0,0 @@ -package com.rafacost3d.bbs_mod.proxy; - - -public class ServerProxy extends CommonProxy { - - -} diff --git a/src/main/resources/assets/bbs_mod/blockstates/aluminiumpot.json b/src/main/resources/assets/bbs_mod/blockstates/aluminiumpot.json deleted file mode 100644 index 8ede004..0000000 --- a/src/main/resources/assets/bbs_mod/blockstates/aluminiumpot.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "custom": { "flip-v": true }, - "model": "bbs_mod:boilingpot.obj" - }, - "variants": { - "normal": [{}], - "inventory": [{ - "transform": { - "gui": { - "rotation": [ - { - "x": 20 - }, - { - "y": 0 - }, - { - "z": 0 - } - ], - "translation": [ - 0, - 0.5, - 0 - ], - "scale": 2.0 - } - } - - } - ], - "facing": { - "north": {"y": 90}, - "south": {"y": 270}, - "west": {"y": 0}, - "east": {"y": 180}, - "up": {"x": 0}, - "down": {"x": 0} - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/lang/en_US.lang b/src/main/resources/assets/bbs_mod/lang/en_US.lang index a91e680..c72ea9a 100644 --- a/src/main/resources/assets/bbs_mod/lang/en_US.lang +++ b/src/main/resources/assets/bbs_mod/lang/en_US.lang @@ -28,6 +28,7 @@ item.bbs_mod.hotwortkeg.name=Hot Wort Keg item.bbs_mod.wortkeg.name=Wort Keg item.bbs_mod.beerkeg.name=Beer Keg item.bbs_mod.keg.name=Empty Keg +item.bbs_mod.grafter.name=Grafter tile.bbs_mod.microbrewer.name=Micro Brewer tile.bbs_mod.micropack.name=Micro Pack @@ -42,6 +43,17 @@ tooltip.bbs_mod.worttype.nullWort.desc=No Hops item.bbs_mod.beertype.nullBeer.name=Beer Bucket tooltip.bbs_mod.beertype.nullBeer.desc=Unclassified Beer +item.malt.hop.name=Malt +item.malt.rhizome.name=Malt Seeds +item.maltpilsen.hop.name=Pilsen Malt +item.maltpilsen.rhizome.name=Pilsen Malt Seeds +item.maltmunich.hop.name=Munich Malt +item.maltmunich.rhizome.name=Munich Malt Seeds +item.maltamber.hop.name=Amber Malt +item.maltamber.rhizome.name=Amber Malt Seeds +item.maltdark.hop.name=Dark Malt +item.maltdark.rhizome.name=Dark Malt Seeds + item.admiral.hop.name=Admiral item.ahtanum.hop.name=Ahtanum item.amarillo.hop.name=Amarillo® diff --git a/src/main/resources/assets/bbs_mod/models/block/boilingpot.mtl b/src/main/resources/assets/bbs_mod/models/block/boilingpot.mtl deleted file mode 100755 index bb39739..0000000 --- a/src/main/resources/assets/bbs_mod/models/block/boilingpot.mtl +++ /dev/null @@ -1,16 +0,0 @@ -# 3ds Max Wavefront OBJ Exporter v0.97b - (c)2007 guruware -# File Created: 10.05.2017 12:27:36 - -newmtl 09___Default -# Ns 10.0000 -# Ni 1.5000 -# d 1.0000 -# Tr 0.0000 -# Tf 1.0000 1.0000 1.0000 -# illum 2 -# Ka 0.5882 0.5882 0.5882 -# Kd 0.5882 0.5882 0.5882 -# Ks 0.0000 0.0000 0.0000 -# Ke 0.0000 0.0000 0.0000 -map_Ka bbs_mod:block/boilingpot -map_Kd bbs_mod:block/boilingpot diff --git a/src/main/resources/assets/bbs_mod/models/block/boilingpot.obj b/src/main/resources/assets/bbs_mod/models/block/boilingpot.obj deleted file mode 100755 index e98e5fd..0000000 --- a/src/main/resources/assets/bbs_mod/models/block/boilingpot.obj +++ /dev/null @@ -1,5280 +0,0 @@ -# 3ds Max Wavefront OBJ Exporter v0.97b - (c)2007 guruware -# File Created: 10.05.2017 12:27:36 - -mtllib boilingpot.mtl - -# -o boilingpot -# - -v 0.6460 0.0500 0.5000 -v 0.6372 0.0500 0.4501 -v 0.6372 0.1134 0.4501 -v 0.6460 0.1134 0.5000 -v 0.6118 0.0500 0.4062 -v 0.6118 0.1134 0.4062 -v 0.5730 0.0500 0.3736 -v 0.5730 0.1134 0.3736 -v 0.5254 0.0500 0.3562 -v 0.5254 0.1134 0.3562 -v 0.4746 0.0500 0.3562 -v 0.4746 0.1134 0.3562 -v 0.4270 0.0500 0.3736 -v 0.4270 0.1134 0.3736 -v 0.3882 0.0500 0.4062 -v 0.3882 0.1134 0.4062 -v 0.3628 0.0500 0.4501 -v 0.3628 0.1134 0.4501 -v 0.3540 0.0500 0.5000 -v 0.3540 0.1134 0.5000 -v 0.3628 0.0500 0.5499 -v 0.3628 0.1134 0.5499 -v 0.3882 0.0500 0.5938 -v 0.3882 0.1134 0.5938 -v 0.4270 0.0500 0.6264 -v 0.4270 0.1134 0.6264 -v 0.4746 0.0500 0.6438 -v 0.4746 0.1134 0.6438 -v 0.5254 0.0500 0.6438 -v 0.5254 0.1134 0.6438 -v 0.5730 0.0500 0.6264 -v 0.5730 0.1134 0.6264 -v 0.6118 0.0500 0.5938 -v 0.6118 0.1134 0.5938 -v 0.6372 0.0500 0.5499 -v 0.6372 0.1134 0.5499 -v 0.6372 0.1768 0.4501 -v 0.6460 0.1768 0.5000 -v 0.6118 0.1768 0.4062 -v 0.5730 0.1768 0.3736 -v 0.5254 0.1768 0.3562 -v 0.4746 0.1768 0.3562 -v 0.4270 0.1768 0.3736 -v 0.3882 0.1768 0.4062 -v 0.3628 0.1768 0.4501 -v 0.3540 0.1768 0.5000 -v 0.3628 0.1768 0.5499 -v 0.3882 0.1768 0.5938 -v 0.4270 0.1768 0.6264 -v 0.4746 0.1768 0.6438 -v 0.5254 0.1768 0.6438 -v 0.5730 0.1768 0.6264 -v 0.6118 0.1768 0.5938 -v 0.6372 0.1768 0.5499 -v 0.6372 0.2402 0.4501 -v 0.6460 0.2402 0.5000 -v 0.6118 0.2402 0.4062 -v 0.5730 0.2402 0.3736 -v 0.5254 0.2402 0.3562 -v 0.4746 0.2402 0.3562 -v 0.4270 0.2402 0.3736 -v 0.3882 0.2402 0.4062 -v 0.3628 0.2402 0.4501 -v 0.3540 0.2402 0.5000 -v 0.3628 0.2402 0.5499 -v 0.3882 0.2402 0.5938 -v 0.4270 0.2402 0.6264 -v 0.4746 0.2402 0.6438 -v 0.5254 0.2402 0.6438 -v 0.5730 0.2402 0.6264 -v 0.6118 0.2402 0.5938 -v 0.6372 0.2402 0.5499 -v 0.6372 0.3036 0.4501 -v 0.6460 0.3036 0.5000 -v 0.6118 0.3036 0.4062 -v 0.5730 0.3036 0.3736 -v 0.5254 0.3036 0.3562 -v 0.4746 0.3036 0.3562 -v 0.4270 0.3036 0.3736 -v 0.3882 0.3036 0.4062 -v 0.3628 0.3036 0.4501 -v 0.3540 0.3036 0.5000 -v 0.3628 0.3036 0.5499 -v 0.3882 0.3036 0.5938 -v 0.4270 0.3036 0.6264 -v 0.4746 0.3036 0.6438 -v 0.5254 0.3036 0.6438 -v 0.5730 0.3036 0.6264 -v 0.6118 0.3036 0.5938 -v 0.6372 0.3036 0.5499 -v 0.6372 0.3670 0.4501 -v 0.6460 0.3670 0.5000 -v 0.6118 0.3670 0.4062 -v 0.5730 0.3670 0.3736 -v 0.5254 0.3670 0.3562 -v 0.4746 0.3670 0.3562 -v 0.4270 0.3670 0.3736 -v 0.3882 0.3670 0.4062 -v 0.3628 0.3670 0.4501 -v 0.3540 0.3670 0.5000 -v 0.3628 0.3670 0.5499 -v 0.3882 0.3670 0.5938 -v 0.4270 0.3670 0.6264 -v 0.4746 0.3670 0.6438 -v 0.5254 0.3670 0.6438 -v 0.5730 0.3670 0.6264 -v 0.6118 0.3670 0.5938 -v 0.6372 0.3670 0.5499 -v 0.6388 0.0500 0.5000 -v 0.6304 0.0500 0.4525 -v 0.6063 0.0500 0.4108 -v 0.5694 0.0500 0.3798 -v 0.5241 0.0500 0.3633 -v 0.4759 0.0500 0.3633 -v 0.4306 0.0500 0.3798 -v 0.3937 0.0500 0.4108 -v 0.3696 0.0500 0.4525 -v 0.3612 0.0500 0.5000 -v 0.3696 0.0500 0.5475 -v 0.3937 0.0500 0.5892 -v 0.4306 0.0500 0.6202 -v 0.4759 0.0500 0.6367 -v 0.5241 0.0500 0.6367 -v 0.5694 0.0500 0.6202 -v 0.6063 0.0500 0.5892 -v 0.6304 0.0500 0.5475 -v 0.5487 0.0500 0.5000 -v 0.5457 0.0500 0.4834 -v 0.5373 0.0500 0.4687 -v 0.5243 0.0500 0.4579 -v 0.5085 0.0500 0.4521 -v 0.4915 0.0500 0.4521 -v 0.4757 0.0500 0.4579 -v 0.4627 0.0500 0.4687 -v 0.4543 0.0500 0.4834 -v 0.4513 0.0500 0.5000 -v 0.4543 0.0500 0.5166 -v 0.4627 0.0500 0.5313 -v 0.4757 0.0500 0.5421 -v 0.4915 0.0500 0.5479 -v 0.5085 0.0500 0.5479 -v 0.5243 0.0500 0.5421 -v 0.5373 0.0500 0.5313 -v 0.5457 0.0500 0.5166 -v 0.5000 0.0500 0.5000 -v 0.6304 0.3670 0.4525 -v 0.6388 0.3670 0.5000 -v 0.6063 0.3670 0.4108 -v 0.5694 0.3670 0.3798 -v 0.5241 0.3670 0.3633 -v 0.4759 0.3670 0.3633 -v 0.4306 0.3670 0.3798 -v 0.3937 0.3670 0.4108 -v 0.3696 0.3670 0.4525 -v 0.3612 0.3670 0.5000 -v 0.3696 0.3670 0.5475 -v 0.3937 0.3670 0.5892 -v 0.4306 0.3670 0.6202 -v 0.4759 0.3670 0.6367 -v 0.5241 0.3670 0.6367 -v 0.5694 0.3670 0.6202 -v 0.6063 0.3670 0.5892 -v 0.6304 0.3670 0.5475 -v 0.6302 0.0613 0.4526 -v 0.6386 0.0613 0.5000 -v 0.6062 0.0613 0.4109 -v 0.5693 0.0613 0.3800 -v 0.5241 0.0613 0.3635 -v 0.4759 0.0613 0.3635 -v 0.4307 0.0613 0.3800 -v 0.3938 0.0613 0.4109 -v 0.3698 0.0613 0.4526 -v 0.3614 0.0613 0.5000 -v 0.3698 0.0613 0.5474 -v 0.3938 0.0613 0.5891 -v 0.4307 0.0613 0.6200 -v 0.4759 0.0613 0.6365 -v 0.5241 0.0613 0.6365 -v 0.5693 0.0613 0.6200 -v 0.6062 0.0613 0.5891 -v 0.6302 0.0613 0.5474 -v 0.5000 0.0613 0.5000 -v 0.4782 0.3699 0.4989 -v 0.4783 0.3699 0.5000 -v 0.4778 0.3699 0.4978 -v 0.4772 0.3699 0.4969 -v 0.4764 0.3699 0.4961 -v 0.4755 0.3699 0.4955 -v 0.4745 0.3699 0.4951 -v 0.4733 0.3699 0.4950 -v 0.4722 0.3699 0.4951 -v 0.4711 0.3699 0.4955 -v 0.4702 0.3699 0.4961 -v 0.4694 0.3699 0.4969 -v 0.4688 0.3699 0.4978 -v 0.4685 0.3699 0.4989 -v 0.4683 0.3699 0.5000 -v 0.4685 0.3699 0.5011 -v 0.4688 0.3699 0.5022 -v 0.4694 0.3699 0.5031 -v 0.4702 0.3699 0.5039 -v 0.4711 0.3699 0.5045 -v 0.4722 0.3699 0.5049 -v 0.4733 0.3699 0.5050 -v 0.4745 0.3699 0.5049 -v 0.4755 0.3699 0.5045 -v 0.4764 0.3699 0.5039 -v 0.4772 0.3699 0.5031 -v 0.4778 0.3699 0.5022 -v 0.4782 0.3699 0.5011 -v 0.5275 0.3698 0.5049 -v 0.5265 0.3701 0.5050 -v 0.5254 0.3705 0.5049 -v 0.5311 0.3686 0.5011 -v 0.5307 0.3687 0.5022 -v 0.5302 0.3689 0.5031 -v 0.5312 0.3686 0.5000 -v 0.5311 0.3686 0.4989 -v 0.5307 0.3687 0.4978 -v 0.5302 0.3689 0.4969 -v 0.5294 0.3691 0.4961 -v 0.5285 0.3694 0.4955 -v 0.5275 0.3698 0.4951 -v 0.5265 0.3701 0.4950 -v 0.5254 0.3705 0.4951 -v 0.5244 0.3708 0.4955 -v 0.5235 0.3711 0.4961 -v 0.5228 0.3714 0.4969 -v 0.5222 0.3715 0.4978 -v 0.5218 0.3717 0.4989 -v 0.5217 0.3717 0.5000 -v 0.5218 0.3717 0.5011 -v 0.5222 0.3715 0.5022 -v 0.5228 0.3714 0.5031 -v 0.5294 0.3691 0.5039 -v 0.5235 0.3711 0.5039 -v 0.5285 0.3694 0.5045 -v 0.5244 0.3708 0.5045 -v 0.4773 0.3777 0.4989 -v 0.4774 0.3777 0.5000 -v 0.4773 0.3777 0.5011 -v 0.4769 0.3778 0.5022 -v 0.4763 0.3778 0.5031 -v 0.4755 0.3779 0.5039 -v 0.4746 0.3780 0.5045 -v 0.4736 0.3781 0.5049 -v 0.4724 0.3782 0.5050 -v 0.4713 0.3783 0.5049 -v 0.4702 0.3784 0.5045 -v 0.4693 0.3785 0.5039 -v 0.4685 0.3786 0.5031 -v 0.4680 0.3786 0.5022 -v 0.4676 0.3787 0.5011 -v 0.4674 0.3787 0.5000 -v 0.4676 0.3787 0.4989 -v 0.4680 0.3786 0.4978 -v 0.4685 0.3786 0.4969 -v 0.4693 0.3785 0.4961 -v 0.4702 0.3784 0.4955 -v 0.4713 0.3783 0.4951 -v 0.4724 0.3782 0.4950 -v 0.4736 0.3781 0.4951 -v 0.4746 0.3780 0.4955 -v 0.4755 0.3779 0.4961 -v 0.4763 0.3778 0.4969 -v 0.4769 0.3778 0.4978 -v 0.4756 0.3795 0.4989 -v 0.4756 0.3794 0.5000 -v 0.4756 0.3795 0.5011 -v 0.4754 0.3799 0.5022 -v 0.4751 0.3804 0.5031 -v 0.4748 0.3811 0.5039 -v 0.4743 0.3819 0.5045 -v 0.4738 0.3828 0.5049 -v 0.4733 0.3839 0.5050 -v 0.4728 0.3849 0.5049 -v 0.4723 0.3858 0.5045 -v 0.4719 0.3866 0.5039 -v 0.4715 0.3873 0.5031 -v 0.4713 0.3878 0.5022 -v 0.4711 0.3882 0.5011 -v 0.4710 0.3883 0.5000 -v 0.4711 0.3882 0.4989 -v 0.4713 0.3878 0.4978 -v 0.4715 0.3873 0.4969 -v 0.4719 0.3866 0.4961 -v 0.4723 0.3858 0.4955 -v 0.4728 0.3849 0.4951 -v 0.4733 0.3839 0.4950 -v 0.4738 0.3828 0.4951 -v 0.4743 0.3819 0.4955 -v 0.4748 0.3811 0.4961 -v 0.4751 0.3804 0.4969 -v 0.4754 0.3799 0.4978 -v 0.4992 0.3808 0.4989 -v 0.4992 0.3806 0.5000 -v 0.4992 0.3808 0.5011 -v 0.4993 0.3811 0.5022 -v 0.4994 0.3817 0.5031 -v 0.4995 0.3825 0.5039 -v 0.4996 0.3834 0.5045 -v 0.4997 0.3845 0.5049 -v 0.4999 0.3856 0.5050 -v 0.5000 0.3867 0.5049 -v 0.5002 0.3878 0.5045 -v 0.5003 0.3887 0.5039 -v 0.5004 0.3894 0.5031 -v 0.5005 0.3900 0.5022 -v 0.5006 0.3904 0.5011 -v 0.5006 0.3905 0.5000 -v 0.5006 0.3904 0.4989 -v 0.5005 0.3900 0.4978 -v 0.5004 0.3894 0.4969 -v 0.5003 0.3887 0.4961 -v 0.5002 0.3878 0.4955 -v 0.5000 0.3867 0.4951 -v 0.4999 0.3856 0.4950 -v 0.4997 0.3845 0.4951 -v 0.4996 0.3834 0.4955 -v 0.4995 0.3825 0.4961 -v 0.4994 0.3817 0.4969 -v 0.4993 0.3811 0.4978 -v 0.5234 0.3801 0.4989 -v 0.5233 0.3800 0.5000 -v 0.5234 0.3801 0.5011 -v 0.5236 0.3804 0.5022 -v 0.5240 0.3808 0.5031 -v 0.5245 0.3814 0.5039 -v 0.5251 0.3821 0.5045 -v 0.5257 0.3830 0.5049 -v 0.5265 0.3839 0.5050 -v 0.5272 0.3847 0.5049 -v 0.5278 0.3856 0.5045 -v 0.5284 0.3863 0.5039 -v 0.5289 0.3869 0.5031 -v 0.5293 0.3874 0.5022 -v 0.5295 0.3876 0.5011 -v 0.5296 0.3878 0.5000 -v 0.5295 0.3876 0.4989 -v 0.5293 0.3874 0.4978 -v 0.5289 0.3869 0.4969 -v 0.5284 0.3863 0.4961 -v 0.5278 0.3856 0.4955 -v 0.5272 0.3847 0.4951 -v 0.5265 0.3839 0.4950 -v 0.5257 0.3830 0.4951 -v 0.5251 0.3821 0.4955 -v 0.5245 0.3814 0.4961 -v 0.5240 0.3808 0.4969 -v 0.5236 0.3804 0.4978 -v 0.5229 0.3792 0.4989 -v 0.5227 0.3792 0.5000 -v 0.5229 0.3792 0.5011 -v 0.5232 0.3791 0.5022 -v 0.5238 0.3790 0.5031 -v 0.5246 0.3789 0.5039 -v 0.5255 0.3787 0.5045 -v 0.5265 0.3785 0.5049 -v 0.5276 0.3783 0.5050 -v 0.5288 0.3781 0.5049 -v 0.5298 0.3779 0.5045 -v 0.5307 0.3777 0.5039 -v 0.5315 0.3775 0.5031 -v 0.5321 0.3774 0.5022 -v 0.5324 0.3774 0.5011 -v 0.5326 0.3773 0.5000 -v 0.5324 0.3774 0.4989 -v 0.5321 0.3774 0.4978 -v 0.5315 0.3775 0.4969 -v 0.5307 0.3777 0.4961 -v 0.5298 0.3779 0.4955 -v 0.5288 0.3781 0.4951 -v 0.5276 0.3783 0.4950 -v 0.5265 0.3785 0.4951 -v 0.5255 0.3787 0.4955 -v 0.5246 0.3789 0.4961 -v 0.5238 0.3790 0.4969 -v 0.5232 0.3791 0.4978 -v 0.6432 0.3672 0.5000 -v 0.6346 0.3672 0.4510 -v 0.6437 0.3683 0.4477 -v 0.6529 0.3683 0.5000 -v 0.6097 0.3672 0.4080 -v 0.6171 0.3683 0.4017 -v 0.5716 0.3672 0.3760 -v 0.5765 0.3683 0.3676 -v 0.5249 0.3672 0.3590 -v 0.5266 0.3683 0.3494 -v 0.4751 0.3672 0.3590 -v 0.4734 0.3683 0.3494 -v 0.4284 0.3672 0.3760 -v 0.4235 0.3683 0.3676 -v 0.3903 0.3672 0.4080 -v 0.3829 0.3683 0.4017 -v 0.3654 0.3672 0.4510 -v 0.3563 0.3683 0.4477 -v 0.3568 0.3672 0.5000 -v 0.3471 0.3683 0.5000 -v 0.3654 0.3672 0.5490 -v 0.3563 0.3683 0.5523 -v 0.3903 0.3672 0.5920 -v 0.3829 0.3683 0.5983 -v 0.4284 0.3672 0.6240 -v 0.4235 0.3683 0.6324 -v 0.4751 0.3672 0.6410 -v 0.4734 0.3683 0.6506 -v 0.5249 0.3672 0.6410 -v 0.5266 0.3683 0.6506 -v 0.5716 0.3672 0.6240 -v 0.5765 0.3683 0.6324 -v 0.6097 0.3672 0.5920 -v 0.6171 0.3683 0.5983 -v 0.6346 0.3672 0.5490 -v 0.6437 0.3683 0.5523 -v 0.6437 0.3693 0.4477 -v 0.6529 0.3693 0.5000 -v 0.6171 0.3693 0.4017 -v 0.5765 0.3693 0.3676 -v 0.5266 0.3693 0.3494 -v 0.4734 0.3693 0.3494 -v 0.4235 0.3693 0.3676 -v 0.3829 0.3693 0.4017 -v 0.3563 0.3693 0.4477 -v 0.3471 0.3693 0.5000 -v 0.3563 0.3693 0.5523 -v 0.3829 0.3693 0.5983 -v 0.4235 0.3693 0.6324 -v 0.4734 0.3693 0.6506 -v 0.5266 0.3693 0.6506 -v 0.5765 0.3693 0.6324 -v 0.6171 0.3693 0.5983 -v 0.6437 0.3693 0.5523 -v 0.6437 0.3703 0.4477 -v 0.6529 0.3703 0.5000 -v 0.6171 0.3703 0.4017 -v 0.5765 0.3703 0.3676 -v 0.5266 0.3703 0.3494 -v 0.4734 0.3703 0.3494 -v 0.4235 0.3703 0.3676 -v 0.3829 0.3703 0.4017 -v 0.3563 0.3703 0.4477 -v 0.3471 0.3703 0.5000 -v 0.3563 0.3703 0.5523 -v 0.3829 0.3703 0.5983 -v 0.4235 0.3703 0.6324 -v 0.4734 0.3703 0.6506 -v 0.5266 0.3703 0.6506 -v 0.5765 0.3703 0.6324 -v 0.6171 0.3703 0.5983 -v 0.6437 0.3703 0.5523 -v 0.6437 0.3713 0.4477 -v 0.6529 0.3713 0.5000 -v 0.6171 0.3713 0.4017 -v 0.5765 0.3713 0.3676 -v 0.5266 0.3713 0.3494 -v 0.4734 0.3713 0.3494 -v 0.4235 0.3713 0.3676 -v 0.3829 0.3713 0.4017 -v 0.3563 0.3713 0.4477 -v 0.3471 0.3713 0.5000 -v 0.3563 0.3713 0.5523 -v 0.3829 0.3713 0.5983 -v 0.4235 0.3713 0.6324 -v 0.4734 0.3713 0.6506 -v 0.5266 0.3713 0.6506 -v 0.5765 0.3713 0.6324 -v 0.6171 0.3713 0.5983 -v 0.6437 0.3713 0.5523 -v 0.6385 0.3709 0.4496 -v 0.6474 0.3709 0.5000 -v 0.6129 0.3709 0.4053 -v 0.5737 0.3709 0.3724 -v 0.5256 0.3709 0.3549 -v 0.4744 0.3709 0.3549 -v 0.4263 0.3709 0.3724 -v 0.3871 0.3709 0.4053 -v 0.3615 0.3709 0.4496 -v 0.3526 0.3709 0.5000 -v 0.3615 0.3709 0.5504 -v 0.3871 0.3709 0.5947 -v 0.4263 0.3709 0.6276 -v 0.4744 0.3709 0.6451 -v 0.5256 0.3709 0.6451 -v 0.5737 0.3709 0.6276 -v 0.6129 0.3709 0.5947 -v 0.6385 0.3709 0.5504 -v 0.3578 0.3459 0.5229 -v 0.3578 0.3467 0.5228 -v 0.3579 0.3450 0.5233 -v 0.3579 0.3443 0.5239 -v 0.3579 0.3437 0.5246 -v 0.3579 0.3433 0.5256 -v 0.3579 0.3430 0.5266 -v 0.3579 0.3429 0.5278 -v 0.3579 0.3430 0.5289 -v 0.3579 0.3433 0.5300 -v 0.3579 0.3437 0.5309 -v 0.3579 0.3443 0.5317 -v 0.3579 0.3450 0.5322 -v 0.3579 0.3459 0.5326 -v 0.3579 0.3467 0.5328 -v 0.3579 0.3476 0.5326 -v 0.3579 0.3485 0.5322 -v 0.3579 0.3492 0.5317 -v 0.3578 0.3498 0.5309 -v 0.3578 0.3502 0.5300 -v 0.3578 0.3505 0.5289 -v 0.3578 0.3506 0.5278 -v 0.3578 0.3505 0.5266 -v 0.3578 0.3502 0.5256 -v 0.3578 0.3498 0.5246 -v 0.3578 0.3492 0.5239 -v 0.3578 0.3485 0.5233 -v 0.3578 0.3476 0.5229 -v 0.3576 0.3505 0.4735 -v 0.3572 0.3506 0.4746 -v 0.3569 0.3505 0.4757 -v 0.3588 0.3476 0.4700 -v 0.3587 0.3485 0.4704 -v 0.3585 0.3492 0.4709 -v 0.3588 0.3468 0.4699 -v 0.3588 0.3459 0.4700 -v 0.3587 0.3451 0.4704 -v 0.3585 0.3443 0.4709 -v 0.3583 0.3437 0.4717 -v 0.3580 0.3433 0.4725 -v 0.3577 0.3430 0.4735 -v 0.3573 0.3429 0.4746 -v 0.3570 0.3430 0.4757 -v 0.3566 0.3433 0.4767 -v 0.3563 0.3437 0.4776 -v 0.3561 0.3443 0.4783 -v 0.3559 0.3450 0.4789 -v 0.3557 0.3458 0.4793 -v 0.3557 0.3467 0.4794 -v 0.3557 0.3476 0.4793 -v 0.3558 0.3484 0.4789 -v 0.3560 0.3492 0.4783 -v 0.3582 0.3498 0.4717 -v 0.3562 0.3498 0.4776 -v 0.3579 0.3502 0.4725 -v 0.3565 0.3502 0.4767 -v 0.3498 0.3458 0.5239 -v 0.3498 0.3467 0.5237 -v 0.3498 0.3476 0.5239 -v 0.3498 0.3484 0.5242 -v 0.3497 0.3491 0.5248 -v 0.3496 0.3497 0.5256 -v 0.3495 0.3502 0.5265 -v 0.3494 0.3505 0.5276 -v 0.3493 0.3506 0.5287 -v 0.3492 0.3505 0.5299 -v 0.3491 0.3502 0.5309 -v 0.3490 0.3497 0.5318 -v 0.3490 0.3491 0.5326 -v 0.3489 0.3484 0.5332 -v 0.3489 0.3476 0.5336 -v 0.3489 0.3467 0.5337 -v 0.3489 0.3458 0.5336 -v 0.3490 0.3450 0.5332 -v 0.3490 0.3443 0.5326 -v 0.3491 0.3437 0.5318 -v 0.3492 0.3432 0.5309 -v 0.3493 0.3429 0.5299 -v 0.3494 0.3428 0.5287 -v 0.3495 0.3429 0.5276 -v 0.3496 0.3432 0.5265 -v 0.3497 0.3437 0.5256 -v 0.3498 0.3443 0.5248 -v 0.3498 0.3450 0.5242 -v 0.3480 0.3458 0.5256 -v 0.3481 0.3467 0.5255 -v 0.3480 0.3476 0.5256 -v 0.3476 0.3484 0.5258 -v 0.3471 0.3491 0.5260 -v 0.3463 0.3497 0.5264 -v 0.3455 0.3501 0.5268 -v 0.3445 0.3504 0.5273 -v 0.3435 0.3505 0.5279 -v 0.3425 0.3504 0.5284 -v 0.3415 0.3501 0.5289 -v 0.3407 0.3496 0.5293 -v 0.3400 0.3490 0.5297 -v 0.3394 0.3483 0.5299 -v 0.3391 0.3475 0.5301 -v 0.3390 0.3466 0.5302 -v 0.3391 0.3457 0.5301 -v 0.3395 0.3449 0.5299 -v 0.3400 0.3442 0.5297 -v 0.3407 0.3436 0.5293 -v 0.3416 0.3431 0.5289 -v 0.3426 0.3428 0.5284 -v 0.3436 0.3428 0.5279 -v 0.3446 0.3429 0.5273 -v 0.3456 0.3432 0.5268 -v 0.3464 0.3436 0.5264 -v 0.3471 0.3442 0.5260 -v 0.3477 0.3450 0.5258 -v 0.3466 0.3458 0.5019 -v 0.3467 0.3467 0.5020 -v 0.3465 0.3475 0.5019 -v 0.3461 0.3484 0.5019 -v 0.3455 0.3491 0.5018 -v 0.3447 0.3497 0.5017 -v 0.3438 0.3501 0.5016 -v 0.3427 0.3504 0.5015 -v 0.3415 0.3505 0.5013 -v 0.3404 0.3504 0.5012 -v 0.3393 0.3501 0.5010 -v 0.3384 0.3496 0.5009 -v 0.3376 0.3490 0.5008 -v 0.3370 0.3483 0.5007 -v 0.3366 0.3475 0.5007 -v 0.3365 0.3466 0.5007 -v 0.3366 0.3457 0.5007 -v 0.3370 0.3449 0.5007 -v 0.3376 0.3442 0.5008 -v 0.3384 0.3436 0.5009 -v 0.3394 0.3431 0.5010 -v 0.3405 0.3428 0.5012 -v 0.3416 0.3427 0.5013 -v 0.3428 0.3429 0.5015 -v 0.3439 0.3432 0.5016 -v 0.3448 0.3436 0.5017 -v 0.3456 0.3442 0.5018 -v 0.3462 0.3450 0.5019 -v 0.3471 0.3458 0.4778 -v 0.3472 0.3467 0.4778 -v 0.3471 0.3476 0.4778 -v 0.3468 0.3484 0.4775 -v 0.3463 0.3491 0.4772 -v 0.3456 0.3497 0.4767 -v 0.3449 0.3501 0.4761 -v 0.3440 0.3504 0.4754 -v 0.3431 0.3505 0.4747 -v 0.3422 0.3504 0.4740 -v 0.3414 0.3501 0.4734 -v 0.3406 0.3496 0.4728 -v 0.3400 0.3490 0.4723 -v 0.3395 0.3483 0.4719 -v 0.3392 0.3475 0.4717 -v 0.3391 0.3466 0.4716 -v 0.3393 0.3457 0.4717 -v 0.3396 0.3449 0.4719 -v 0.3401 0.3442 0.4723 -v 0.3407 0.3436 0.4728 -v 0.3415 0.3431 0.4734 -v 0.3423 0.3428 0.4740 -v 0.3432 0.3428 0.4747 -v 0.3441 0.3429 0.4754 -v 0.3450 0.3432 0.4761 -v 0.3457 0.3436 0.4767 -v 0.3463 0.3442 0.4772 -v 0.3468 0.3450 0.4775 -v 0.3480 0.3458 0.4783 -v 0.3479 0.3467 0.4784 -v 0.3480 0.3476 0.4783 -v 0.3480 0.3484 0.4779 -v 0.3481 0.3491 0.4773 -v 0.3483 0.3497 0.4766 -v 0.3484 0.3502 0.4757 -v 0.3486 0.3505 0.4746 -v 0.3488 0.3506 0.4735 -v 0.3491 0.3505 0.4724 -v 0.3493 0.3502 0.4713 -v 0.3494 0.3497 0.4704 -v 0.3496 0.3491 0.4697 -v 0.3497 0.3484 0.4691 -v 0.3498 0.3476 0.4687 -v 0.3498 0.3467 0.4686 -v 0.3498 0.3458 0.4687 -v 0.3498 0.3450 0.4691 -v 0.3497 0.3443 0.4697 -v 0.3495 0.3437 0.4704 -v 0.3494 0.3432 0.4713 -v 0.3492 0.3429 0.4724 -v 0.3489 0.3428 0.4735 -v 0.3487 0.3429 0.4746 -v 0.3485 0.3432 0.4757 -v 0.3483 0.3436 0.4766 -v 0.3482 0.3442 0.4773 -v 0.3481 0.3450 0.4779 -v 0.6425 0.3481 0.5209 -v 0.6425 0.3490 0.5207 -v 0.6425 0.3473 0.5212 -v 0.6425 0.3466 0.5218 -v 0.6425 0.3460 0.5226 -v 0.6425 0.3455 0.5235 -v 0.6425 0.3453 0.5246 -v 0.6425 0.3451 0.5257 -v 0.6425 0.3453 0.5269 -v 0.6426 0.3455 0.5279 -v 0.6426 0.3460 0.5289 -v 0.6426 0.3466 0.5296 -v 0.6425 0.3473 0.5302 -v 0.6425 0.3481 0.5306 -v 0.6425 0.3490 0.5307 -v 0.6425 0.3499 0.5306 -v 0.6425 0.3507 0.5302 -v 0.6425 0.3515 0.5296 -v 0.6425 0.3521 0.5289 -v 0.6425 0.3525 0.5279 -v 0.6424 0.3528 0.5269 -v 0.6424 0.3529 0.5257 -v 0.6424 0.3528 0.5246 -v 0.6424 0.3525 0.5235 -v 0.6424 0.3521 0.5226 -v 0.6424 0.3515 0.5218 -v 0.6424 0.3507 0.5212 -v 0.6424 0.3499 0.5209 -v 0.6410 0.3514 0.4689 -v 0.6408 0.3507 0.4683 -v 0.6407 0.3499 0.4680 -v 0.6407 0.3490 0.4679 -v 0.6407 0.3481 0.4680 -v 0.6409 0.3473 0.4683 -v 0.6411 0.3466 0.4689 -v 0.6413 0.3460 0.4696 -v 0.6417 0.3455 0.4705 -v 0.6420 0.3452 0.4715 -v 0.6424 0.3451 0.4726 -v 0.6428 0.3453 0.4737 -v 0.6431 0.3455 0.4747 -v 0.6434 0.3460 0.4756 -v 0.6436 0.3466 0.4763 -v 0.6438 0.3473 0.4769 -v 0.6439 0.3482 0.4772 -v 0.6440 0.3490 0.4773 -v 0.6439 0.3499 0.4772 -v 0.6438 0.3507 0.4769 -v 0.6436 0.3515 0.4763 -v 0.6413 0.3520 0.4696 -v 0.6433 0.3521 0.4756 -v 0.6416 0.3525 0.4705 -v 0.6430 0.3525 0.4747 -v 0.6426 0.3528 0.4737 -v 0.6419 0.3528 0.4715 -v 0.6423 0.3529 0.4726 -v 0.6505 0.3491 0.5216 -v 0.6505 0.3482 0.5217 -v 0.6505 0.3500 0.5217 -v 0.6505 0.3508 0.5221 -v 0.6505 0.3515 0.5227 -v 0.6506 0.3521 0.5235 -v 0.6507 0.3526 0.5244 -v 0.6508 0.3529 0.5254 -v 0.6509 0.3530 0.5266 -v 0.6511 0.3529 0.5277 -v 0.6512 0.3526 0.5288 -v 0.6513 0.3521 0.5297 -v 0.6514 0.3515 0.5305 -v 0.6514 0.3508 0.5310 -v 0.6515 0.3500 0.5314 -v 0.6515 0.3491 0.5315 -v 0.6515 0.3482 0.5314 -v 0.6515 0.3474 0.5310 -v 0.6514 0.3467 0.5305 -v 0.6514 0.3461 0.5297 -v 0.6513 0.3456 0.5288 -v 0.6512 0.3453 0.5277 -v 0.6510 0.3452 0.5266 -v 0.6509 0.3453 0.5254 -v 0.6508 0.3456 0.5244 -v 0.6507 0.3461 0.5235 -v 0.6506 0.3467 0.5227 -v 0.6505 0.3474 0.5221 -v 0.6522 0.3491 0.5234 -v 0.6524 0.3482 0.5234 -v 0.6523 0.3500 0.5234 -v 0.6527 0.3508 0.5236 -v 0.6532 0.3515 0.5239 -v 0.6539 0.3521 0.5242 -v 0.6547 0.3526 0.5246 -v 0.6557 0.3529 0.5251 -v 0.6567 0.3530 0.5256 -v 0.6578 0.3529 0.5261 -v 0.6588 0.3526 0.5266 -v 0.6596 0.3522 0.5270 -v 0.6603 0.3516 0.5274 -v 0.6609 0.3509 0.5277 -v 0.6612 0.3501 0.5278 -v 0.6614 0.3492 0.5279 -v 0.6613 0.3483 0.5278 -v 0.6609 0.3475 0.5277 -v 0.6604 0.3467 0.5274 -v 0.6597 0.3461 0.5270 -v 0.6589 0.3457 0.5266 -v 0.6579 0.3454 0.5261 -v 0.6569 0.3453 0.5256 -v 0.6558 0.3454 0.5251 -v 0.6548 0.3456 0.5246 -v 0.6540 0.3461 0.5242 -v 0.6533 0.3467 0.5239 -v 0.6527 0.3474 0.5236 -v 0.6533 0.3491 0.4998 -v 0.6535 0.3482 0.4998 -v 0.6534 0.3500 0.4998 -v 0.6538 0.3508 0.4997 -v 0.6544 0.3516 0.4996 -v 0.6552 0.3522 0.4995 -v 0.6561 0.3526 0.4994 -v 0.6572 0.3529 0.4992 -v 0.6583 0.3530 0.4991 -v 0.6595 0.3529 0.4989 -v 0.6606 0.3527 0.4987 -v 0.6615 0.3522 0.4986 -v 0.6623 0.3516 0.4985 -v 0.6629 0.3509 0.4984 -v 0.6633 0.3501 0.4983 -v 0.6635 0.3492 0.4983 -v 0.6633 0.3483 0.4983 -v 0.6630 0.3475 0.4984 -v 0.6624 0.3468 0.4985 -v 0.6616 0.3462 0.4986 -v 0.6607 0.3457 0.4987 -v 0.6596 0.3454 0.4989 -v 0.6584 0.3453 0.4991 -v 0.6573 0.3454 0.4992 -v 0.6562 0.3457 0.4994 -v 0.6553 0.3461 0.4995 -v 0.6545 0.3467 0.4996 -v 0.6538 0.3474 0.4997 -v 0.6524 0.3491 0.4757 -v 0.6526 0.3482 0.4756 -v 0.6525 0.3500 0.4756 -v 0.6528 0.3508 0.4753 -v 0.6533 0.3515 0.4750 -v 0.6539 0.3521 0.4745 -v 0.6546 0.3526 0.4739 -v 0.6555 0.3529 0.4732 -v 0.6564 0.3530 0.4725 -v 0.6573 0.3529 0.4718 -v 0.6581 0.3526 0.4711 -v 0.6589 0.3522 0.4705 -v 0.6595 0.3516 0.4700 -v 0.6600 0.3509 0.4697 -v 0.6603 0.3501 0.4694 -v 0.6604 0.3492 0.4693 -v 0.6603 0.3483 0.4694 -v 0.6600 0.3475 0.4697 -v 0.6596 0.3467 0.4700 -v 0.6589 0.3461 0.4705 -v 0.6582 0.3457 0.4711 -v 0.6574 0.3454 0.4718 -v 0.6565 0.3453 0.4725 -v 0.6556 0.3454 0.4732 -v 0.6547 0.3456 0.4739 -v 0.6540 0.3461 0.4745 -v 0.6534 0.3467 0.4750 -v 0.6529 0.3474 0.4753 -v 0.6517 0.3491 0.4763 -v 0.6517 0.3482 0.4761 -v 0.6517 0.3500 0.4761 -v 0.6516 0.3508 0.4758 -v 0.6514 0.3515 0.4752 -v 0.6513 0.3521 0.4744 -v 0.6511 0.3526 0.4735 -v 0.6509 0.3529 0.4725 -v 0.6506 0.3530 0.4714 -v 0.6504 0.3529 0.4702 -v 0.6502 0.3526 0.4692 -v 0.6500 0.3521 0.4683 -v 0.6499 0.3515 0.4675 -v 0.6498 0.3508 0.4669 -v 0.6497 0.3500 0.4666 -v 0.6497 0.3491 0.4664 -v 0.6497 0.3482 0.4666 -v 0.6498 0.3474 0.4669 -v 0.6499 0.3467 0.4675 -v 0.6501 0.3461 0.4683 -v 0.6503 0.3456 0.4692 -v 0.6505 0.3453 0.4702 -v 0.6507 0.3452 0.4713 -v 0.6510 0.3453 0.4725 -v 0.6512 0.3456 0.4735 -v 0.6514 0.3461 0.4744 -v 0.6515 0.3467 0.4752 -v 0.6516 0.3474 0.4758 -# 878 vertices - -vn 1.0000 0.0000 -0.0000 -vn 0.9397 0.0000 -0.3420 -vn 0.7660 0.0000 -0.6428 -vn 0.5000 0.0000 -0.8660 -vn 0.1736 0.0000 -0.9848 -vn -0.1736 0.0000 -0.9848 -vn -0.5000 0.0000 -0.8660 -vn -0.7660 0.0000 -0.6428 -vn -0.9397 0.0000 -0.3420 -vn -1.0000 0.0000 -0.0000 -vn -0.9397 0.0000 0.3420 -vn -0.7660 0.0000 0.6428 -vn -0.5000 0.0000 0.8660 -vn -0.1736 0.0000 0.9848 -vn 0.1736 0.0000 0.9848 -vn 0.5000 0.0000 0.8660 -vn 0.7660 0.0000 0.6428 -vn 0.9397 0.0000 0.3420 -vn 0.0000 -1.0000 -0.0000 -vn 0.0000 1.0000 -0.0000 -vn -0.6231 0.7485 0.2268 -vn -0.6631 0.7485 -0.0000 -vn -0.5080 0.7485 0.4262 -vn -0.3315 0.7485 0.5743 -vn -0.1151 0.7485 0.6530 -vn 0.1151 0.7485 0.6530 -vn 0.3315 0.7485 0.5743 -vn 0.5080 0.7485 0.4262 -vn 0.6231 0.7485 0.2268 -vn 0.6631 0.7485 -0.0000 -vn 0.6231 0.7485 -0.2268 -vn 0.5080 0.7485 -0.4262 -vn 0.3315 0.7485 -0.5743 -vn 0.1151 0.7485 -0.6530 -vn -0.1151 0.7485 -0.6530 -vn -0.3315 0.7485 -0.5743 -vn -0.5080 0.7485 -0.4262 -vn -0.6231 0.7485 -0.2268 -vn -0.6974 0.6702 0.2538 -vn -0.7421 0.6702 -0.0000 -vn -0.5685 0.6702 0.4770 -vn -0.3711 0.6702 0.6427 -vn -0.1289 0.6702 0.7309 -vn 0.1289 0.6702 0.7309 -vn 0.3711 0.6702 0.6427 -vn 0.5685 0.6702 0.4770 -vn 0.6974 0.6702 0.2538 -vn 0.7421 0.6702 -0.0000 -vn 0.6974 0.6702 -0.2538 -vn 0.5685 0.6702 -0.4770 -vn 0.3711 0.6702 -0.6427 -vn 0.1289 0.6702 -0.7309 -vn -0.1289 0.6702 -0.7309 -vn -0.3711 0.6702 -0.6427 -vn -0.5685 0.6702 -0.4770 -vn -0.6974 0.6702 -0.2538 -vn -0.3141 -0.9494 0.0000 -vn -0.3141 -0.9494 -0.0001 -vn -0.3141 -0.9494 -0.0000 -vn -0.3139 -0.9495 0.0001 -vn -0.3140 -0.9494 -0.0000 -vn 0.9679 0.1145 -0.2238 -vn 0.8889 0.4179 -0.1876 -vn 0.9039 0.4276 -0.0070 -vn 0.9931 0.1175 -0.0001 -vn 0.9024 0.3912 0.1809 -vn 0.9680 0.1141 0.2237 -vn 0.8709 0.3103 0.3812 -vn 0.8950 0.1046 0.4336 -vn 0.7876 0.2007 0.5826 -vn 0.7802 0.0902 0.6190 -vn 0.6423 0.0987 0.7601 -vn 0.6290 0.0717 0.7741 -vn 0.4480 0.0319 0.8934 -vn 0.4455 0.0500 0.8939 -vn 0.2242 0.0026 0.9745 -vn 0.2348 0.0259 0.9717 -vn -0.0109 0.0017 0.9999 -vn 0.0078 0.0010 1.0000 -vn -0.2404 0.0184 0.9705 -vn -0.2200 -0.0232 0.9752 -vn -0.4506 0.0431 0.8917 -vn -0.4333 -0.0451 0.9001 -vn -0.6323 0.0693 0.7716 -vn -0.6202 -0.0636 0.7818 -vn -0.7815 0.0930 0.6169 -vn -0.7751 -0.0786 0.6270 -vn -0.8948 0.1117 0.4323 -vn -0.8933 -0.0899 0.4404 -vn -0.9669 0.1234 0.2232 -vn -0.9689 -0.0971 0.2277 -vn -0.9919 0.1267 0.0005 -vn -0.9950 -0.0997 0.0001 -vn -0.9674 0.1211 -0.2224 -vn -0.9689 -0.0975 -0.2276 -vn -0.8956 0.1073 -0.4317 -vn -0.8933 -0.0906 -0.4403 -vn -0.7825 0.0868 -0.6166 -vn -0.7750 -0.0794 -0.6269 -vn -0.6331 0.0618 -0.7716 -vn -0.6202 -0.0644 -0.7818 -vn -0.4510 0.0353 -0.8918 -vn -0.4333 -0.0457 -0.9001 -vn -0.2396 0.0125 -0.9708 -vn -0.2199 -0.0236 -0.9752 -vn -0.0078 0.0018 -1.0000 -vn 0.0080 0.0010 -1.0000 -vn 0.2305 0.0149 -0.9730 -vn 0.2349 0.0264 -0.9717 -vn 0.4570 0.0642 -0.8872 -vn 0.4456 0.0508 -0.8938 -vn 0.6481 0.1545 -0.7457 -vn 0.6290 0.0727 -0.7740 -vn 0.7812 0.2671 -0.5643 -vn 0.7801 0.0911 -0.6189 -vn 0.8541 0.3630 -0.3724 -vn 0.8949 0.1054 -0.4337 -vn 0.9179 -0.3268 -0.2253 -vn 0.9501 -0.3113 -0.0208 -vn 0.9393 -0.2911 0.1815 -vn 0.8897 -0.2718 0.3667 -vn 0.7986 -0.2578 0.5438 -vn 0.6450 -0.2418 0.7249 -vn 0.4136 -0.2021 0.8878 -vn 0.1549 -0.1116 0.9816 -vn -0.0577 0.0268 0.9980 -vn -0.2164 0.1883 0.9580 -vn -0.3367 0.3495 0.8744 -vn -0.4298 0.4963 0.7543 -vn -0.5016 0.6210 0.6024 -vn -0.5540 0.7177 0.4219 -vn -0.5863 0.7802 0.2179 -vn -0.5967 0.8024 0.0005 -vn -0.5844 0.7819 -0.2172 -vn -0.5500 0.7209 -0.4216 -vn -0.4953 0.6257 -0.6027 -vn -0.4208 0.5022 -0.7555 -vn -0.3248 0.3562 -0.8762 -vn -0.2027 0.1943 -0.9598 -vn -0.0485 0.0285 -0.9984 -vn 0.1398 -0.1234 -0.9825 -vn 0.3529 -0.2423 -0.9038 -vn 0.5572 -0.3142 -0.7686 -vn 0.7234 -0.3410 -0.6004 -vn 0.8427 -0.3389 -0.4185 -vn 0.0122 -0.9742 -0.2252 -vn 0.0122 -0.9999 -0.0001 -vn 0.0109 -0.9743 0.2251 -vn 0.0087 -0.8998 0.4362 -vn 0.0060 -0.7825 0.6226 -vn 0.0033 -0.6280 0.7782 -vn 0.0011 -0.4404 0.8978 -vn -0.0003 -0.2253 0.9743 -vn -0.0005 0.0049 1.0000 -vn 0.0004 0.2344 0.9721 -vn 0.0023 0.4473 0.8944 -vn 0.0047 0.6326 0.7745 -vn 0.0071 0.7851 0.6194 -vn 0.0092 0.9008 0.4340 -vn 0.0106 0.9745 0.2240 -vn 0.0107 0.9999 0.0001 -vn 0.0097 0.9746 -0.2239 -vn 0.0076 0.9009 -0.4339 -vn 0.0051 0.7852 -0.6192 -vn 0.0026 0.6327 -0.7744 -vn 0.0005 0.4475 -0.8943 -vn -0.0006 0.2344 -0.9721 -vn -0.0005 0.0048 -1.0000 -vn 0.0009 -0.2256 -0.9742 -vn 0.0032 -0.4407 -0.8976 -vn 0.0060 -0.6283 -0.7780 -vn 0.0087 -0.7827 -0.6224 -vn 0.0110 -0.8998 -0.4362 -vn -0.8796 -0.4101 -0.2413 -vn -0.9133 -0.4058 0.0335 -vn -0.8395 -0.4573 0.2934 -vn -0.7046 -0.5064 0.4972 -vn -0.5601 -0.4915 0.6669 -vn -0.4167 -0.4128 0.8099 -vn -0.2700 -0.2887 0.9186 -vn -0.1188 -0.1343 0.9838 -vn 0.0315 0.0348 0.9989 -vn 0.1749 0.2040 0.9632 -vn 0.3047 0.3605 0.8816 -vn 0.4167 0.4970 0.7611 -vn 0.5089 0.6098 0.6076 -vn 0.5792 0.6956 0.4251 -vn 0.6240 0.7501 0.2191 -vn 0.6398 0.7685 -0.0000 -vn 0.6251 0.7492 -0.2192 -vn 0.5812 0.6938 -0.4252 -vn 0.5119 0.6073 -0.6076 -vn 0.4205 0.4939 -0.7611 -vn 0.3089 0.3571 -0.8815 -vn 0.1789 0.2011 -0.9631 -vn 0.0335 0.0341 -0.9989 -vn -0.1220 -0.1299 -0.9840 -vn -0.2826 -0.2757 -0.9188 -vn -0.4440 -0.3862 -0.8085 -vn -0.6059 -0.4460 -0.6588 -vn -0.7613 -0.4453 -0.4712 -vn -0.9324 0.3045 -0.1948 -vn -0.9258 0.3778 0.0132 -vn -0.9159 0.3435 0.2078 -vn -0.8814 0.2345 0.4101 -vn -0.7851 0.1228 0.6071 -vn -0.6333 0.0490 0.7724 -vn -0.4426 0.0122 0.8966 -vn -0.2226 0.0006 0.9749 -vn 0.0134 0.0041 0.9999 -vn 0.2475 0.0152 0.9688 -vn 0.4618 0.0280 0.8865 -vn 0.6453 0.0392 0.7630 -vn 0.7937 0.0477 0.6064 -vn 0.9047 0.0534 0.4227 -vn 0.9745 0.0567 0.2173 -vn 0.9983 0.0580 -0.0001 -vn 0.9744 0.0576 -0.2175 -vn 0.9046 0.0552 -0.4227 -vn 0.7937 0.0503 -0.6062 -vn 0.6455 0.0423 -0.7626 -vn 0.4624 0.0313 -0.8861 -vn 0.2483 0.0179 -0.9685 -vn 0.0145 0.0046 -0.9999 -vn -0.2216 -0.0039 -0.9751 -vn -0.4417 -0.0010 -0.8971 -vn -0.6327 0.0214 -0.7741 -vn -0.7873 0.0759 -0.6119 -vn -0.8930 0.1767 -0.4139 -vn -0.9649 0.1321 -0.2268 -vn -0.9908 0.1352 -0.0001 -vn -0.9650 0.1317 0.2266 -vn -0.8902 0.1219 0.4389 -vn -0.7727 0.1066 0.6258 -vn -0.6180 0.0861 0.7815 -vn -0.4304 0.0606 0.9006 -vn -0.2159 0.0308 0.9759 -vn 0.0128 -0.0020 0.9999 -vn 0.2398 -0.0353 0.9702 -vn 0.4494 -0.0669 0.8908 -vn 0.6309 -0.0949 0.7700 -vn 0.7798 -0.1183 0.6148 -vn 0.8924 -0.1363 0.4302 -vn 0.9638 -0.1479 0.2218 -vn 0.9884 -0.1521 0.0001 -vn 0.9638 -0.1483 -0.2217 -vn 0.8923 -0.1369 -0.4301 -vn 0.7796 -0.1191 -0.6148 -vn 0.6307 -0.0957 -0.7701 -vn 0.4492 -0.0676 -0.8909 -vn 0.2396 -0.0357 -0.9702 -vn 0.0127 -0.0020 -0.9999 -vn -0.2159 0.0312 -0.9759 -vn -0.4303 0.0613 -0.9006 -vn -0.6178 0.0870 -0.7815 -vn -0.7725 0.1075 -0.6259 -vn -0.8900 0.1227 -0.4390 -vn 0.1045 -0.9945 0.0000 -vn 0.0982 -0.9945 -0.0358 -vn 0.7264 -0.6344 -0.2644 -vn 0.7730 -0.6344 -0.0000 -vn 0.0801 -0.9945 -0.0672 -vn 0.5922 -0.6344 -0.4969 -vn 0.0523 -0.9945 -0.0905 -vn 0.3865 -0.6344 -0.6695 -vn 0.0182 -0.9945 -0.1029 -vn 0.1342 -0.6344 -0.7613 -vn -0.0182 -0.9945 -0.1029 -vn -0.1342 -0.6344 -0.7613 -vn -0.0523 -0.9945 -0.0905 -vn -0.3865 -0.6344 -0.6695 -vn -0.0801 -0.9945 -0.0672 -vn -0.5922 -0.6344 -0.4969 -vn -0.0982 -0.9945 -0.0358 -vn -0.7264 -0.6344 -0.2644 -vn -0.1045 -0.9945 -0.0000 -vn -0.7730 -0.6344 -0.0000 -vn -0.0982 -0.9945 0.0358 -vn -0.7264 -0.6344 0.2644 -vn -0.0801 -0.9945 0.0672 -vn -0.5922 -0.6344 0.4969 -vn -0.0523 -0.9945 0.0905 -vn -0.3865 -0.6344 0.6695 -vn -0.0182 -0.9945 0.1029 -vn -0.1342 -0.6344 0.7613 -vn 0.0182 -0.9945 0.1029 -vn 0.1342 -0.6344 0.7613 -vn 0.0523 -0.9945 0.0905 -vn 0.3865 -0.6344 0.6695 -vn 0.0801 -0.9945 0.0672 -vn 0.5922 -0.6344 0.4969 -vn 0.0982 -0.9945 0.0358 -vn 0.7264 -0.6344 0.2644 -vn 0.6776 0.6928 -0.2466 -vn 0.7211 0.6928 -0.0000 -vn 0.5524 0.6928 -0.4635 -vn 0.3605 0.6928 -0.6245 -vn 0.1252 0.6928 -0.7101 -vn -0.1252 0.6928 -0.7101 -vn -0.3605 0.6928 -0.6245 -vn -0.5524 0.6928 -0.4635 -vn -0.6776 0.6928 -0.2466 -vn -0.7211 0.6928 -0.0000 -vn -0.6776 0.6928 0.2466 -vn -0.5524 0.6928 0.4635 -vn -0.3605 0.6928 0.6245 -vn -0.1252 0.6928 0.7101 -vn 0.1252 0.6928 0.7101 -vn 0.3605 0.6928 0.6245 -vn 0.5524 0.6928 0.4635 -vn 0.6776 0.6928 0.2466 -vn -0.0652 0.9976 0.0237 -vn -0.0694 0.9976 -0.0000 -vn -0.0532 0.9976 0.0446 -vn -0.0347 0.9976 0.0601 -vn -0.0121 0.9976 0.0684 -vn 0.0121 0.9976 0.0684 -vn 0.0347 0.9976 0.0601 -vn 0.0532 0.9976 0.0446 -vn 0.0652 0.9976 0.0237 -vn 0.0694 0.9976 0.0000 -vn 0.0652 0.9976 -0.0237 -vn 0.0532 0.9976 -0.0446 -vn 0.0347 0.9976 -0.0601 -vn 0.0121 0.9976 -0.0684 -vn -0.0121 0.9976 -0.0684 -vn -0.0347 0.9976 -0.0601 -vn -0.0532 0.9976 -0.0446 -vn -0.0652 0.9976 -0.0237 -vn 0.9490 0.0132 0.3149 -vn 0.9490 0.0133 0.3149 -vn 0.9999 0.0140 -0.0071 -vn 0.9999 0.0140 -0.0072 -vn 0.9999 0.0141 -0.0071 -vn -0.1143 -0.2832 -0.9522 -vn -0.4104 -0.2446 -0.8785 -vn -0.4233 -0.0126 -0.9059 -vn -0.1215 -0.0022 -0.9926 -vn -0.3874 0.2288 -0.8930 -vn -0.1185 0.2791 -0.9529 -vn -0.3027 0.4669 -0.8309 -vn -0.1066 0.5223 -0.8461 -vn -0.1900 0.6763 -0.7117 -vn -0.0895 0.7090 -0.6995 -vn -0.0933 0.8318 -0.5472 -vn -0.0700 0.8421 -0.5348 -vn -0.0354 0.9309 -0.3637 -vn -0.0496 0.9308 -0.3621 -vn -0.0111 0.9842 -0.1766 -vn -0.0291 0.9823 -0.1850 -vn -0.0092 0.9999 0.0083 -vn -0.0088 0.9999 -0.0059 -vn -0.0206 0.9816 0.1897 -vn 0.0112 0.9848 0.1734 -vn -0.0391 0.9294 0.3670 -vn 0.0306 0.9358 0.3512 -vn -0.0607 0.8402 0.5388 -vn 0.0494 0.8496 0.5251 -vn -0.0826 0.7070 0.7024 -vn 0.0676 0.7187 0.6921 -vn -0.1018 0.5207 0.8477 -vn 0.0843 0.5329 0.8420 -vn -0.1144 0.2785 0.9536 -vn 0.0975 0.2876 0.9528 -vn -0.1167 -0.0012 0.9932 -vn 0.1042 0.0009 0.9946 -vn -0.1074 -0.2809 0.9537 -vn 0.1025 -0.2860 0.9527 -vn -0.0889 -0.5227 0.8479 -vn 0.0934 -0.5315 0.8419 -vn -0.0653 -0.7085 0.7026 -vn 0.0798 -0.7175 0.6919 -vn -0.0406 -0.8413 0.5390 -vn 0.0637 -0.8488 0.5249 -vn -0.0178 -0.9301 0.3669 -vn 0.0461 -0.9353 0.3509 -vn -0.0003 -0.9820 0.1889 -vn 0.0272 -0.9845 0.1731 -vn 0.0067 -1.0000 0.0058 -vn 0.0072 -1.0000 -0.0061 -vn -0.0050 -0.9833 -0.1817 -vn -0.0137 -0.9826 -0.1850 -vn -0.0468 -0.9272 -0.3716 -vn -0.0353 -0.9316 -0.3619 -vn -0.1296 -0.8222 -0.5543 -vn -0.0572 -0.8434 -0.5342 -vn -0.2441 -0.6626 -0.7080 -vn -0.0789 -0.7111 -0.6987 -vn -0.3490 -0.4635 -0.8145 -vn -0.0988 -0.5254 -0.8451 -vn 0.3017 -0.2660 -0.9155 -vn 0.2954 -0.0178 -0.9552 -vn 0.2560 0.2249 -0.9402 -vn 0.2055 0.4287 -0.8797 -vn 0.1738 0.6101 -0.7730 -vn 0.1654 0.7895 -0.5910 -vn 0.1446 0.9275 -0.3448 -vn 0.0768 0.9896 -0.1213 -vn -0.0277 0.9986 0.0459 -vn -0.1515 0.9727 0.1759 -vn -0.2839 0.9156 0.2847 -vn -0.4195 0.8242 0.3803 -vn -0.5535 0.6907 0.4654 -vn -0.6753 0.5055 0.5371 -vn -0.7647 0.2656 0.5871 -vn -0.7965 -0.0105 0.6046 -vn -0.7596 -0.2852 0.5845 -vn -0.6668 -0.5218 0.5321 -vn -0.5435 -0.7034 0.4581 -vn -0.4094 -0.8336 0.3709 -vn -0.2737 -0.9221 0.2735 -vn -0.1404 -0.9764 0.1642 -vn -0.0131 -0.9992 0.0386 -vn 0.1019 -0.9887 -0.1097 -vn 0.1947 -0.9371 -0.2896 -vn 0.2533 -0.8327 -0.4924 -vn 0.2784 -0.6761 -0.6822 -vn 0.2905 -0.4858 -0.8244 -vn 0.9606 -0.2774 -0.0192 -vn 0.9997 0.0138 -0.0197 -vn 0.9528 0.3030 -0.0178 -vn 0.8366 0.5476 -0.0143 -vn 0.6829 0.7304 -0.0102 -vn 0.5145 0.8575 -0.0064 -vn 0.3410 0.9401 -0.0033 -vn 0.1649 0.9863 -0.0009 -vn -0.0119 0.9999 0.0005 -vn -0.1886 0.9821 0.0010 -vn -0.3639 0.9314 0.0008 -vn -0.5363 0.8440 0.0000 -vn -0.7026 0.7116 -0.0013 -vn -0.8520 0.5235 -0.0027 -vn -0.9614 0.2752 -0.0039 -vn -0.9999 -0.0137 -0.0041 -vn -0.9537 -0.3007 -0.0030 -vn -0.8391 -0.5440 -0.0012 -vn -0.6870 -0.7266 0.0005 -vn -0.5199 -0.8542 0.0017 -vn -0.3476 -0.9376 0.0021 -vn -0.1724 -0.9850 0.0017 -vn 0.0044 -1.0000 0.0004 -vn 0.1814 -0.9834 -0.0020 -vn 0.3577 -0.9338 -0.0051 -vn 0.5312 -0.8472 -0.0088 -vn 0.6988 -0.7152 -0.0128 -vn 0.8498 -0.5269 -0.0166 -vn 0.3981 -0.2975 0.8678 -vn 0.4101 0.0432 0.9110 -vn 0.4462 0.3653 0.8170 -vn 0.4626 0.5973 0.6551 -vn 0.4200 0.7624 0.4924 -vn 0.3319 0.8775 0.3462 -vn 0.2199 0.9516 0.2145 -vn 0.0956 0.9912 0.0918 -vn -0.0342 0.9991 -0.0249 -vn -0.1665 0.9763 -0.1383 -vn -0.2984 0.9215 -0.2486 -vn -0.4283 0.8307 -0.3557 -vn -0.5532 0.6962 -0.4575 -vn -0.6641 0.5089 -0.5477 -vn -0.7437 0.2670 -0.6129 -vn -0.7707 -0.0105 -0.6371 -vn -0.7362 -0.2865 -0.6132 -vn -0.6508 -0.5248 -0.5486 -vn -0.5364 -0.7080 -0.4595 -vn -0.4098 -0.8388 -0.3586 -vn -0.2794 -0.9265 -0.2521 -vn -0.1480 -0.9788 -0.1416 -vn -0.0177 -0.9995 -0.0266 -vn 0.1083 -0.9896 0.0943 -vn 0.2254 -0.9479 0.2253 -vn 0.3241 -0.8699 0.3718 -vn 0.3895 -0.7457 0.5405 -vn 0.4072 -0.5598 0.7217 -vn -0.2822 -0.2561 0.9246 -vn -0.3611 0.0091 0.9325 -vn -0.3305 0.2592 0.9075 -vn -0.2215 0.4985 0.8381 -vn -0.1111 0.6999 0.7056 -vn -0.0444 0.8418 0.5379 -vn -0.0149 0.9331 0.3592 -vn -0.0072 0.9844 0.1756 -vn -0.0112 0.9999 -0.0101 -vn -0.0212 0.9805 -0.1952 -vn -0.0332 0.9258 -0.3766 -vn -0.0449 0.8332 -0.5511 -vn -0.0545 0.6973 -0.7147 -vn -0.0608 0.5109 -0.8575 -vn -0.0633 0.2724 -0.9601 -vn -0.0627 -0.0008 -0.9980 -vn -0.0596 -0.2739 -0.9599 -vn -0.0539 -0.5121 -0.8572 -vn -0.0452 -0.6981 -0.7146 -vn -0.0339 -0.8336 -0.5513 -vn -0.0209 -0.9259 -0.3771 -vn -0.0075 -0.9806 -0.1960 -vn 0.0044 -0.9999 -0.0110 -vn 0.0120 -0.9846 0.1746 -vn 0.0106 -0.9336 0.3582 -vn -0.0072 -0.8438 0.5367 -vn -0.0550 -0.7065 0.7055 -vn -0.1515 -0.5094 0.8471 -vn -0.1175 -0.2887 0.9502 -vn -0.1246 -0.0025 0.9922 -vn -0.1218 0.2842 0.9510 -vn -0.1103 0.5299 0.8408 -vn -0.0936 0.7167 0.6911 -vn -0.0740 0.8487 0.5236 -vn -0.0528 0.9358 0.3487 -vn -0.0302 0.9850 0.1696 -vn -0.0065 0.9999 -0.0106 -vn 0.0181 0.9816 -0.1902 -vn 0.0432 0.9292 -0.3670 -vn 0.0683 0.8397 -0.5387 -vn 0.0930 0.7063 -0.7018 -vn 0.1156 0.5204 -0.8461 -vn 0.1330 0.2795 -0.9509 -vn 0.1411 0.0016 -0.9900 -vn 0.1378 -0.2766 -0.9511 -vn 0.1245 -0.5180 -0.8463 -vn 0.1050 -0.7045 -0.7019 -vn 0.0824 -0.8384 -0.5387 -vn 0.0585 -0.9284 -0.3669 -vn 0.0341 -0.9812 -0.1901 -vn 0.0095 -0.9999 -0.0106 -vn -0.0147 -0.9854 0.1693 -vn -0.0383 -0.9367 0.3480 -vn -0.0611 -0.8504 0.5226 -vn -0.0828 -0.7192 0.6898 -vn -0.1024 -0.5335 0.8396 -vn -0.9445 -0.0133 0.3283 -vn -0.9445 -0.0133 0.3284 -vn -0.9445 -0.0132 0.3284 -vn -0.9445 -0.0131 0.3283 -vn -0.9445 -0.0129 0.3283 -vn -0.9999 -0.0142 0.0071 -vn -0.9999 -0.0139 0.0071 -vn -0.9999 -0.0141 0.0069 -vn -0.9999 -0.0139 0.0073 -vn -0.9999 -0.0140 0.0071 -vn -0.9999 -0.0140 0.0072 -vn -0.9999 -0.0140 0.0070 -vn -0.9999 -0.0141 0.0071 -vn 0.1053 -0.2792 -0.9544 -vn 0.1074 0.0021 -0.9942 -vn 0.4105 -0.0013 -0.9119 -vn 0.4025 -0.2338 -0.8851 -vn 0.1003 0.2830 -0.9539 -vn 0.3702 0.2389 -0.8977 -vn 0.0861 0.5253 -0.8465 -vn 0.2824 0.4743 -0.8339 -vn 0.0681 0.7111 -0.6998 -vn 0.1685 0.6803 -0.7133 -vn 0.0488 0.8435 -0.5349 -vn 0.0720 0.8334 -0.5479 -vn 0.0295 0.9316 -0.3622 -vn 0.0153 0.9313 -0.3639 -vn 0.0107 0.9827 -0.1851 -vn -0.0071 0.9843 -0.1766 -vn -0.0073 1.0000 -0.0059 -vn -0.0067 0.9999 0.0083 -vn -0.0245 0.9845 0.1736 -vn 0.0075 0.9819 0.1895 -vn -0.0406 0.9353 0.3516 -vn 0.0293 0.9300 0.3663 -vn -0.0555 0.8488 0.5258 -vn 0.0546 0.8414 0.5377 -vn -0.0692 0.7176 0.6930 -vn 0.0808 0.7088 0.7008 -vn -0.0809 0.5315 0.8432 -vn 0.1050 0.5232 0.8457 -vn -0.0886 0.2861 0.9541 -vn 0.1231 0.2817 0.9516 -vn -0.0901 -0.0007 0.9959 -vn 0.1308 0.0022 0.9914 -vn -0.0843 -0.2875 0.9541 -vn 0.1257 -0.2778 0.9524 -vn -0.0729 -0.5328 0.8431 -vn 0.1097 -0.5203 0.8469 -vn -0.0584 -0.7186 0.6929 -vn 0.0871 -0.7069 0.7020 -vn -0.0426 -0.8496 0.5257 -vn 0.0620 -0.8403 0.5385 -vn -0.0261 -0.9358 0.3515 -vn 0.0381 -0.9296 0.3666 -vn -0.0090 -0.9848 0.1735 -vn 0.0188 -0.9818 0.1888 -vn 0.0087 -0.9999 -0.0061 -vn 0.0094 -0.9999 0.0058 -vn 0.0268 -0.9823 -0.1855 -vn 0.0181 -0.9832 -0.1819 -vn 0.0451 -0.9308 -0.3628 -vn 0.0565 -0.9263 -0.3726 -vn 0.0632 -0.8420 -0.5357 -vn 0.1352 -0.8195 -0.5569 -vn 0.0804 -0.7089 -0.7007 -vn 0.2456 -0.6569 -0.7129 -vn 0.0953 -0.5223 -0.8474 -vn 0.3459 -0.4546 -0.8208 -vn -0.3085 -0.0257 -0.9509 -vn -0.3080 -0.2736 -0.9112 -vn -0.2750 0.2186 -0.9363 -vn -0.2278 0.4247 -0.8762 -vn -0.1971 0.6073 -0.7696 -vn -0.1879 0.7867 -0.5881 -vn -0.1650 0.9248 -0.3427 -vn -0.0945 0.9882 -0.1202 -vn 0.0124 0.9989 0.0456 -vn 0.1380 0.9751 0.1737 -vn 0.2721 0.9205 0.2804 -vn 0.4094 0.8323 0.3737 -vn 0.5457 0.7027 0.4565 -vn 0.6712 0.5219 0.5264 -vn 0.7662 0.2859 0.5755 -vn 0.8050 0.0114 0.5932 -vn 0.7746 -0.2650 0.5743 -vn 0.6859 -0.5054 0.5235 -vn 0.5643 -0.6913 0.4513 -vn 0.4301 -0.8254 0.3657 -vn 0.2935 -0.9171 0.2698 -vn 0.1588 -0.9739 0.1622 -vn 0.0297 -0.9988 0.0384 -vn -0.0875 -0.9903 -0.1082 -vn -0.1831 -0.9404 -0.2865 -vn -0.2454 -0.8373 -0.4886 -vn -0.2748 -0.6815 -0.6783 -vn -0.2912 -0.4921 -0.8203 -vn -0.9999 -0.0140 -0.0055 -vn -0.9529 -0.3031 -0.0056 -vn -0.9608 0.2773 -0.0043 -vn -0.8499 0.5269 -0.0023 -vn -0.6987 0.7154 -0.0004 -vn -0.5310 0.8474 0.0010 -vn -0.3574 0.9339 0.0017 -vn -0.1812 0.9835 0.0015 -vn -0.0042 1.0000 0.0004 -vn 0.1723 0.9850 -0.0016 -vn 0.3475 0.9377 -0.0042 -vn 0.5197 0.8543 -0.0075 -vn 0.6868 0.7268 -0.0111 -vn 0.8389 0.5442 -0.0147 -vn 0.9535 0.3008 -0.0175 -vn 0.9997 0.0139 -0.0183 -vn 0.9613 -0.2750 -0.0167 -vn 0.8520 -0.5233 -0.0133 -vn 0.7026 -0.7115 -0.0094 -vn 0.5364 -0.8440 -0.0058 -vn 0.3640 -0.9314 -0.0029 -vn 0.1886 -0.9821 -0.0008 -vn 0.0118 -0.9999 0.0003 -vn -0.1652 -0.9863 0.0005 -vn -0.3413 -0.9400 -0.0001 -vn -0.5148 -0.8573 -0.0014 -vn -0.6832 -0.7302 -0.0030 -vn -0.8368 -0.5475 -0.0046 -vn -0.3979 0.0319 0.9169 -vn -0.3782 -0.3074 0.8732 -vn -0.4430 0.3533 0.8239 -vn -0.4661 0.5861 0.6627 -vn -0.4278 0.7534 0.4994 -vn -0.3426 0.8711 0.3518 -vn -0.2328 0.9477 0.2181 -vn -0.1103 0.9895 0.0934 -vn 0.0178 0.9995 -0.0253 -vn 0.1483 0.9789 -0.1405 -vn 0.2787 0.9266 -0.2524 -vn 0.4075 0.8388 -0.3610 -vn 0.5321 0.7080 -0.4643 -vn 0.6446 0.5249 -0.5559 -vn 0.7282 0.2864 -0.6226 -vn 0.7615 0.0104 -0.6480 -vn 0.7340 -0.2671 -0.6244 -vn 0.6546 -0.5089 -0.5590 -vn 0.5442 -0.6962 -0.4682 -vn 0.4204 -0.8306 -0.3651 -vn 0.2919 -0.9214 -0.2565 -vn 0.1622 -0.9762 -0.1439 -vn 0.0334 -0.9991 -0.0270 -vn -0.0909 -0.9913 0.0956 -vn -0.2062 -0.9516 0.2280 -vn -0.3031 -0.8758 0.3757 -vn -0.3671 -0.7535 0.5454 -vn -0.3845 -0.5688 0.7270 -vn 0.3741 0.0191 0.9272 -vn 0.2999 -0.2484 0.9211 -vn 0.3385 0.2682 0.9019 -vn 0.2247 0.5042 0.8338 -vn 0.1096 0.7024 0.7033 -vn 0.0385 0.8426 0.5371 -vn 0.0051 0.9333 0.3590 -vn -0.0060 0.9845 0.1755 -vn -0.0049 0.9999 -0.0101 -vn 0.0027 0.9807 -0.1953 -vn 0.0129 0.9262 -0.3768 -vn 0.0234 0.8339 -0.5514 -vn 0.0328 0.6983 -0.7150 -vn 0.0400 0.5121 -0.8580 -vn 0.0450 0.2738 -0.9607 -vn 0.0485 0.0006 -0.9988 -vn 0.0506 -0.2725 -0.9608 -vn 0.0503 -0.5108 -0.8582 -vn 0.0466 -0.6970 -0.7155 -vn 0.0397 -0.8329 -0.5520 -vn 0.0306 -0.9255 -0.3776 -vn 0.0205 -0.9803 -0.1962 -vn 0.0114 -0.9999 -0.0111 -vn 0.0062 -0.9846 0.1746 -vn 0.0094 -0.9336 0.3582 -vn 0.0283 -0.8434 0.5365 -vn 0.0765 -0.7051 0.7050 -vn 0.1721 -0.5055 0.8455 -vn 0.1387 0.0023 0.9903 -vn 0.1357 -0.2843 0.9491 -vn 0.1306 0.2885 0.9485 -vn 0.1136 0.5334 0.8382 -vn 0.0918 0.7191 0.6888 -vn 0.0678 0.8503 0.5219 -vn 0.0427 0.9367 0.3476 -vn 0.0168 0.9855 0.1691 -vn -0.0097 0.9999 -0.0106 -vn -0.0365 0.9812 -0.1898 -vn -0.0633 0.9284 -0.3663 -vn -0.0894 0.8384 -0.5377 -vn -0.1143 0.7044 -0.7005 -vn -0.1360 0.5180 -0.8445 -vn -0.1510 0.2767 -0.9490 -vn -0.1552 -0.0014 -0.9879 -vn -0.1468 -0.2794 -0.9489 -vn -0.1282 -0.5204 -0.8443 -vn -0.1036 -0.7064 -0.7002 -vn -0.0766 -0.8398 -0.5375 -vn -0.0489 -0.9293 -0.3662 -vn -0.0211 -0.9816 -0.1897 -vn 0.0063 -0.9999 -0.0106 -vn 0.0329 -0.9850 0.1692 -vn 0.0583 -0.9358 0.3478 -vn 0.0822 -0.8488 0.5223 -vn 0.1042 -0.7168 0.6895 -vn 0.1230 -0.5300 0.8390 -# 739 vertex normals - -vt 0.2206 0.3265 0.0000 -vt 0.2206 0.3609 0.0000 -vt 0.1770 0.3609 0.0000 -vt 0.1770 0.3265 0.0000 -vt 0.2206 0.3911 0.0000 -vt 0.1770 0.3911 0.0000 -vt 0.4331 0.3888 0.0000 -vt 0.4331 0.4162 0.0000 -vt 0.3884 0.4162 0.0000 -vt 0.3884 0.3888 0.0000 -vt 0.4331 0.4497 0.0000 -vt 0.3884 0.4497 0.0000 -vt 0.4331 0.4855 0.0000 -vt 0.3884 0.4855 0.0000 -vt 0.4331 0.5191 0.0000 -vt 0.3884 0.5191 0.0000 -vt 0.4331 0.5464 0.0000 -vt 0.3884 0.5464 0.0000 -vt 0.4304 0.1161 0.0000 -vt 0.4304 0.1463 0.0000 -vt 0.3868 0.1463 0.0000 -vt 0.3868 0.1161 0.0000 -vt 0.4304 0.1806 0.0000 -vt 0.3868 0.1806 0.0000 -vt 0.4304 0.2150 0.0000 -vt 0.3868 0.2150 0.0000 -vt 0.4304 0.2452 0.0000 -vt 0.3868 0.2452 0.0000 -vt 0.2308 0.5880 0.0000 -vt 0.2308 0.6154 0.0000 -vt 0.1861 0.6154 0.0000 -vt 0.1861 0.5880 0.0000 -vt 0.2308 0.6489 0.0000 -vt 0.1861 0.6489 0.0000 -vt 0.2308 0.6847 0.0000 -vt 0.1861 0.6847 0.0000 -vt 0.2308 0.7183 0.0000 -vt 0.1861 0.7183 0.0000 -vt 0.2308 0.7456 0.0000 -vt 0.1861 0.7456 0.0000 -vt 0.2206 0.2620 0.0000 -vt 0.2206 0.2922 0.0000 -vt 0.1770 0.2922 0.0000 -vt 0.1770 0.2620 0.0000 -vt 0.1334 0.3609 0.0000 -vt 0.1334 0.3265 0.0000 -vt 0.1334 0.3911 0.0000 -vt 0.3437 0.4162 0.0000 -vt 0.3437 0.3888 0.0000 -vt 0.3437 0.4497 0.0000 -vt 0.3437 0.4855 0.0000 -vt 0.3437 0.5191 0.0000 -vt 0.3437 0.5464 0.0000 -vt 0.3432 0.1463 0.0000 -vt 0.3432 0.1161 0.0000 -vt 0.3432 0.1806 0.0000 -vt 0.3432 0.2150 0.0000 -vt 0.3432 0.2452 0.0000 -vt 0.1415 0.6154 0.0000 -vt 0.1415 0.5880 0.0000 -vt 0.1415 0.6489 0.0000 -vt 0.1415 0.6847 0.0000 -vt 0.1415 0.7183 0.0000 -vt 0.1415 0.7456 0.0000 -vt 0.1334 0.2922 0.0000 -vt 0.1334 0.2620 0.0000 -vt 0.0898 0.3609 0.0000 -vt 0.0898 0.3265 0.0000 -vt 0.0898 0.3911 0.0000 -vt 0.2990 0.4162 0.0000 -vt 0.2990 0.3888 0.0000 -vt 0.2990 0.4497 0.0000 -vt 0.2990 0.4855 0.0000 -vt 0.2990 0.5191 0.0000 -vt 0.2990 0.5464 0.0000 -vt 0.2996 0.1463 0.0000 -vt 0.2996 0.1161 0.0000 -vt 0.2996 0.1806 0.0000 -vt 0.2996 0.2150 0.0000 -vt 0.2996 0.2452 0.0000 -vt 0.0968 0.6154 0.0000 -vt 0.0968 0.5880 0.0000 -vt 0.0968 0.6489 0.0000 -vt 0.0968 0.6847 0.0000 -vt 0.0968 0.7183 0.0000 -vt 0.0968 0.7456 0.0000 -vt 0.0898 0.2922 0.0000 -vt 0.0898 0.2620 0.0000 -vt 0.0461 0.3609 0.0000 -vt 0.0461 0.3265 0.0000 -vt 0.0461 0.3911 0.0000 -vt 0.2543 0.4162 0.0000 -vt 0.2543 0.3888 0.0000 -vt 0.2543 0.4497 0.0000 -vt 0.2543 0.4855 0.0000 -vt 0.2543 0.5191 0.0000 -vt 0.2543 0.5464 0.0000 -vt 0.2559 0.1463 0.0000 -vt 0.2559 0.1161 0.0000 -vt 0.2559 0.1806 0.0000 -vt 0.2559 0.2150 0.0000 -vt 0.2559 0.2452 0.0000 -vt 0.0521 0.6154 0.0000 -vt 0.0521 0.5880 0.0000 -vt 0.0521 0.6489 0.0000 -vt 0.0521 0.6847 0.0000 -vt 0.0521 0.7183 0.0000 -vt 0.0521 0.7456 0.0000 -vt 0.0461 0.2922 0.0000 -vt 0.0461 0.2620 0.0000 -vt 0.0025 0.3609 0.0000 -vt 0.0025 0.3265 0.0000 -vt 0.0025 0.3911 0.0000 -vt 0.2097 0.4162 0.0000 -vt 0.2097 0.3888 0.0000 -vt 0.2097 0.4497 0.0000 -vt 0.2097 0.4855 0.0000 -vt 0.2097 0.5191 0.0000 -vt 0.2097 0.5464 0.0000 -vt 0.2123 0.1463 0.0000 -vt 0.2123 0.1161 0.0000 -vt 0.2123 0.1806 0.0000 -vt 0.2123 0.2150 0.0000 -vt 0.2123 0.2452 0.0000 -vt 0.0074 0.6154 0.0000 -vt 0.0074 0.5880 0.0000 -vt 0.0074 0.6489 0.0000 -vt 0.0074 0.6847 0.0000 -vt 0.0074 0.7183 0.0000 -vt 0.0074 0.7456 0.0000 -vt 0.0025 0.2922 0.0000 -vt 0.0025 0.2620 0.0000 -vt 0.6211 0.4788 0.0000 -vt 0.6043 0.5078 0.0000 -vt 0.6007 0.5048 0.0000 -vt 0.6166 0.4771 0.0000 -vt 0.6269 0.4457 0.0000 -vt 0.6221 0.4457 0.0000 -vt 0.6211 0.4127 0.0000 -vt 0.6166 0.4143 0.0000 -vt 0.6043 0.3836 0.0000 -vt 0.6007 0.3866 0.0000 -vt 0.5786 0.3620 0.0000 -vt 0.5762 0.3661 0.0000 -vt 0.5470 0.3506 0.0000 -vt 0.5462 0.3552 0.0000 -vt 0.5135 0.3506 0.0000 -vt 0.5143 0.3553 0.0000 -vt 0.4820 0.3620 0.0000 -vt 0.4844 0.3661 0.0000 -vt 0.4563 0.3836 0.0000 -vt 0.4599 0.3867 0.0000 -vt 0.4395 0.4126 0.0000 -vt 0.4440 0.4143 0.0000 -vt 0.4337 0.4457 0.0000 -vt 0.4384 0.4457 0.0000 -vt 0.4395 0.4787 0.0000 -vt 0.4440 0.4771 0.0000 -vt 0.4562 0.5078 0.0000 -vt 0.4599 0.5048 0.0000 -vt 0.4820 0.5294 0.0000 -vt 0.4843 0.5253 0.0000 -vt 0.5135 0.5408 0.0000 -vt 0.5143 0.5362 0.0000 -vt 0.5471 0.5408 0.0000 -vt 0.5462 0.5361 0.0000 -vt 0.5786 0.5294 0.0000 -vt 0.5762 0.5253 0.0000 -vt 0.5550 0.4664 0.0000 -vt 0.5605 0.4567 0.0000 -vt 0.5625 0.4457 0.0000 -vt 0.5605 0.4347 0.0000 -vt 0.5550 0.4250 0.0000 -vt 0.5464 0.4178 0.0000 -vt 0.5359 0.4140 0.0000 -vt 0.5247 0.4140 0.0000 -vt 0.5142 0.4178 0.0000 -vt 0.5056 0.4250 0.0000 -vt 0.5001 0.4347 0.0000 -vt 0.4981 0.4457 0.0000 -vt 0.5001 0.4567 0.0000 -vt 0.5056 0.4664 0.0000 -vt 0.5142 0.4736 0.0000 -vt 0.5247 0.4774 0.0000 -vt 0.5359 0.4774 0.0000 -vt 0.5464 0.4736 0.0000 -vt 0.5303 0.4457 0.0000 -vt 0.4021 0.7070 0.0000 -vt 0.3764 0.7285 0.0000 -vt 0.3739 0.7244 0.0000 -vt 0.3984 0.7039 0.0000 -vt 0.3448 0.7400 0.0000 -vt 0.3440 0.7353 0.0000 -vt 0.3113 0.7400 0.0000 -vt 0.3121 0.7353 0.0000 -vt 0.2797 0.7286 0.0000 -vt 0.2821 0.7244 0.0000 -vt 0.2540 0.7070 0.0000 -vt 0.2577 0.7039 0.0000 -vt 0.2372 0.6779 0.0000 -vt 0.2417 0.6763 0.0000 -vt 0.2314 0.6449 0.0000 -vt 0.2362 0.6449 0.0000 -vt 0.2372 0.6118 0.0000 -vt 0.2417 0.6135 0.0000 -vt 0.2540 0.5828 0.0000 -vt 0.2577 0.5858 0.0000 -vt 0.2797 0.5612 0.0000 -vt 0.2821 0.5653 0.0000 -vt 0.3113 0.5498 0.0000 -vt 0.3121 0.5544 0.0000 -vt 0.3448 0.5497 0.0000 -vt 0.3440 0.5544 0.0000 -vt 0.3763 0.5612 0.0000 -vt 0.3740 0.5653 0.0000 -vt 0.4021 0.5828 0.0000 -vt 0.3984 0.5858 0.0000 -vt 0.4188 0.6118 0.0000 -vt 0.4144 0.6135 0.0000 -vt 0.4246 0.6449 0.0000 -vt 0.4199 0.6449 0.0000 -vt 0.4188 0.6779 0.0000 -vt 0.4144 0.6763 0.0000 -vt 0.0025 0.0614 0.0000 -vt 0.0025 0.0287 0.0000 -vt 0.2129 0.0288 0.0000 -vt 0.2129 0.0614 0.0000 -vt 0.0025 0.0000 0.0000 -vt 0.2129 0.0001 0.0000 -vt 0.0000 0.5463 0.0000 -vt 0.0000 0.5203 0.0000 -vt 0.2154 0.5202 0.0000 -vt 0.2154 0.5462 0.0000 -vt 0.0000 0.4884 0.0000 -vt 0.2154 0.4884 0.0000 -vt 0.0000 0.4544 0.0000 -vt 0.2154 0.4544 0.0000 -vt 0.0000 0.4225 0.0000 -vt 0.2154 0.4226 0.0000 -vt 0.0000 0.3965 0.0000 -vt 0.2154 0.3966 0.0000 -vt 0.0025 0.2452 0.0000 -vt 0.0025 0.2165 0.0000 -vt 0.2129 0.2164 0.0000 -vt 0.2129 0.2451 0.0000 -vt 0.0025 0.1838 0.0000 -vt 0.2129 0.1838 0.0000 -vt 0.0025 0.1511 0.0000 -vt 0.2129 0.1512 0.0000 -vt 0.0025 0.1224 0.0000 -vt 0.2129 0.1225 0.0000 -vt 0.2175 0.3929 0.0000 -vt 0.2175 0.3669 0.0000 -vt 0.4329 0.3668 0.0000 -vt 0.4329 0.3928 0.0000 -vt 0.2175 0.3349 0.0000 -vt 0.4329 0.3349 0.0000 -vt 0.2175 0.3010 0.0000 -vt 0.4329 0.3010 0.0000 -vt 0.2175 0.2691 0.0000 -vt 0.4329 0.2691 0.0000 -vt 0.2175 0.2431 0.0000 -vt 0.4329 0.2431 0.0000 -vt 0.0025 0.1227 0.0000 -vt 0.0025 0.0940 0.0000 -vt 0.2129 0.0940 0.0000 -vt 0.2129 0.1227 0.0000 -vt 0.6215 0.2847 0.0000 -vt 0.6056 0.3123 0.0000 -vt 0.5353 0.2534 0.0000 -vt 0.5812 0.3328 0.0000 -vt 0.5513 0.3437 0.0000 -vt 0.5194 0.3437 0.0000 -vt 0.4895 0.3328 0.0000 -vt 0.4651 0.3123 0.0000 -vt 0.4491 0.2847 0.0000 -vt 0.4436 0.2534 0.0000 -vt 0.4491 0.2220 0.0000 -vt 0.4651 0.1944 0.0000 -vt 0.4895 0.1739 0.0000 -vt 0.5194 0.1631 0.0000 -vt 0.5513 0.1630 0.0000 -vt 0.5812 0.1739 0.0000 -vt 0.6056 0.1944 0.0000 -vt 0.6216 0.2220 0.0000 -vt 0.6271 0.2534 0.0000 -vt 0.9385 0.2430 0.0000 -vt 0.9393 0.2430 0.0000 -vt 0.9416 0.2450 0.0000 -vt 0.9424 0.2451 0.0000 -vt 0.9419 0.2454 0.0000 -vt 0.9427 0.2454 0.0000 -vt 0.9440 0.2457 0.0000 -vt 0.9448 0.2460 0.0000 -vt 0.9538 0.3715 0.0000 -vt 0.9545 0.3715 0.0000 -vt 0.9445 0.2433 0.0000 -vt 0.9447 0.2440 0.0000 -vt 0.9384 0.2456 0.0000 -vt 0.9392 0.2456 0.0000 -vt 0.9448 0.2455 0.0000 -vt 0.9440 0.2456 0.0000 -vt 0.9388 0.2440 0.0000 -vt 0.9395 0.2438 0.0000 -vt 0.9526 0.3655 0.0000 -vt 0.9526 0.3662 0.0000 -vt 0.9440 0.2447 0.0000 -vt 0.9442 0.2439 0.0000 -vt 0.9392 0.2455 0.0000 -vt 0.9384 0.2455 0.0000 -vt 0.9384 0.2425 0.0000 -vt 0.9385 0.2417 0.0000 -vt 0.9448 0.2457 0.0000 -vt 0.9399 0.2436 0.0000 -vt 0.9400 0.2428 0.0000 -vt 0.9385 0.2433 0.0000 -vt 0.9404 0.2453 0.0000 -vt 0.9411 0.2456 0.0000 -vt 0.9411 0.2458 0.0000 -vt 0.9418 0.2457 0.0000 -vt 0.9392 0.2447 0.0000 -vt 0.9388 0.2436 0.0000 -vt 0.9396 0.2436 0.0000 -vt 0.9397 0.2452 0.0000 -vt 0.9539 0.3662 0.0000 -vt 0.9546 0.3662 0.0000 -vt 0.9403 0.2456 0.0000 -vt 0.9534 0.3701 0.0000 -vt 0.9534 0.3709 0.0000 -vt 0.9410 0.2459 0.0000 -vt 0.9384 0.2457 0.0000 -vt 0.9392 0.2457 0.0000 -vt 0.9418 0.2460 0.0000 -vt 0.9440 0.2453 0.0000 -vt 0.9448 0.2454 0.0000 -vt 0.9426 0.2459 0.0000 -vt 0.9385 0.2422 0.0000 -vt 0.9393 0.2425 0.0000 -vt 0.9433 0.2456 0.0000 -vt 0.9449 0.2426 0.0000 -vt 0.9450 0.2433 0.0000 -vt 0.9440 0.2452 0.0000 -vt 0.9442 0.2432 0.0000 -vt 0.9445 0.2447 0.0000 -vt 0.9571 0.3713 0.0000 -vt 0.9571 0.3720 0.0000 -vt 0.9449 0.2440 0.0000 -vt 0.9393 0.2428 0.0000 -vt 0.9385 0.2428 0.0000 -vt 0.9452 0.2433 0.0000 -vt 0.9408 0.2450 0.0000 -vt 0.9400 0.2451 0.0000 -vt 0.9453 0.2425 0.0000 -vt 0.9419 0.2456 0.0000 -vt 0.9416 0.2451 0.0000 -vt 0.9385 0.2431 0.0000 -vt 0.9393 0.2433 0.0000 -vt 0.9533 0.3691 0.0000 -vt 0.9526 0.3691 0.0000 -vt 0.9384 0.2460 0.0000 -vt 0.9391 0.2458 0.0000 -vt 0.9427 0.2456 0.0000 -vt 0.9400 0.2423 0.0000 -vt 0.9570 0.3696 0.0000 -vt 0.9570 0.3703 0.0000 -vt 0.9400 0.2444 0.0000 -vt 0.9398 0.2451 0.0000 -vt 0.9400 0.2435 0.0000 -vt 0.9400 0.2442 0.0000 -vt 0.9424 0.2450 0.0000 -vt 0.9432 0.2451 0.0000 -vt 0.9440 0.2431 0.0000 -vt 0.9440 0.2439 0.0000 -vt 0.0185 0.7484 0.0000 -vt 0.0185 0.7492 0.0000 -vt 0.0183 0.7499 0.0000 -vt 0.0162 0.7458 0.0000 -vt 0.0169 0.7461 0.0000 -vt 0.0175 0.7465 0.0000 -vt 0.0154 0.7456 0.0000 -vt 0.0146 0.7456 0.0000 -vt 0.0139 0.7458 0.0000 -vt 0.0132 0.7461 0.0000 -vt 0.0127 0.7465 0.0000 -vt 0.0122 0.7471 0.0000 -vt 0.0119 0.7477 0.0000 -vt 0.0117 0.7484 0.0000 -vt 0.0117 0.7492 0.0000 -vt 0.0119 0.7499 0.0000 -vt 0.0122 0.7505 0.0000 -vt 0.0127 0.7511 0.0000 -vt 0.0133 0.7515 0.0000 -vt 0.0140 0.7518 0.0000 -vt 0.0148 0.7520 0.0000 -vt 0.0155 0.7520 0.0000 -vt 0.0163 0.7518 0.0000 -vt 0.0169 0.7515 0.0000 -vt 0.0179 0.7471 0.0000 -vt 0.0175 0.7511 0.0000 -vt 0.0183 0.7477 0.0000 -vt 0.0180 0.7505 0.0000 -vt 0.6119 0.3155 0.0000 -vt 0.6126 0.3153 0.0000 -vt 0.6133 0.3153 0.0000 -vt 0.6141 0.3155 0.0000 -vt 0.6147 0.3158 0.0000 -vt 0.6153 0.3163 0.0000 -vt 0.6158 0.3169 0.0000 -vt 0.6161 0.3176 0.0000 -vt 0.6162 0.3183 0.0000 -vt 0.6162 0.3190 0.0000 -vt 0.6160 0.3197 0.0000 -vt 0.6157 0.3204 0.0000 -vt 0.6152 0.3210 0.0000 -vt 0.6146 0.3214 0.0000 -vt 0.6140 0.3217 0.0000 -vt 0.6133 0.3219 0.0000 -vt 0.6125 0.3219 0.0000 -vt 0.6118 0.3217 0.0000 -vt 0.6111 0.3214 0.0000 -vt 0.6105 0.3209 0.0000 -vt 0.6101 0.3203 0.0000 -vt 0.6112 0.3158 0.0000 -vt 0.6098 0.3197 0.0000 -vt 0.6106 0.3162 0.0000 -vt 0.6096 0.3190 0.0000 -vt 0.6096 0.3182 0.0000 -vt 0.6102 0.3168 0.0000 -vt 0.6098 0.3175 0.0000 -vt 0.1346 0.9481 0.0000 -vt 0.1401 0.9481 0.0000 -vt 0.1401 0.9489 0.0000 -vt 0.1346 0.9489 0.0000 -vt 0.1401 0.9497 0.0000 -vt 0.1346 0.9497 0.0000 -vt 0.1401 0.9505 0.0000 -vt 0.1346 0.9505 0.0000 -vt 0.1402 0.9511 0.0000 -vt 0.1346 0.9511 0.0000 -vt 0.1402 0.9517 0.0000 -vt 0.0138 0.9597 0.0000 -vt 0.0084 0.9593 0.0000 -vt 0.0084 0.9585 0.0000 -vt 0.0375 0.9655 0.0000 -vt 0.0381 0.9599 0.0000 -vt 0.0388 0.9599 0.0000 -vt 0.0381 0.9655 0.0000 -vt 0.0395 0.9598 0.0000 -vt 0.0389 0.9655 0.0000 -vt 0.0403 0.9597 0.0000 -vt 0.0397 0.9655 0.0000 -vt 0.0411 0.9597 0.0000 -vt 0.0405 0.9655 0.0000 -vt 0.0418 0.9596 0.0000 -vt 0.0412 0.9655 0.0000 -vt 0.0424 0.9595 0.0000 -vt 0.0418 0.9655 0.0000 -vt 0.1047 0.9403 0.0000 -vt 0.1104 0.9411 0.0000 -vt 0.1104 0.9418 0.0000 -vt 0.1046 0.9410 0.0000 -vt 0.0245 0.9607 0.0000 -vt 0.0305 0.9607 0.0000 -vt 0.0306 0.9613 0.0000 -vt 0.0245 0.9613 0.0000 -vt 0.0306 0.9621 0.0000 -vt 0.0245 0.9621 0.0000 -vt 0.0306 0.9629 0.0000 -vt 0.0245 0.9629 0.0000 -vt 0.0306 0.9637 0.0000 -vt 0.0245 0.9637 0.0000 -vt 0.0306 0.9644 0.0000 -vt 0.0245 0.9644 0.0000 -vt 0.0305 0.9650 0.0000 -vt 0.0245 0.9650 0.0000 -vt 0.0305 0.9656 0.0000 -vt 0.0974 0.9406 0.0000 -vt 0.0917 0.9410 0.0000 -vt 0.0917 0.9403 0.0000 -vt 0.0006 0.9520 0.0000 -vt 0.0000 0.9461 0.0000 -vt 0.0006 0.9462 0.0000 -vt 0.0013 0.9520 0.0000 -vt 0.0014 0.9462 0.0000 -vt 0.0020 0.9520 0.0000 -vt 0.0022 0.9463 0.0000 -vt 0.0028 0.9520 0.0000 -vt 0.0029 0.9464 0.0000 -vt 0.0036 0.9520 0.0000 -vt 0.0037 0.9465 0.0000 -vt 0.0043 0.9520 0.0000 -vt 0.0043 0.9465 0.0000 -vt 0.0049 0.9520 0.0000 -vt 0.1983 0.9501 0.0000 -vt 0.2036 0.9508 0.0000 -vt 0.2034 0.9515 0.0000 -vt 0.1981 0.9508 0.0000 -vt 0.1346 0.9467 0.0000 -vt 0.1402 0.9467 0.0000 -vt 0.1401 0.9474 0.0000 -vt 0.1346 0.9474 0.0000 -vt 0.0084 0.9598 0.0000 -vt 0.0100 0.9598 0.0000 -vt 0.0099 0.9606 0.0000 -vt 0.2014 0.9529 0.0000 -vt 0.2024 0.9519 0.0000 -vt 0.2029 0.9526 0.0000 -vt 0.2007 0.9523 0.0000 -vt 0.1414 0.9497 0.0000 -vt 0.1416 0.9505 0.0000 -vt 0.1420 0.9511 0.0000 -vt 0.1425 0.9517 0.0000 -vt 0.0159 0.9601 0.0000 -vt 0.0137 0.9590 0.0000 -vt 0.0165 0.9605 0.0000 -vt 0.0390 0.9572 0.0000 -vt 0.0393 0.9565 0.0000 -vt 0.0397 0.9558 0.0000 -vt 0.0400 0.9551 0.0000 -vt 0.0404 0.9545 0.0000 -vt 0.0407 0.9539 0.0000 -vt 0.1158 0.9403 0.0000 -vt 0.1163 0.9408 0.0000 -vt 0.0367 0.9607 0.0000 -vt 0.0370 0.9613 0.0000 -vt 0.0373 0.9621 0.0000 -vt 0.0374 0.9629 0.0000 -vt 0.0373 0.9637 0.0000 -vt 0.0370 0.9644 0.0000 -vt 0.0367 0.9650 0.0000 -vt 0.0362 0.9656 0.0000 -vt 0.1028 0.9418 0.0000 -vt 0.0975 0.9399 0.0000 -vt 0.0018 0.9405 0.0000 -vt 0.0021 0.9411 0.0000 -vt 0.0024 0.9417 0.0000 -vt 0.0028 0.9424 0.0000 -vt 0.0031 0.9431 0.0000 -vt 0.0035 0.9438 0.0000 -vt 0.2039 0.9501 0.0000 -vt 0.2065 0.9505 0.0000 -vt 0.2058 0.9508 0.0000 -vt 0.0038 0.9443 0.0000 -vt 0.0100 0.9600 0.0000 -vt 0.0122 0.9600 0.0000 -vt 0.0117 0.9606 0.0000 -vt 0.2052 0.9513 0.0000 -vt 0.1420 0.9467 0.0000 -vt 0.1416 0.9474 0.0000 -vt 0.1414 0.9481 0.0000 -vt 0.2046 0.9523 0.0000 -vt 0.2030 0.9529 0.0000 -vt 0.2032 0.9521 0.0000 -vt 0.1717 0.9570 0.0000 -vt 0.1551 0.9570 0.0000 -vt 0.1551 0.9561 0.0000 -vt 0.1717 0.9561 0.0000 -vt 0.1551 0.9553 0.0000 -vt 0.1717 0.9553 0.0000 -vt 0.1550 0.9546 0.0000 -vt 0.1718 0.9546 0.0000 -vt 0.1550 0.9540 0.0000 -vt 0.1720 0.9540 0.0000 -vt 0.1549 0.9534 0.0000 -vt 0.1723 0.9534 0.0000 -vt 0.0387 0.9577 0.0000 -vt 0.0216 0.9568 0.0000 -vt 0.0215 0.9561 0.0000 -vt 0.0214 0.9554 0.0000 -vt 0.0213 0.9546 0.0000 -vt 0.0212 0.9538 0.0000 -vt 0.0211 0.9531 0.0000 -vt 0.0210 0.9525 0.0000 -vt 0.2148 0.9591 0.0000 -vt 0.1949 0.9591 0.0000 -vt 0.1949 0.9586 0.0000 -vt 0.2150 0.9586 0.0000 -vt 0.1948 0.9580 0.0000 -vt 0.2152 0.9580 0.0000 -vt 0.1948 0.9572 0.0000 -vt 0.2153 0.9572 0.0000 -vt 0.1948 0.9564 0.0000 -vt 0.2154 0.9564 0.0000 -vt 0.1948 0.9556 0.0000 -vt 0.2153 0.9556 0.0000 -vt 0.1948 0.9549 0.0000 -vt 0.2152 0.9549 0.0000 -vt 0.1949 0.9542 0.0000 -vt 0.2150 0.9542 0.0000 -vt 0.1949 0.9537 0.0000 -vt 0.2148 0.9537 0.0000 -vt 0.0214 0.9391 0.0000 -vt 0.0213 0.9397 0.0000 -vt 0.0212 0.9404 0.0000 -vt 0.0211 0.9412 0.0000 -vt 0.0210 0.9420 0.0000 -vt 0.0209 0.9427 0.0000 -vt 0.0208 0.9434 0.0000 -vt 0.1723 0.9589 0.0000 -vt 0.1549 0.9589 0.0000 -vt 0.1550 0.9583 0.0000 -vt 0.1720 0.9583 0.0000 -vt 0.1550 0.9577 0.0000 -vt 0.1718 0.9577 0.0000 -vt 0.1381 0.9570 0.0000 -vt 0.1381 0.9561 0.0000 -vt 0.1381 0.9553 0.0000 -vt 0.1379 0.9546 0.0000 -vt 0.1377 0.9540 0.0000 -vt 0.1373 0.9534 0.0000 -vt 0.0043 0.9575 0.0000 -vt 0.0039 0.9570 0.0000 -vt 0.0034 0.9564 0.0000 -vt 0.0029 0.9558 0.0000 -vt 0.0024 0.9552 0.0000 -vt 0.0020 0.9546 0.0000 -vt 0.0016 0.9541 0.0000 -vt 0.1709 0.9532 0.0000 -vt 0.1921 0.9532 0.0000 -vt 0.1925 0.9538 0.0000 -vt 0.2095 0.8796 0.0000 -vt 0.2099 0.8985 0.0000 -vt 0.2092 0.8986 0.0000 -vt 0.1750 0.9586 0.0000 -vt 0.1747 0.9580 0.0000 -vt 0.1746 0.9572 0.0000 -vt 0.1745 0.9564 0.0000 -vt 0.1746 0.9556 0.0000 -vt 0.1747 0.9549 0.0000 -vt 0.1750 0.9542 0.0000 -vt 0.1753 0.9537 0.0000 -vt 0.0369 0.9514 0.0000 -vt 0.0184 0.9492 0.0000 -vt 0.0185 0.9485 0.0000 -vt 0.0409 0.9407 0.0000 -vt 0.0404 0.9412 0.0000 -vt 0.0400 0.9418 0.0000 -vt 0.0395 0.9424 0.0000 -vt 0.0390 0.9430 0.0000 -vt 0.0385 0.9436 0.0000 -vt 0.0381 0.9441 0.0000 -vt 0.1373 0.9589 0.0000 -vt 0.1377 0.9583 0.0000 -vt 0.1379 0.9577 0.0000 -vt 0.1484 0.9497 0.0000 -vt 0.1478 0.9497 0.0000 -vt 0.1478 0.9489 0.0000 -vt 0.1483 0.9489 0.0000 -vt 0.1478 0.9481 0.0000 -vt 0.1484 0.9481 0.0000 -vt 0.1477 0.9474 0.0000 -vt 0.1486 0.9474 0.0000 -vt 0.1477 0.9468 0.0000 -vt 0.1489 0.9468 0.0000 -vt 0.0253 0.9593 0.0000 -vt 0.0241 0.9593 0.0000 -vt 0.0241 0.9585 0.0000 -vt 0.2045 0.9523 0.0000 -vt 0.2064 0.9523 0.0000 -vt 0.2059 0.9529 0.0000 -vt 0.0042 0.9593 0.0000 -vt 0.0036 0.9594 0.0000 -vt 0.0029 0.9595 0.0000 -vt 0.0021 0.9597 0.0000 -vt 0.0013 0.9598 0.0000 -vt 0.0006 0.9600 0.0000 -vt 0.0000 0.9601 0.0000 -vt 0.0606 0.9463 0.0000 -vt 0.0546 0.9463 0.0000 -vt 0.0545 0.9458 0.0000 -vt 0.0610 0.9458 0.0000 -vt 0.0544 0.9452 0.0000 -vt 0.0614 0.9452 0.0000 -vt 0.0544 0.9444 0.0000 -vt 0.0616 0.9444 0.0000 -vt 0.0543 0.9436 0.0000 -vt 0.0616 0.9436 0.0000 -vt 0.0544 0.9428 0.0000 -vt 0.0616 0.9428 0.0000 -vt 0.0544 0.9421 0.0000 -vt 0.0614 0.9421 0.0000 -vt 0.0545 0.9414 0.0000 -vt 0.0610 0.9414 0.0000 -vt 0.0546 0.9409 0.0000 -vt 0.0606 0.9409 0.0000 -vt 0.0424 0.9467 0.0000 -vt 0.0418 0.9466 0.0000 -vt 0.0411 0.9464 0.0000 -vt 0.0403 0.9463 0.0000 -vt 0.0395 0.9461 0.0000 -vt 0.0388 0.9460 0.0000 -vt 0.0382 0.9459 0.0000 -vt 0.1493 0.9516 0.0000 -vt 0.1476 0.9516 0.0000 -vt 0.1477 0.9511 0.0000 -vt 0.1489 0.9511 0.0000 -vt 0.1477 0.9505 0.0000 -vt 0.1486 0.9505 0.0000 -vt 0.1425 0.9497 0.0000 -vt 0.1426 0.9489 0.0000 -vt 0.1425 0.9481 0.0000 -vt 0.1425 0.9474 0.0000 -vt 0.1423 0.9468 0.0000 -vt 0.0190 0.9592 0.0000 -vt 0.0189 0.9585 0.0000 -vt 0.0050 0.9646 0.0000 -vt 0.0044 0.9648 0.0000 -vt 0.0037 0.9651 0.0000 -vt 0.0029 0.9653 0.0000 -vt 0.0022 0.9656 0.0000 -vt 0.0015 0.9658 0.0000 -vt 0.0009 0.9660 0.0000 -vt 0.0371 0.9590 0.0000 -vt 0.0314 0.9592 0.0000 -vt 0.0313 0.9585 0.0000 -vt 0.0371 0.9583 0.0000 -vt 0.0484 0.9458 0.0000 -vt 0.0483 0.9452 0.0000 -vt 0.0482 0.9444 0.0000 -vt 0.0482 0.9436 0.0000 -vt 0.0482 0.9428 0.0000 -vt 0.0483 0.9421 0.0000 -vt 0.0484 0.9414 0.0000 -vt 0.0370 0.9606 0.0000 -vt 0.0313 0.9599 0.0000 -vt 0.0371 0.9598 0.0000 -vt 0.0415 0.9526 0.0000 -vt 0.0409 0.9524 0.0000 -vt 0.0402 0.9521 0.0000 -vt 0.0395 0.9519 0.0000 -vt 0.0387 0.9517 0.0000 -vt 0.0381 0.9514 0.0000 -vt 0.0374 0.9512 0.0000 -vt 0.0252 0.9606 0.0000 -vt 0.0201 0.9600 0.0000 -vt 0.0202 0.9593 0.0000 -vt 0.0253 0.9598 0.0000 -vt 0.1423 0.9511 0.0000 -vt 0.1425 0.9505 0.0000 -vt 0.7998 0.1034 0.0000 -vt 0.8056 0.1359 0.0000 -vt 0.7995 0.1381 0.0000 -vt 0.7934 0.1034 0.0000 -vt 0.8221 0.1645 0.0000 -vt 0.8172 0.1686 0.0000 -vt 0.8474 0.1857 0.0000 -vt 0.8442 0.1913 0.0000 -vt 0.8784 0.1970 0.0000 -vt 0.8773 0.2033 0.0000 -vt 0.9114 0.1970 0.0000 -vt 0.9125 0.2033 0.0000 -vt 0.9424 0.1857 0.0000 -vt 0.9456 0.1913 0.0000 -vt 0.9677 0.1645 0.0000 -vt 0.9726 0.1686 0.0000 -vt 0.9842 0.1359 0.0000 -vt 0.9903 0.1381 0.0000 -vt 0.9899 0.1034 0.0000 -vt 0.9964 0.1034 0.0000 -vt 0.9842 0.0709 0.0000 -vt 0.9903 0.0687 0.0000 -vt 0.9677 0.0423 0.0000 -vt 0.9726 0.0381 0.0000 -vt 0.9424 0.0210 0.0000 -vt 0.9456 0.0155 0.0000 -vt 0.9114 0.0098 0.0000 -vt 0.9125 0.0034 0.0000 -vt 0.8784 0.0098 0.0000 -vt 0.8773 0.0034 0.0000 -vt 0.8474 0.0210 0.0000 -vt 0.8442 0.0155 0.0000 -vt 0.8221 0.0423 0.0000 -vt 0.8172 0.0381 0.0000 -vt 0.8056 0.0709 0.0000 -vt 0.7995 0.0687 0.0000 -vt 0.9324 0.4155 0.0000 -vt 0.8964 0.4155 0.0000 -vt 0.8964 0.4148 0.0000 -vt 0.9324 0.4148 0.0000 -vt 0.8648 0.4155 0.0000 -vt 0.8648 0.4148 0.0000 -vt 0.7921 0.2088 0.0000 -vt 0.7635 0.2088 0.0000 -vt 0.7635 0.2081 0.0000 -vt 0.7921 0.2081 0.0000 -vt 0.7283 0.2088 0.0000 -vt 0.7283 0.2081 0.0000 -vt 0.6909 0.2088 0.0000 -vt 0.6909 0.2081 0.0000 -vt 0.6557 0.2088 0.0000 -vt 0.6557 0.2081 0.0000 -vt 0.6271 0.2088 0.0000 -vt 0.6271 0.2081 0.0000 -vt 0.7901 0.0042 0.0000 -vt 0.7585 0.0042 0.0000 -vt 0.7585 0.0035 0.0000 -vt 0.7901 0.0035 0.0000 -vt 0.7225 0.0042 0.0000 -vt 0.7225 0.0035 0.0000 -vt 0.6865 0.0042 0.0000 -vt 0.6865 0.0035 0.0000 -vt 0.6549 0.0042 0.0000 -vt 0.6549 0.0035 0.0000 -vt 0.7921 0.0022 0.0000 -vt 0.7635 0.0022 0.0000 -vt 0.7635 0.0014 0.0000 -vt 0.7921 0.0014 0.0000 -vt 0.7283 0.0022 0.0000 -vt 0.7283 0.0014 0.0000 -vt 0.6909 0.0022 0.0000 -vt 0.6909 0.0014 0.0000 -vt 0.6557 0.0022 0.0000 -vt 0.6557 0.0014 0.0000 -vt 0.6271 0.0022 0.0000 -vt 0.6271 0.0014 0.0000 -vt 1.0000 0.4155 0.0000 -vt 0.9684 0.4155 0.0000 -vt 0.9684 0.4148 0.0000 -vt 1.0000 0.4148 0.0000 -vt 0.8964 0.4141 0.0000 -vt 0.9324 0.4141 0.0000 -vt 0.8648 0.4141 0.0000 -vt 0.7635 0.2074 0.0000 -vt 0.7921 0.2074 0.0000 -vt 0.7283 0.2074 0.0000 -vt 0.6909 0.2074 0.0000 -vt 0.6557 0.2074 0.0000 -vt 0.6271 0.2074 0.0000 -vt 0.7585 0.0028 0.0000 -vt 0.7901 0.0028 0.0000 -vt 0.7225 0.0028 0.0000 -vt 0.6865 0.0028 0.0000 -vt 0.6549 0.0028 0.0000 -vt 0.7635 0.0007 0.0000 -vt 0.7921 0.0007 0.0000 -vt 0.7283 0.0007 0.0000 -vt 0.6909 0.0007 0.0000 -vt 0.6557 0.0007 0.0000 -vt 0.6271 0.0007 0.0000 -vt 0.9684 0.4141 0.0000 -vt 1.0000 0.4141 0.0000 -vt 0.8964 0.4134 0.0000 -vt 0.9324 0.4134 0.0000 -vt 0.8648 0.4134 0.0000 -vt 0.7635 0.2067 0.0000 -vt 0.7921 0.2067 0.0000 -vt 0.7283 0.2067 0.0000 -vt 0.6909 0.2067 0.0000 -vt 0.6557 0.2067 0.0000 -vt 0.6271 0.2067 0.0000 -vt 0.7585 0.0021 0.0000 -vt 0.7901 0.0021 0.0000 -vt 0.7225 0.0021 0.0000 -vt 0.6865 0.0021 0.0000 -vt 0.6549 0.0021 0.0000 -vt 0.7635 0.0000 0.0000 -vt 0.7921 0.0000 0.0000 -vt 0.7283 0.0000 0.0000 -vt 0.6909 0.0000 0.0000 -vt 0.6557 0.0000 0.0000 -vt 0.6271 0.0000 0.0000 -vt 0.9684 0.4134 0.0000 -vt 1.0000 0.4134 0.0000 -vt 0.7936 0.3100 0.0000 -vt 0.7997 0.2754 0.0000 -vt 0.8031 0.2766 0.0000 -vt 0.7972 0.3100 0.0000 -vt 0.8173 0.2449 0.0000 -vt 0.8201 0.2473 0.0000 -vt 0.8442 0.2223 0.0000 -vt 0.8461 0.2255 0.0000 -vt 0.8773 0.2102 0.0000 -vt 0.8779 0.2139 0.0000 -vt 0.9125 0.2102 0.0000 -vt 0.9119 0.2139 0.0000 -vt 0.9456 0.2223 0.0000 -vt 0.9437 0.2255 0.0000 -vt 0.9725 0.2449 0.0000 -vt 0.9697 0.2473 0.0000 -vt 0.9901 0.2754 0.0000 -vt 0.9867 0.2766 0.0000 -vt 0.9962 0.3100 0.0000 -vt 0.9926 0.3100 0.0000 -vt 0.9901 0.3447 0.0000 -vt 0.9867 0.3434 0.0000 -vt 0.9725 0.3752 0.0000 -vt 0.9697 0.3728 0.0000 -vt 0.9456 0.3978 0.0000 -vt 0.9437 0.3946 0.0000 -vt 0.9125 0.4098 0.0000 -vt 0.9119 0.4062 0.0000 -vt 0.8773 0.4098 0.0000 -vt 0.8779 0.4062 0.0000 -vt 0.8442 0.3978 0.0000 -vt 0.8461 0.3946 0.0000 -vt 0.8173 0.3752 0.0000 -vt 0.8201 0.3728 0.0000 -vt 0.7997 0.3447 0.0000 -vt 0.8031 0.3434 0.0000 -vt 0.2058 0.8099 0.0000 -vt 0.2116 0.8423 0.0000 -vt 0.2058 0.8748 0.0000 -vt 0.1894 0.9033 0.0000 -vt 0.1642 0.9244 0.0000 -vt 0.1332 0.9357 0.0000 -vt 0.1003 0.9357 0.0000 -vt 0.0694 0.9244 0.0000 -vt 0.0442 0.9033 0.0000 -vt 0.0277 0.8748 0.0000 -vt 0.0220 0.8423 0.0000 -vt 0.0277 0.8099 0.0000 -vt 0.0442 0.7814 0.0000 -vt 0.0694 0.7603 0.0000 -vt 0.1003 0.7490 0.0000 -vt 0.1332 0.7490 0.0000 -vt 0.1642 0.7603 0.0000 -vt 0.1894 0.7814 0.0000 -vt 0.4805 0.7284 0.0000 -vt 0.4546 0.7066 0.0000 -vt 0.4377 0.6773 0.0000 -vt 0.4318 0.6439 0.0000 -vt 0.4377 0.6106 0.0000 -vt 0.4546 0.5812 0.0000 -vt 0.4805 0.5595 0.0000 -vt 0.5124 0.5479 0.0000 -vt 0.5462 0.5479 0.0000 -vt 0.5781 0.5595 0.0000 -vt 0.6040 0.5812 0.0000 -vt 0.6210 0.6106 0.0000 -vt 0.6268 0.6439 0.0000 -vt 0.6210 0.6773 0.0000 -vt 0.6040 0.7066 0.0000 -vt 0.5781 0.7284 0.0000 -vt 0.5462 0.7400 0.0000 -vt 0.5124 0.7400 0.0000 -vt 0.9396 0.2459 0.0000 -vt 0.9402 0.2459 0.0000 -vt 0.9452 0.2452 0.0000 -vt 0.9446 0.2452 0.0000 -vt 0.9392 0.2441 0.0000 -vt 0.9449 0.2447 0.0000 -vt 0.9449 0.2441 0.0000 -vt 0.9527 0.3664 0.0000 -vt 0.9527 0.3668 0.0000 -vt 0.9572 0.3720 0.0000 -vt 0.9572 0.3715 0.0000 -vt 0.9385 0.2420 0.0000 -vt 0.9392 0.2420 0.0000 -vt 0.9529 0.3700 0.0000 -vt 0.9529 0.3705 0.0000 -vt 0.9393 0.2423 0.0000 -vt 0.9543 0.3718 0.0000 -vt 0.9549 0.3718 0.0000 -vt 0.9443 0.2432 0.0000 -vt 0.9443 0.2439 0.0000 -vt 0.9393 0.2422 0.0000 -vt 0.9398 0.2436 0.0000 -vt 0.9398 0.2444 0.0000 -vt 0.9388 0.2438 0.0000 -vt 0.9396 0.2438 0.0000 -vt 0.9411 0.2454 0.0000 -vt 0.9402 0.2442 0.0000 -vt 0.9402 0.2450 0.0000 -vt 0.9572 0.3661 0.0000 -vt 0.9572 0.3653 0.0000 -vt 0.9393 0.2421 0.0000 -vt 0.9400 0.2421 0.0000 -vt 0.9551 0.3658 0.0000 -vt 0.9544 0.3658 0.0000 -vt 0.9570 0.3689 0.0000 -vt 0.9527 0.3699 0.0000 -vt 0.9527 0.3692 0.0000 -vt 0.9530 0.3671 0.0000 -vt 0.9530 0.3676 0.0000 -vt 0.9527 0.3720 0.0000 -vt 0.9527 0.3715 0.0000 -vt 0.9534 0.3696 0.0000 -vt 0.9441 0.2432 0.0000 -vt 0.9441 0.2426 0.0000 -vt 0.9395 0.2441 0.0000 -vt 0.9395 0.2447 0.0000 -vt 0.9402 0.2457 0.0000 -vt 0.9396 0.2458 0.0000 -vt 0.9446 0.2450 0.0000 -vt 0.9452 0.2450 0.0000 -vt 0.9440 0.2458 0.0000 -vt 0.9433 0.2458 0.0000 -vt 0.9384 0.2452 0.0000 -vt 0.9390 0.2452 0.0000 -vt 0.9393 0.2447 0.0000 -vt 0.9393 0.2441 0.0000 -vt 0.9384 0.2441 0.0000 -vt 0.9384 0.2447 0.0000 -vt 0.9527 0.3662 0.0000 -vt 0.9527 0.3657 0.0000 -vt 0.9550 0.3715 0.0000 -vt 0.9427 0.2455 0.0000 -vt 0.9432 0.2455 0.0000 -vt 0.9418 0.2458 0.0000 -vt 0.9425 0.2458 0.0000 -vt 0.9536 0.3702 0.0000 -vt 0.9536 0.3709 0.0000 -vt 0.9442 0.2447 0.0000 -vt 0.9445 0.2426 0.0000 -vt 0.9407 0.2423 0.0000 -vt 0.9400 0.2424 0.0000 -vt 0.9408 0.2424 0.0000 -vt 0.9400 0.2450 0.0000 -vt 0.9398 0.2428 0.0000 -vt 0.9416 0.2424 0.0000 -vt 0.9574 0.3689 0.0000 -vt 0.9574 0.3696 0.0000 -vt 0.9525 0.3720 0.0000 -vt 0.9525 0.3713 0.0000 -vt 0.9553 0.3662 0.0000 -vt 0.9392 0.2419 0.0000 -vt 0.9385 0.2419 0.0000 -vt 0.9574 0.3705 0.0000 -vt 0.9574 0.3710 0.0000 -vt 0.9527 0.3683 0.0000 -vt 0.9527 0.3677 0.0000 -vt 0.9573 0.3656 0.0000 -vt 0.9573 0.3661 0.0000 -vt 0.9526 0.3690 0.0000 -vt 0.9526 0.3685 0.0000 -vt 0.9446 0.2449 0.0000 -vt 0.9451 0.2449 0.0000 -vt 0.9440 0.2426 0.0000 -vt 0.9384 0.2449 0.0000 -vt 0.9390 0.2449 0.0000 -vt 0.9390 0.2450 0.0000 -vt 0.9384 0.2450 0.0000 -vt 0.1816 0.9528 0.0000 -vt 0.1809 0.9528 0.0000 -vt 0.1802 0.9527 0.0000 -vt 0.1842 0.9512 0.0000 -vt 0.1839 0.9517 0.0000 -vt 0.1835 0.9521 0.0000 -vt 0.1844 0.9506 0.0000 -vt 0.1843 0.9499 0.0000 -vt 0.1842 0.9494 0.0000 -vt 0.1838 0.9488 0.0000 -vt 0.1834 0.9484 0.0000 -vt 0.1828 0.9480 0.0000 -vt 0.1822 0.9477 0.0000 -vt 0.1814 0.9476 0.0000 -vt 0.1807 0.9476 0.0000 -vt 0.1800 0.9477 0.0000 -vt 0.1794 0.9479 0.0000 -vt 0.1788 0.9483 0.0000 -vt 0.1784 0.9487 0.0000 -vt 0.1781 0.9493 0.0000 -vt 0.1779 0.9499 0.0000 -vt 0.1780 0.9505 0.0000 -vt 0.1781 0.9511 0.0000 -vt 0.1785 0.9516 0.0000 -vt 0.1830 0.9525 0.0000 -vt 0.1789 0.9520 0.0000 -vt 0.1823 0.9527 0.0000 -vt 0.1795 0.9524 0.0000 -vt 0.6108 0.1604 0.0000 -vt 0.6114 0.1600 0.0000 -vt 0.6119 0.1598 0.0000 -vt 0.6125 0.1598 0.0000 -vt 0.6131 0.1600 0.0000 -vt 0.6136 0.1603 0.0000 -vt 0.6140 0.1607 0.0000 -vt 0.6144 0.1613 0.0000 -vt 0.6146 0.1619 0.0000 -vt 0.6147 0.1626 0.0000 -vt 0.6147 0.1634 0.0000 -vt 0.6146 0.1641 0.0000 -vt 0.6143 0.1648 0.0000 -vt 0.6140 0.1654 0.0000 -vt 0.6135 0.1658 0.0000 -vt 0.6130 0.1662 0.0000 -vt 0.6124 0.1664 0.0000 -vt 0.6118 0.1664 0.0000 -vt 0.6113 0.1662 0.0000 -vt 0.6107 0.1659 0.0000 -vt 0.6103 0.1655 0.0000 -vt 0.6104 0.1608 0.0000 -vt 0.6100 0.1650 0.0000 -vt 0.6100 0.1614 0.0000 -vt 0.6097 0.1643 0.0000 -vt 0.6096 0.1636 0.0000 -vt 0.6098 0.1621 0.0000 -vt 0.6096 0.1628 0.0000 -vt 0.0181 0.9504 0.0000 -vt 0.0124 0.9504 0.0000 -vt 0.0124 0.9498 0.0000 -vt 0.0181 0.9498 0.0000 -vt 0.0124 0.9492 0.0000 -vt 0.0181 0.9491 0.0000 -vt 0.0124 0.9486 0.0000 -vt 0.0181 0.9485 0.0000 -vt 0.0124 0.9481 0.0000 -vt 0.0181 0.9480 0.0000 -vt 0.0913 0.9395 0.0000 -vt 0.0906 0.9451 0.0000 -vt 0.0901 0.9452 0.0000 -vt 0.0908 0.9395 0.0000 -vt 0.0894 0.9452 0.0000 -vt 0.0901 0.9395 0.0000 -vt 0.0887 0.9453 0.0000 -vt 0.0894 0.9395 0.0000 -vt 0.0879 0.9454 0.0000 -vt 0.0886 0.9395 0.0000 -vt 0.0871 0.9455 0.0000 -vt 0.0878 0.9395 0.0000 -vt 0.0864 0.9455 0.0000 -vt 0.0871 0.9395 0.0000 -vt 0.0858 0.9456 0.0000 -vt 0.0864 0.9395 0.0000 -vt 0.0852 0.9456 0.0000 -vt 0.0859 0.9395 0.0000 -vt 0.1047 0.9453 0.0000 -vt 0.0984 0.9453 0.0000 -vt 0.0984 0.9448 0.0000 -vt 0.1047 0.9448 0.0000 -vt 0.0983 0.9442 0.0000 -vt 0.1047 0.9443 0.0000 -vt 0.0983 0.9436 0.0000 -vt 0.1047 0.9436 0.0000 -vt 0.0984 0.9429 0.0000 -vt 0.1047 0.9430 0.0000 -vt 0.0984 0.9424 0.0000 -vt 0.1047 0.9424 0.0000 -vt 0.0984 0.9419 0.0000 -vt 0.1047 0.9419 0.0000 -vt 0.0851 0.9395 0.0000 -vt 0.0857 0.9456 0.0000 -vt 0.0845 0.9395 0.0000 -vt 0.0846 0.9455 0.0000 -vt 0.0839 0.9395 0.0000 -vt 0.0838 0.9454 0.0000 -vt 0.0832 0.9395 0.0000 -vt 0.0830 0.9454 0.0000 -vt 0.0824 0.9395 0.0000 -vt 0.0822 0.9453 0.0000 -vt 0.0816 0.9395 0.0000 -vt 0.0815 0.9452 0.0000 -vt 0.0808 0.9395 0.0000 -vt 0.0809 0.9452 0.0000 -vt 0.0802 0.9395 0.0000 -vt 0.0803 0.9451 0.0000 -vt 0.0797 0.9395 0.0000 -vt 0.0182 0.9515 0.0000 -vt 0.0124 0.9515 0.0000 -vt 0.0124 0.9510 0.0000 -vt 0.0181 0.9510 0.0000 -vt 0.0099 0.9655 0.0000 -vt 0.0099 0.9638 0.0000 -vt 0.0105 0.9638 0.0000 -vt 0.0105 0.9655 0.0000 -vt 0.0111 0.9637 0.0000 -vt 0.0111 0.9492 0.0000 -vt 0.0109 0.9486 0.0000 -vt 0.0105 0.9481 0.0000 -vt 0.0100 0.9477 0.0000 -vt 0.0895 0.9475 0.0000 -vt 0.0916 0.9400 0.0000 -vt 0.0938 0.9399 0.0000 -vt 0.0944 0.9403 0.0000 -vt 0.0892 0.9480 0.0000 -vt 0.0889 0.9487 0.0000 -vt 0.0885 0.9494 0.0000 -vt 0.0882 0.9502 0.0000 -vt 0.0878 0.9508 0.0000 -vt 0.0875 0.9514 0.0000 -vt 0.0183 0.9615 0.0000 -vt 0.0241 0.9616 0.0000 -vt 0.0873 0.9519 0.0000 -vt 0.0920 0.9452 0.0000 -vt 0.0916 0.9447 0.0000 -vt 0.0914 0.9441 0.0000 -vt 0.0913 0.9435 0.0000 -vt 0.0914 0.9429 0.0000 -vt 0.0917 0.9423 0.0000 -vt 0.0921 0.9418 0.0000 -vt 0.0102 0.9579 0.0000 -vt 0.0165 0.9580 0.0000 -vt 0.0161 0.9585 0.0000 -vt 0.0834 0.9514 0.0000 -vt 0.0831 0.9508 0.0000 -vt 0.0828 0.9501 0.0000 -vt 0.0824 0.9494 0.0000 -vt 0.0821 0.9487 0.0000 -vt 0.0817 0.9480 0.0000 -vt 0.1981 0.9520 0.0000 -vt 0.2008 0.9520 0.0000 -vt 0.2003 0.9524 0.0000 -vt 0.0814 0.9474 0.0000 -vt 0.1980 0.9527 0.0000 -vt 0.1998 0.9529 0.0000 -vt 0.0812 0.9470 0.0000 -vt 0.0089 0.9650 0.0000 -vt 0.0088 0.9631 0.0000 -vt 0.0093 0.9635 0.0000 -vt 0.0093 0.9653 0.0000 -vt 0.0855 0.9557 0.0000 -vt 0.0689 0.9557 0.0000 -vt 0.0690 0.9551 0.0000 -vt 0.0854 0.9551 0.0000 -vt 0.0689 0.9545 0.0000 -vt 0.0855 0.9545 0.0000 -vt 0.0689 0.9539 0.0000 -vt 0.0856 0.9539 0.0000 -vt 0.0689 0.9534 0.0000 -vt 0.0858 0.9534 0.0000 -vt 0.0898 0.9470 0.0000 -vt 0.1066 0.9480 0.0000 -vt 0.1067 0.9486 0.0000 -vt 0.1068 0.9492 0.0000 -vt 0.1069 0.9500 0.0000 -vt 0.1070 0.9508 0.0000 -vt 0.1071 0.9516 0.0000 -vt 0.1072 0.9523 0.0000 -vt 0.1072 0.9530 0.0000 -vt 0.1073 0.9535 0.0000 -vt 0.2125 0.7673 0.0000 -vt 0.2125 0.7875 0.0000 -vt 0.2120 0.7875 0.0000 -vt 0.2120 0.7671 0.0000 -vt 0.2114 0.7876 0.0000 -vt 0.2114 0.7669 0.0000 -vt 0.2108 0.7876 0.0000 -vt 0.2108 0.7669 0.0000 -vt 0.2102 0.7876 0.0000 -vt 0.2102 0.7669 0.0000 -vt 0.2096 0.7875 0.0000 -vt 0.2096 0.7671 0.0000 -vt 0.2091 0.7875 0.0000 -vt 0.2091 0.7673 0.0000 -vt 0.0837 0.9519 0.0000 -vt 0.0637 0.9535 0.0000 -vt 0.0637 0.9530 0.0000 -vt 0.0638 0.9523 0.0000 -vt 0.0639 0.9516 0.0000 -vt 0.0640 0.9508 0.0000 -vt 0.0641 0.9500 0.0000 -vt 0.0642 0.9492 0.0000 -vt 0.0643 0.9486 0.0000 -vt 0.0644 0.9480 0.0000 -vt 0.0858 0.9568 0.0000 -vt 0.0689 0.9568 0.0000 -vt 0.0689 0.9563 0.0000 -vt 0.0856 0.9563 0.0000 -vt 0.0520 0.9557 0.0000 -vt 0.0521 0.9551 0.0000 -vt 0.0520 0.9545 0.0000 -vt 0.0519 0.9539 0.0000 -vt 0.0516 0.9534 0.0000 -vt 0.1237 0.9475 0.0000 -vt 0.1241 0.9479 0.0000 -vt 0.1245 0.9485 0.0000 -vt 0.1249 0.9491 0.0000 -vt 0.1254 0.9497 0.0000 -vt 0.1259 0.9503 0.0000 -vt 0.1264 0.9509 0.0000 -vt 0.1268 0.9514 0.0000 -vt 0.1271 0.9519 0.0000 -vt 0.2125 0.8074 0.0000 -vt 0.2120 0.8077 0.0000 -vt 0.2114 0.8079 0.0000 -vt 0.2108 0.8079 0.0000 -vt 0.2102 0.8079 0.0000 -vt 0.2096 0.8077 0.0000 -vt 0.2091 0.8074 0.0000 -vt 0.0439 0.9519 0.0000 -vt 0.0442 0.9514 0.0000 -vt 0.0446 0.9509 0.0000 -vt 0.0451 0.9503 0.0000 -vt 0.0456 0.9497 0.0000 -vt 0.0461 0.9490 0.0000 -vt 0.0465 0.9484 0.0000 -vt 0.0469 0.9479 0.0000 -vt 0.0472 0.9475 0.0000 -vt 0.0516 0.9568 0.0000 -vt 0.0519 0.9563 0.0000 -vt 0.1581 0.9493 0.0000 -vt 0.1587 0.9493 0.0000 -vt 0.1587 0.9499 0.0000 -vt 0.1582 0.9499 0.0000 -vt 0.1587 0.9505 0.0000 -vt 0.1581 0.9505 0.0000 -vt 0.1588 0.9511 0.0000 -vt 0.1579 0.9511 0.0000 -vt 0.1588 0.9516 0.0000 -vt 0.1575 0.9516 0.0000 -vt 0.1236 0.9462 0.0000 -vt 0.1241 0.9461 0.0000 -vt 0.0961 0.9419 0.0000 -vt 0.0943 0.9418 0.0000 -vt 0.0947 0.9413 0.0000 -vt 0.1248 0.9460 0.0000 -vt 0.1255 0.9459 0.0000 -vt 0.1263 0.9457 0.0000 -vt 0.1270 0.9456 0.0000 -vt 0.1278 0.9454 0.0000 -vt 0.1284 0.9453 0.0000 -vt 0.1289 0.9452 0.0000 -vt 0.0753 0.9455 0.0000 -vt 0.0685 0.9456 0.0000 -vt 0.0684 0.9451 0.0000 -vt 0.0756 0.9450 0.0000 -vt 0.0684 0.9445 0.0000 -vt 0.0758 0.9444 0.0000 -vt 0.0683 0.9439 0.0000 -vt 0.0759 0.9438 0.0000 -vt 0.0683 0.9432 0.0000 -vt 0.0758 0.9432 0.0000 -vt 0.0684 0.9427 0.0000 -vt 0.0756 0.9426 0.0000 -vt 0.0685 0.9422 0.0000 -vt 0.0752 0.9421 0.0000 -vt 0.0420 0.9452 0.0000 -vt 0.0426 0.9453 0.0000 -vt 0.0432 0.9454 0.0000 -vt 0.0439 0.9456 0.0000 -vt 0.0447 0.9457 0.0000 -vt 0.0455 0.9458 0.0000 -vt 0.0462 0.9460 0.0000 -vt 0.0468 0.9461 0.0000 -vt 0.0474 0.9462 0.0000 -vt 0.1589 0.9482 0.0000 -vt 0.1576 0.9482 0.0000 -vt 0.1571 0.9478 0.0000 -vt 0.1588 0.9487 0.0000 -vt 0.1579 0.9487 0.0000 -vt 0.1642 0.9493 0.0000 -vt 0.1642 0.9499 0.0000 -vt 0.1642 0.9506 0.0000 -vt 0.1643 0.9512 0.0000 -vt 0.1644 0.9517 0.0000 -vt 0.1229 0.9408 0.0000 -vt 0.1234 0.9406 0.0000 -vt 0.1240 0.9404 0.0000 -vt 0.1247 0.9402 0.0000 -vt 0.1255 0.9399 0.0000 -vt 0.1262 0.9397 0.0000 -vt 0.1269 0.9394 0.0000 -vt 0.1275 0.9392 0.0000 -vt 0.1281 0.9390 0.0000 -vt 0.0622 0.9456 0.0000 -vt 0.0621 0.9451 0.0000 -vt 0.0620 0.9445 0.0000 -vt 0.0620 0.9439 0.0000 -vt 0.0620 0.9433 0.0000 -vt 0.0621 0.9427 0.0000 -vt 0.0622 0.9422 0.0000 -vt 0.0429 0.9390 0.0000 -vt 0.0434 0.9392 0.0000 -vt 0.0440 0.9394 0.0000 -vt 0.0447 0.9396 0.0000 -vt 0.0455 0.9399 0.0000 -vt 0.0462 0.9401 0.0000 -vt 0.0469 0.9404 0.0000 -vt 0.0476 0.9406 0.0000 -vt 0.0481 0.9408 0.0000 -vt 0.1644 0.9482 0.0000 -vt 0.1643 0.9487 0.0000 -vt 0.9549 0.3652 0.0000 -vt 0.9556 0.3652 0.0000 -vt 0.9544 0.3654 0.0000 -vt 0.9538 0.3658 0.0000 -vt 0.9534 0.3663 0.0000 -vt 0.9530 0.3669 0.0000 -vt 0.9527 0.3676 0.0000 -vt 0.9525 0.3683 0.0000 -vt 0.9525 0.3691 0.0000 -vt 0.9533 0.3711 0.0000 -vt 0.9537 0.3716 0.0000 -vt 0.9542 0.3719 0.0000 -vt 0.9548 0.3720 0.0000 -vt 0.9555 0.3720 0.0000 -vt 0.9560 0.3718 0.0000 -vt 0.9566 0.3715 0.0000 -vt 0.9570 0.3710 0.0000 -vt 0.9574 0.3704 0.0000 -vt 0.9577 0.3697 0.0000 -vt 0.9578 0.3689 0.0000 -vt 0.9579 0.3681 0.0000 -vt 0.9577 0.3674 0.0000 -vt 0.9575 0.3667 0.0000 -vt 0.9571 0.3661 0.0000 -vt 0.9567 0.3657 0.0000 -vt 0.9562 0.3654 0.0000 -vt 0.1850 0.9516 0.0000 -vt 0.1846 0.9511 0.0000 -vt 0.1844 0.9505 0.0000 -vt 0.1844 0.9499 0.0000 -vt 0.1846 0.9493 0.0000 -vt 0.1849 0.9487 0.0000 -vt 0.1853 0.9483 0.0000 -vt 0.1858 0.9479 0.0000 -vt 0.1865 0.9477 0.0000 -vt 0.1872 0.9476 0.0000 -vt 0.1879 0.9476 0.0000 -vt 0.1886 0.9477 0.0000 -vt 0.1893 0.9480 0.0000 -vt 0.1899 0.9484 0.0000 -vt 0.1903 0.9488 0.0000 -vt 0.1906 0.9494 0.0000 -vt 0.1908 0.9499 0.0000 -vt 0.1908 0.9506 0.0000 -vt 0.1907 0.9512 0.0000 -vt 0.1904 0.9517 0.0000 -vt 0.1900 0.9521 0.0000 -vt 0.1854 0.9520 0.0000 -vt 0.1894 0.9525 0.0000 -vt 0.1860 0.9524 0.0000 -vt 0.1888 0.9527 0.0000 -vt 0.1881 0.9528 0.0000 -vt 0.1866 0.9527 0.0000 -vt 0.1874 0.9528 0.0000 -vt 0.4404 0.1636 0.0000 -vt 0.4404 0.1628 0.0000 -vt 0.4405 0.1621 0.0000 -vt 0.4420 0.1662 0.0000 -vt 0.4415 0.1659 0.0000 -vt 0.4411 0.1655 0.0000 -vt 0.4426 0.1664 0.0000 -vt 0.4432 0.1664 0.0000 -vt 0.4437 0.1662 0.0000 -vt 0.4442 0.1658 0.0000 -vt 0.4447 0.1654 0.0000 -vt 0.4451 0.1648 0.0000 -vt 0.4453 0.1641 0.0000 -vt 0.4455 0.1634 0.0000 -vt 0.4455 0.1626 0.0000 -vt 0.4454 0.1619 0.0000 -vt 0.4451 0.1613 0.0000 -vt 0.4448 0.1607 0.0000 -vt 0.4444 0.1603 0.0000 -vt 0.4438 0.1600 0.0000 -vt 0.4433 0.1598 0.0000 -vt 0.4427 0.1598 0.0000 -vt 0.4421 0.1600 0.0000 -vt 0.4416 0.1604 0.0000 -vt 0.4407 0.1650 0.0000 -vt 0.4411 0.1608 0.0000 -vt 0.4405 0.1643 0.0000 -vt 0.4408 0.1614 0.0000 -vt 0.1574 0.9491 0.0000 -vt 0.1574 0.9497 0.0000 -vt 0.1517 0.9496 0.0000 -vt 0.1517 0.9490 0.0000 -vt 0.1573 0.9504 0.0000 -vt 0.1516 0.9502 0.0000 -vt 0.1573 0.9510 0.0000 -vt 0.1516 0.9508 0.0000 -vt 0.1573 0.9515 0.0000 -vt 0.1515 0.9513 0.0000 -vt 0.1776 0.9528 0.0000 -vt 0.1771 0.9528 0.0000 -vt 0.1765 0.9472 0.0000 -vt 0.1770 0.9472 0.0000 -vt 0.1764 0.9528 0.0000 -vt 0.1758 0.9471 0.0000 -vt 0.1757 0.9528 0.0000 -vt 0.1751 0.9470 0.0000 -vt 0.1749 0.9528 0.0000 -vt 0.1743 0.9469 0.0000 -vt 0.1741 0.9528 0.0000 -vt 0.1735 0.9469 0.0000 -vt 0.1734 0.9528 0.0000 -vt 0.1728 0.9468 0.0000 -vt 0.1727 0.9528 0.0000 -vt 0.1722 0.9467 0.0000 -vt 0.1722 0.9528 0.0000 -vt 0.1716 0.9466 0.0000 -vt 0.1043 0.9452 0.0000 -vt 0.1043 0.9447 0.0000 -vt 0.1106 0.9448 0.0000 -vt 0.1106 0.9453 0.0000 -vt 0.1043 0.9442 0.0000 -vt 0.1107 0.9442 0.0000 -vt 0.1043 0.9435 0.0000 -vt 0.1107 0.9436 0.0000 -vt 0.1043 0.9429 0.0000 -vt 0.1107 0.9429 0.0000 -vt 0.1043 0.9423 0.0000 -vt 0.1107 0.9424 0.0000 -vt 0.1044 0.9418 0.0000 -vt 0.1106 0.9419 0.0000 -vt 0.1713 0.9536 0.0000 -vt 0.1708 0.9535 0.0000 -vt 0.1716 0.9474 0.0000 -vt 0.1721 0.9474 0.0000 -vt 0.1702 0.9535 0.0000 -vt 0.1709 0.9475 0.0000 -vt 0.1694 0.9535 0.0000 -vt 0.1702 0.9475 0.0000 -vt 0.1686 0.9535 0.0000 -vt 0.1694 0.9476 0.0000 -vt 0.1678 0.9534 0.0000 -vt 0.1686 0.9476 0.0000 -vt 0.1671 0.9534 0.0000 -vt 0.1679 0.9477 0.0000 -vt 0.1665 0.9534 0.0000 -vt 0.1672 0.9478 0.0000 -vt 0.1659 0.9534 0.0000 -vt 0.1667 0.9478 0.0000 -vt 0.1574 0.9480 0.0000 -vt 0.1574 0.9485 0.0000 -vt 0.1516 0.9484 0.0000 -vt 0.1516 0.9479 0.0000 -vt 0.0076 0.9586 0.0000 -vt 0.0082 0.9587 0.0000 -vt 0.0078 0.9603 0.0000 -vt 0.1504 0.9496 0.0000 -vt 0.1503 0.9489 0.0000 -vt 0.1503 0.9502 0.0000 -vt 0.0083 0.9605 0.0000 -vt 0.1501 0.9508 0.0000 -vt 0.1497 0.9513 0.0000 -vt 0.1759 0.9449 0.0000 -vt 0.1491 0.9517 0.0000 -vt 0.1757 0.9443 0.0000 -vt 0.1909 0.9494 0.0000 -vt 0.1916 0.9491 0.0000 -vt 0.1938 0.9493 0.0000 -vt 0.1753 0.9436 0.0000 -vt 0.1750 0.9429 0.0000 -vt 0.1746 0.9422 0.0000 -vt 0.1743 0.9415 0.0000 -vt 0.1740 0.9409 0.0000 -vt 0.1737 0.9404 0.0000 -vt 0.0119 0.9621 0.0000 -vt 0.0123 0.9616 0.0000 -vt 0.0181 0.9621 0.0000 -vt 0.1173 0.9448 0.0000 -vt 0.1169 0.9453 0.0000 -vt 0.1176 0.9443 0.0000 -vt 0.1177 0.9436 0.0000 -vt 0.1176 0.9430 0.0000 -vt 0.1174 0.9424 0.0000 -vt 0.1170 0.9419 0.0000 -vt 0.1700 0.9416 0.0000 -vt 0.0194 0.9585 0.0000 -vt 0.0190 0.9579 0.0000 -vt 0.0253 0.9580 0.0000 -vt 0.1696 0.9422 0.0000 -vt 0.1693 0.9428 0.0000 -vt 0.1689 0.9435 0.0000 -vt 0.1685 0.9443 0.0000 -vt 0.1682 0.9449 0.0000 -vt 0.1679 0.9455 0.0000 -vt 0.0921 0.9419 0.0000 -vt 0.0916 0.9414 0.0000 -vt 0.0942 0.9415 0.0000 -vt 0.1676 0.9460 0.0000 -vt 0.1985 0.9520 0.0000 -vt 0.1980 0.9516 0.0000 -vt 0.2003 0.9516 0.0000 -vt 0.0064 0.9588 0.0000 -vt 0.0070 0.9586 0.0000 -vt 0.0066 0.9603 0.0000 -vt 0.0060 0.9606 0.0000 -vt 0.1501 0.9483 0.0000 -vt 0.0951 0.9558 0.0000 -vt 0.0952 0.9551 0.0000 -vt 0.1116 0.9551 0.0000 -vt 0.1117 0.9557 0.0000 -vt 0.0951 0.9545 0.0000 -vt 0.1117 0.9545 0.0000 -vt 0.0950 0.9539 0.0000 -vt 0.1117 0.9539 0.0000 -vt 0.0948 0.9534 0.0000 -vt 0.1118 0.9534 0.0000 -vt 0.1762 0.9454 0.0000 -vt 0.1931 0.9440 0.0000 -vt 0.1930 0.9445 0.0000 -vt 0.1932 0.9434 0.0000 -vt 0.1933 0.9426 0.0000 -vt 0.1934 0.9418 0.0000 -vt 0.1935 0.9410 0.0000 -vt 0.1936 0.9403 0.0000 -vt 0.1937 0.9396 0.0000 -vt 0.1938 0.9390 0.0000 -vt 0.2125 0.9392 0.0000 -vt 0.2120 0.9394 0.0000 -vt 0.2120 0.9189 0.0000 -vt 0.2125 0.9189 0.0000 -vt 0.2114 0.9395 0.0000 -vt 0.2115 0.9188 0.0000 -vt 0.2108 0.9395 0.0000 -vt 0.2108 0.9188 0.0000 -vt 0.2102 0.9395 0.0000 -vt 0.2102 0.9188 0.0000 -vt 0.2096 0.9394 0.0000 -vt 0.2096 0.9189 0.0000 -vt 0.2091 0.9392 0.0000 -vt 0.2091 0.9189 0.0000 -vt 0.1702 0.9411 0.0000 -vt 0.1503 0.9396 0.0000 -vt 0.1502 0.9390 0.0000 -vt 0.1503 0.9402 0.0000 -vt 0.1504 0.9410 0.0000 -vt 0.1505 0.9418 0.0000 -vt 0.1506 0.9426 0.0000 -vt 0.1507 0.9434 0.0000 -vt 0.1507 0.9440 0.0000 -vt 0.1508 0.9446 0.0000 -vt 0.0948 0.9568 0.0000 -vt 0.0950 0.9563 0.0000 -vt 0.1117 0.9563 0.0000 -vt 0.1118 0.9568 0.0000 -vt 0.1285 0.9551 0.0000 -vt 0.1286 0.9558 0.0000 -vt 0.1286 0.9545 0.0000 -vt 0.1287 0.9539 0.0000 -vt 0.1290 0.9534 0.0000 -vt 0.2105 0.9449 0.0000 -vt 0.2101 0.9453 0.0000 -vt 0.2109 0.9444 0.0000 -vt 0.2113 0.9438 0.0000 -vt 0.2118 0.9432 0.0000 -vt 0.2123 0.9425 0.0000 -vt 0.2128 0.9420 0.0000 -vt 0.2132 0.9414 0.0000 -vt 0.2136 0.9410 0.0000 -vt 0.2120 0.8988 0.0000 -vt 0.2125 0.8990 0.0000 -vt 0.2114 0.8986 0.0000 -vt 0.2108 0.8985 0.0000 -vt 0.2102 0.8986 0.0000 -vt 0.2096 0.8988 0.0000 -vt 0.2091 0.8990 0.0000 -vt 0.1307 0.9407 0.0000 -vt 0.1304 0.9403 0.0000 -vt 0.1311 0.9413 0.0000 -vt 0.1315 0.9419 0.0000 -vt 0.1320 0.9425 0.0000 -vt 0.1325 0.9432 0.0000 -vt 0.1330 0.9438 0.0000 -vt 0.1333 0.9443 0.0000 -vt 0.1337 0.9447 0.0000 -vt 0.1287 0.9563 0.0000 -vt 0.1290 0.9568 0.0000 -vt 0.1971 0.9506 0.0000 -vt 0.1970 0.9512 0.0000 -vt 0.1965 0.9512 0.0000 -vt 0.1965 0.9506 0.0000 -vt 0.1971 0.9518 0.0000 -vt 0.1965 0.9518 0.0000 -vt 0.1973 0.9524 0.0000 -vt 0.1964 0.9524 0.0000 -vt 0.1976 0.9529 0.0000 -vt 0.1963 0.9529 0.0000 -vt 0.2060 0.9519 0.0000 -vt 0.2064 0.9524 0.0000 -vt 0.2105 0.9467 0.0000 -vt 0.2100 0.9466 0.0000 -vt 0.2111 0.9468 0.0000 -vt 0.2119 0.9470 0.0000 -vt 0.2126 0.9472 0.0000 -vt 0.2134 0.9473 0.0000 -vt 0.2141 0.9475 0.0000 -vt 0.2148 0.9476 0.0000 -vt 0.2153 0.9477 0.0000 -vt 0.0242 0.9621 0.0000 -vt 0.0245 0.9626 0.0000 -vt 0.0173 0.9626 0.0000 -vt 0.0174 0.9621 0.0000 -vt 0.0247 0.9631 0.0000 -vt 0.0173 0.9632 0.0000 -vt 0.0248 0.9638 0.0000 -vt 0.0172 0.9638 0.0000 -vt 0.0247 0.9644 0.0000 -vt 0.0173 0.9645 0.0000 -vt 0.0173 0.9650 0.0000 -vt 0.0242 0.9655 0.0000 -vt 0.0174 0.9655 0.0000 -vt 0.1290 0.9468 0.0000 -vt 0.1284 0.9469 0.0000 -vt 0.1296 0.9467 0.0000 -vt 0.1303 0.9466 0.0000 -vt 0.1311 0.9465 0.0000 -vt 0.1319 0.9463 0.0000 -vt 0.1326 0.9462 0.0000 -vt 0.1332 0.9461 0.0000 -vt 0.1981 0.9491 0.0000 -vt 0.1977 0.9495 0.0000 -vt 0.1964 0.9495 0.0000 -vt 0.1338 0.9460 0.0000 -vt 0.1973 0.9500 0.0000 -vt 0.1964 0.9500 0.0000 -vt 0.1910 0.9512 0.0000 -vt 0.1910 0.9505 0.0000 -vt 0.1910 0.9518 0.0000 -vt 0.1909 0.9524 0.0000 -vt 0.1908 0.9529 0.0000 -vt 0.2097 0.9522 0.0000 -vt 0.2092 0.9520 0.0000 -vt 0.2103 0.9524 0.0000 -vt 0.2110 0.9527 0.0000 -vt 0.2118 0.9530 0.0000 -vt 0.2125 0.9532 0.0000 -vt 0.2132 0.9535 0.0000 -vt 0.2138 0.9537 0.0000 -vt 0.2143 0.9538 0.0000 -vt 0.0110 0.9627 0.0000 -vt 0.0111 0.9622 0.0000 -vt 0.0109 0.9632 0.0000 -vt 0.0109 0.9639 0.0000 -vt 0.0109 0.9645 0.0000 -vt 0.0110 0.9651 0.0000 -vt 0.0112 0.9656 0.0000 -vt 0.1297 0.9529 0.0000 -vt 0.1292 0.9531 0.0000 -vt 0.1303 0.9527 0.0000 -vt 0.1310 0.9525 0.0000 -vt 0.1318 0.9523 0.0000 -vt 0.1325 0.9521 0.0000 -vt 0.1332 0.9518 0.0000 -vt 0.1338 0.9517 0.0000 -vt 0.1344 0.9515 0.0000 -vt 0.1909 0.9500 0.0000 -vt 0.1908 0.9494 0.0000 -# 1721 texture coords - -g boilingpot -usemtl 09___Default -# s 8 -f 1/1/1 2/2/2 3/3/2 -f 3/3/2 4/4/1 1/1/1 -f 2/2/2 5/5/3 6/6/3 -f 6/6/3 3/3/2 2/2/2 -f 5/7/3 7/8/4 8/9/4 -f 8/9/4 6/10/3 5/7/3 -f 7/8/4 9/11/5 10/12/5 -f 10/12/5 8/9/4 7/8/4 -f 9/11/5 11/13/6 12/14/6 -f 12/14/6 10/12/5 9/11/5 -f 11/13/6 13/15/7 14/16/7 -f 14/16/7 12/14/6 11/13/6 -f 13/15/7 15/17/8 16/18/8 -f 16/18/8 14/16/7 13/15/7 -f 15/19/8 17/20/9 18/21/9 -f 18/21/9 16/22/8 15/19/8 -f 17/20/9 19/23/10 20/24/10 -f 20/24/10 18/21/9 17/20/9 -f 19/23/10 21/25/11 22/26/11 -f 22/26/11 20/24/10 19/23/10 -f 21/25/11 23/27/12 24/28/12 -f 24/28/12 22/26/11 21/25/11 -f 23/29/12 25/30/13 26/31/13 -f 26/31/13 24/32/12 23/29/12 -f 25/30/13 27/33/14 28/34/14 -f 28/34/14 26/31/13 25/30/13 -f 27/33/14 29/35/15 30/36/15 -f 30/36/15 28/34/14 27/33/14 -f 29/35/15 31/37/16 32/38/16 -f 32/38/16 30/36/15 29/35/15 -f 31/37/16 33/39/17 34/40/17 -f 34/40/17 32/38/16 31/37/16 -f 33/41/17 35/42/18 36/43/18 -f 36/43/18 34/44/17 33/41/17 -f 35/42/18 1/1/1 4/4/1 -f 4/4/1 36/43/18 35/42/18 -f 4/4/1 3/3/2 37/45/2 -f 37/45/2 38/46/1 4/4/1 -f 3/3/2 6/6/3 39/47/3 -f 39/47/3 37/45/2 3/3/2 -f 6/10/3 8/9/4 40/48/4 -f 40/48/4 39/49/3 6/10/3 -f 8/9/4 10/12/5 41/50/5 -f 41/50/5 40/48/4 8/9/4 -f 10/12/5 12/14/6 42/51/6 -f 42/51/6 41/50/5 10/12/5 -f 12/14/6 14/16/7 43/52/7 -f 43/52/7 42/51/6 12/14/6 -f 14/16/7 16/18/8 44/53/8 -f 44/53/8 43/52/7 14/16/7 -f 16/22/8 18/21/9 45/54/9 -f 45/54/9 44/55/8 16/22/8 -f 18/21/9 20/24/10 46/56/10 -f 46/56/10 45/54/9 18/21/9 -f 20/24/10 22/26/11 47/57/11 -f 47/57/11 46/56/10 20/24/10 -f 22/26/11 24/28/12 48/58/12 -f 48/58/12 47/57/11 22/26/11 -f 24/32/12 26/31/13 49/59/13 -f 49/59/13 48/60/12 24/32/12 -f 26/31/13 28/34/14 50/61/14 -f 50/61/14 49/59/13 26/31/13 -f 28/34/14 30/36/15 51/62/15 -f 51/62/15 50/61/14 28/34/14 -f 30/36/15 32/38/16 52/63/16 -f 52/63/16 51/62/15 30/36/15 -f 32/38/16 34/40/17 53/64/17 -f 53/64/17 52/63/16 32/38/16 -f 34/44/17 36/43/18 54/65/18 -f 54/65/18 53/66/17 34/44/17 -f 36/43/18 4/4/1 38/46/1 -f 38/46/1 54/65/18 36/43/18 -f 38/46/1 37/45/2 55/67/2 -f 55/67/2 56/68/1 38/46/1 -f 37/45/2 39/47/3 57/69/3 -f 57/69/3 55/67/2 37/45/2 -f 39/49/3 40/48/4 58/70/4 -f 58/70/4 57/71/3 39/49/3 -f 40/48/4 41/50/5 59/72/5 -f 59/72/5 58/70/4 40/48/4 -f 41/50/5 42/51/6 60/73/6 -f 60/73/6 59/72/5 41/50/5 -f 42/51/6 43/52/7 61/74/7 -f 61/74/7 60/73/6 42/51/6 -f 43/52/7 44/53/8 62/75/8 -f 62/75/8 61/74/7 43/52/7 -f 44/55/8 45/54/9 63/76/9 -f 63/76/9 62/77/8 44/55/8 -f 45/54/9 46/56/10 64/78/10 -f 64/78/10 63/76/9 45/54/9 -f 46/56/10 47/57/11 65/79/11 -f 65/79/11 64/78/10 46/56/10 -f 47/57/11 48/58/12 66/80/12 -f 66/80/12 65/79/11 47/57/11 -f 48/60/12 49/59/13 67/81/13 -f 67/81/13 66/82/12 48/60/12 -f 49/59/13 50/61/14 68/83/14 -f 68/83/14 67/81/13 49/59/13 -f 50/61/14 51/62/15 69/84/15 -f 69/84/15 68/83/14 50/61/14 -f 51/62/15 52/63/16 70/85/16 -f 70/85/16 69/84/15 51/62/15 -f 52/63/16 53/64/17 71/86/17 -f 71/86/17 70/85/16 52/63/16 -f 53/66/17 54/65/18 72/87/18 -f 72/87/18 71/88/17 53/66/17 -f 54/65/18 38/46/1 56/68/1 -f 56/68/1 72/87/18 54/65/18 -f 56/68/1 55/67/2 73/89/2 -f 73/89/2 74/90/1 56/68/1 -f 55/67/2 57/69/3 75/91/3 -f 75/91/3 73/89/2 55/67/2 -f 57/71/3 58/70/4 76/92/4 -f 76/92/4 75/93/3 57/71/3 -f 58/70/4 59/72/5 77/94/5 -f 77/94/5 76/92/4 58/70/4 -f 59/72/5 60/73/6 78/95/6 -f 78/95/6 77/94/5 59/72/5 -f 60/73/6 61/74/7 79/96/7 -f 79/96/7 78/95/6 60/73/6 -f 61/74/7 62/75/8 80/97/8 -f 80/97/8 79/96/7 61/74/7 -f 62/77/8 63/76/9 81/98/9 -f 81/98/9 80/99/8 62/77/8 -f 63/76/9 64/78/10 82/100/10 -f 82/100/10 81/98/9 63/76/9 -f 64/78/10 65/79/11 83/101/11 -f 83/101/11 82/100/10 64/78/10 -f 65/79/11 66/80/12 84/102/12 -f 84/102/12 83/101/11 65/79/11 -f 66/82/12 67/81/13 85/103/13 -f 85/103/13 84/104/12 66/82/12 -f 67/81/13 68/83/14 86/105/14 -f 86/105/14 85/103/13 67/81/13 -f 68/83/14 69/84/15 87/106/15 -f 87/106/15 86/105/14 68/83/14 -f 69/84/15 70/85/16 88/107/16 -f 88/107/16 87/106/15 69/84/15 -f 70/85/16 71/86/17 89/108/17 -f 89/108/17 88/107/16 70/85/16 -f 71/88/17 72/87/18 90/109/18 -f 90/109/18 89/110/17 71/88/17 -f 72/87/18 56/68/1 74/90/1 -f 74/90/1 90/109/18 72/87/18 -f 74/90/1 73/89/2 91/111/2 -f 91/111/2 92/112/1 74/90/1 -f 73/89/2 75/91/3 93/113/3 -f 93/113/3 91/111/2 73/89/2 -f 75/93/3 76/92/4 94/114/4 -f 94/114/4 93/115/3 75/93/3 -f 76/92/4 77/94/5 95/116/5 -f 95/116/5 94/114/4 76/92/4 -f 77/94/5 78/95/6 96/117/6 -f 96/117/6 95/116/5 77/94/5 -f 78/95/6 79/96/7 97/118/7 -f 97/118/7 96/117/6 78/95/6 -f 79/96/7 80/97/8 98/119/8 -f 98/119/8 97/118/7 79/96/7 -f 80/99/8 81/98/9 99/120/9 -f 99/120/9 98/121/8 80/99/8 -f 81/98/9 82/100/10 100/122/10 -f 100/122/10 99/120/9 81/98/9 -f 82/100/10 83/101/11 101/123/11 -f 101/123/11 100/122/10 82/100/10 -f 83/101/11 84/102/12 102/124/12 -f 102/124/12 101/123/11 83/101/11 -f 84/104/12 85/103/13 103/125/13 -f 103/125/13 102/126/12 84/104/12 -f 85/103/13 86/105/14 104/127/14 -f 104/127/14 103/125/13 85/103/13 -f 86/105/14 87/106/15 105/128/15 -f 105/128/15 104/127/14 86/105/14 -f 87/106/15 88/107/16 106/129/16 -f 106/129/16 105/128/15 87/106/15 -f 88/107/16 89/108/17 107/130/17 -f 107/130/17 106/129/16 88/107/16 -f 89/110/17 90/109/18 108/131/18 -f 108/131/18 107/132/17 89/110/17 -f 90/109/18 74/90/1 92/112/1 -f 92/112/1 108/131/18 90/109/18 -# s 1 -f 2/133/19 1/134/19 109/135/19 -f 109/135/19 110/136/19 2/133/19 -f 5/137/19 2/133/19 110/136/19 -f 110/136/19 111/138/19 5/137/19 -f 7/139/19 5/137/19 111/138/19 -f 111/138/19 112/140/19 7/139/19 -f 9/141/19 7/139/19 112/140/19 -f 112/140/19 113/142/19 9/141/19 -f 11/143/19 9/141/19 113/142/19 -f 113/142/19 114/144/19 11/143/19 -f 13/145/19 11/143/19 114/144/19 -f 114/144/19 115/146/19 13/145/19 -f 15/147/19 13/145/19 115/146/19 -f 115/146/19 116/148/19 15/147/19 -f 17/149/19 15/147/19 116/148/19 -f 116/148/19 117/150/19 17/149/19 -f 19/151/19 17/149/19 117/150/19 -f 117/150/19 118/152/19 19/151/19 -f 21/153/19 19/151/19 118/152/19 -f 118/152/19 119/154/19 21/153/19 -f 23/155/19 21/153/19 119/154/19 -f 119/154/19 120/156/19 23/155/19 -f 25/157/19 23/155/19 120/156/19 -f 120/156/19 121/158/19 25/157/19 -f 27/159/19 25/157/19 121/158/19 -f 121/158/19 122/160/19 27/159/19 -f 29/161/19 27/159/19 122/160/19 -f 122/160/19 123/162/19 29/161/19 -f 31/163/19 29/161/19 123/162/19 -f 123/162/19 124/164/19 31/163/19 -f 33/165/19 31/163/19 124/164/19 -f 124/164/19 125/166/19 33/165/19 -f 35/167/19 33/165/19 125/166/19 -f 125/166/19 126/168/19 35/167/19 -f 1/134/19 35/167/19 126/168/19 -f 126/168/19 109/135/19 1/134/19 -f 110/136/19 109/135/19 127/169/19 -f 127/169/19 128/170/19 110/136/19 -f 111/138/19 110/136/19 128/170/19 -f 128/170/19 129/171/19 111/138/19 -f 112/140/19 111/138/19 129/171/19 -f 129/171/19 130/172/19 112/140/19 -f 113/142/19 112/140/19 130/172/19 -f 130/172/19 131/173/19 113/142/19 -f 114/144/19 113/142/19 131/173/19 -f 131/173/19 132/174/19 114/144/19 -f 115/146/19 114/144/19 132/174/19 -f 132/174/19 133/175/19 115/146/19 -f 116/148/19 115/146/19 133/175/19 -f 133/175/19 134/176/19 116/148/19 -f 117/150/19 116/148/19 134/176/19 -f 134/176/19 135/177/19 117/150/19 -f 118/152/19 117/150/19 135/177/19 -f 135/177/19 136/178/19 118/152/19 -f 119/154/19 118/152/19 136/178/19 -f 136/178/19 137/179/19 119/154/19 -f 120/156/19 119/154/19 137/179/19 -f 137/179/19 138/180/19 120/156/19 -f 121/158/19 120/156/19 138/180/19 -f 138/180/19 139/181/19 121/158/19 -f 122/160/19 121/158/19 139/181/19 -f 139/181/19 140/182/19 122/160/19 -f 123/162/19 122/160/19 140/182/19 -f 140/182/19 141/183/19 123/162/19 -f 124/164/19 123/162/19 141/183/19 -f 141/183/19 142/184/19 124/164/19 -f 125/166/19 124/164/19 142/184/19 -f 142/184/19 143/185/19 125/166/19 -f 126/168/19 125/166/19 143/185/19 -f 143/185/19 144/186/19 126/168/19 -f 109/135/19 126/168/19 144/186/19 -f 144/186/19 127/169/19 109/135/19 -f 128/170/19 127/169/19 145/187/19 -f 129/171/19 128/170/19 145/187/19 -f 130/172/19 129/171/19 145/187/19 -f 131/173/19 130/172/19 145/187/19 -f 132/174/19 131/173/19 145/187/19 -f 133/175/19 132/174/19 145/187/19 -f 134/176/19 133/175/19 145/187/19 -f 135/177/19 134/176/19 145/187/19 -f 136/178/19 135/177/19 145/187/19 -f 137/179/19 136/178/19 145/187/19 -f 138/180/19 137/179/19 145/187/19 -f 139/181/19 138/180/19 145/187/19 -f 140/182/19 139/181/19 145/187/19 -f 141/183/19 140/182/19 145/187/19 -f 142/184/19 141/183/19 145/187/19 -f 143/185/19 142/184/19 145/187/19 -f 144/186/19 143/185/19 145/187/19 -f 127/169/19 144/186/19 145/187/19 -f 92/188/20 91/189/20 146/190/21 -f 146/190/21 147/191/22 92/188/20 -f 91/189/20 93/192/20 148/193/23 -f 148/193/23 146/190/21 91/189/20 -f 93/192/20 94/194/20 149/195/24 -f 149/195/24 148/193/23 93/192/20 -f 94/194/20 95/196/20 150/197/25 -f 150/197/25 149/195/24 94/194/20 -f 95/196/20 96/198/20 151/199/26 -f 151/199/26 150/197/25 95/196/20 -f 96/198/20 97/200/20 152/201/27 -f 152/201/27 151/199/26 96/198/20 -f 97/200/20 98/202/20 153/203/28 -f 153/203/28 152/201/27 97/200/20 -f 98/202/20 99/204/20 154/205/29 -f 154/205/29 153/203/28 98/202/20 -f 99/204/20 100/206/20 155/207/30 -f 155/207/30 154/205/29 99/204/20 -f 100/206/20 101/208/20 156/209/31 -f 156/209/31 155/207/30 100/206/20 -f 101/208/20 102/210/20 157/211/32 -f 157/211/32 156/209/31 101/208/20 -f 102/210/20 103/212/20 158/213/33 -f 158/213/33 157/211/32 102/210/20 -f 103/212/20 104/214/20 159/215/34 -f 159/215/34 158/213/33 103/212/20 -f 104/214/20 105/216/20 160/217/35 -f 160/217/35 159/215/34 104/214/20 -f 105/216/20 106/218/20 161/219/36 -f 161/219/36 160/217/35 105/216/20 -f 106/218/20 107/220/20 162/221/37 -f 162/221/37 161/219/36 106/218/20 -f 107/220/20 108/222/20 163/223/38 -f 163/223/38 162/221/37 107/220/20 -f 108/222/20 92/188/20 147/191/22 -f 147/191/22 163/223/38 108/222/20 -f 147/224/22 146/225/21 164/226/39 -f 164/226/39 165/227/40 147/224/22 -f 146/225/21 148/228/23 166/229/41 -f 166/229/41 164/226/39 146/225/21 -f 148/230/23 149/231/24 167/232/42 -f 167/232/42 166/233/41 148/230/23 -f 149/231/24 150/234/25 168/235/43 -f 168/235/43 167/232/42 149/231/24 -f 150/234/25 151/236/26 169/237/44 -f 169/237/44 168/235/43 150/234/25 -f 151/236/26 152/238/27 170/239/45 -f 170/239/45 169/237/44 151/236/26 -f 152/238/27 153/240/28 171/241/46 -f 171/241/46 170/239/45 152/238/27 -f 153/242/28 154/243/29 172/244/47 -f 172/244/47 171/245/46 153/242/28 -f 154/243/29 155/246/30 173/247/48 -f 173/247/48 172/244/47 154/243/29 -f 155/246/30 156/248/31 174/249/49 -f 174/249/49 173/247/48 155/246/30 -f 156/248/31 157/250/32 175/251/50 -f 175/251/50 174/249/49 156/248/31 -f 157/252/32 158/253/33 176/254/51 -f 176/254/51 175/255/50 157/252/32 -f 158/253/33 159/256/34 177/257/52 -f 177/257/52 176/254/51 158/253/33 -f 159/256/34 160/258/35 178/259/53 -f 178/259/53 177/257/52 159/256/34 -f 160/258/35 161/260/36 179/261/54 -f 179/261/54 178/259/53 160/258/35 -f 161/260/36 162/262/37 180/263/55 -f 180/263/55 179/261/54 161/260/36 -f 162/264/37 163/265/38 181/266/56 -f 181/266/56 180/267/55 162/264/37 -f 163/265/38 147/224/22 165/227/40 -f 165/227/40 181/266/56 163/265/38 -f 165/268/40 164/269/39 182/270/20 -f 164/269/39 166/271/41 182/270/20 -f 166/271/41 167/272/42 182/270/20 -f 167/272/42 168/273/43 182/270/20 -f 168/273/43 169/274/44 182/270/20 -f 169/274/44 170/275/45 182/270/20 -f 170/275/45 171/276/46 182/270/20 -f 171/276/46 172/277/47 182/270/20 -f 172/277/47 173/278/48 182/270/20 -f 173/278/48 174/279/49 182/270/20 -f 174/279/49 175/280/50 182/270/20 -f 175/280/50 176/281/51 182/270/20 -f 176/281/51 177/282/52 182/270/20 -f 177/282/52 178/283/53 182/270/20 -f 178/283/53 179/284/54 182/270/20 -f 179/284/54 180/285/55 182/270/20 -f 180/285/55 181/286/56 182/270/20 -f 181/286/56 165/268/40 182/270/20 -f 183/287/1 183/287/1 184/288/1 -f 184/289/1 184/289/1 183/290/1 -# s 3 -f 185/291/1 185/291/1 183/292/1 -f 183/293/1 183/293/1 185/294/1 -# s 2 -f 186/295/1 186/295/1 185/296/1 -f 185/297/1 185/297/1 186/298/1 -f 187/299/1 187/299/1 186/300/1 -f 186/301/1 186/301/1 187/302/1 -f 188/303/1 188/303/1 187/304/1 -f 187/305/1 187/305/1 188/306/1 -f 189/307/1 189/307/1 188/308/1 -f 188/309/1 188/309/1 189/310/1 -f 190/311/1 190/311/1 189/312/1 -f 189/313/1 189/313/1 190/293/1 -f 191/314/1 191/314/1 190/315/1 -f 190/311/1 190/311/1 191/316/1 -f 192/317/1 192/317/1 191/318/1 -f 191/316/1 191/316/1 192/303/1 -f 193/319/1 193/319/1 192/320/1 -f 192/303/1 192/303/1 193/321/1 -f 194/322/1 194/322/1 193/323/1 -f 193/321/1 193/321/1 194/324/1 -f 195/325/1 195/325/1 194/326/1 -f 194/324/1 194/324/1 195/327/1 -f 196/328/1 196/328/1 195/329/1 -f 195/327/1 195/327/1 196/330/1 -f 197/331/1 197/331/1 196/332/1 -f 196/330/1 196/330/1 197/333/1 -f 198/334/1 198/334/1 197/335/1 -f 197/333/1 197/333/1 198/336/1 -f 199/337/1 199/337/1 198/338/1 -f 198/336/1 198/336/1 199/339/1 -f 200/340/1 200/340/1 199/341/1 -f 199/339/1 199/339/1 200/342/1 -f 201/343/1 201/343/1 200/308/1 -f 200/342/1 200/342/1 201/344/1 -f 202/345/1 202/345/1 201/346/1 -f 201/344/1 201/344/1 202/347/1 -f 203/348/1 203/348/1 202/349/1 -f 202/347/1 202/347/1 203/350/1 -f 204/351/1 204/351/1 203/352/1 -f 203/350/1 203/350/1 204/353/1 -f 205/354/1 205/354/1 204/318/1 -f 204/351/1 204/351/1 205/355/1 -f 206/323/1 206/323/1 205/322/1 -f 205/356/1 205/356/1 206/357/1 -f 207/358/1 207/358/1 206/359/1 -f 206/360/1 206/360/1 207/361/1 -f 208/362/1 208/362/1 207/354/1 -f 207/349/1 207/349/1 208/348/1 -f 209/363/1 209/363/1 208/338/1 -f 208/364/1 208/364/1 209/365/1 -f 210/366/1 210/366/1 209/367/1 -f 209/368/1 209/368/1 210/369/1 -# s 3 -f 184/370/1 184/370/1 210/371/1 -f 210/372/1 210/372/1 184/373/1 -# s 16 -f 211/374/57 212/375/58 213/376/59 -f 214/377/59 215/378/60 216/379/57 -f 217/380/57 214/377/59 216/379/57 -f 218/381/59 217/380/57 216/379/57 -f 219/382/59 218/381/59 216/379/57 -f 220/383/61 219/382/59 216/379/57 -f 221/384/57 220/383/61 216/379/57 -f 222/385/59 221/384/57 216/379/57 -f 223/386/59 222/385/59 216/379/57 -f 224/387/57 223/386/59 216/379/57 -f 225/388/57 224/387/57 216/379/57 -f 226/389/59 225/388/57 216/379/57 -f 227/390/59 226/389/59 216/379/57 -f 228/391/59 227/390/59 216/379/57 -f 229/392/59 228/391/59 216/379/57 -f 230/393/59 229/392/59 216/379/57 -f 231/394/59 230/393/59 216/379/57 -f 232/395/57 231/394/59 216/379/57 -f 233/396/57 232/395/57 216/379/57 -f 234/397/57 233/396/57 216/379/57 -f 234/397/57 216/379/57 235/398/59 -f 236/399/57 234/397/57 235/398/59 -f 236/399/57 235/398/59 237/400/59 -f 238/401/57 236/399/57 237/400/59 -f 213/376/59 238/401/57 237/400/59 -f 211/374/57 213/376/59 237/400/59 -f 200/402/19 199/403/19 198/404/19 -f 200/402/19 198/404/19 197/405/19 -f 200/402/19 197/405/19 196/406/19 -f 200/402/19 196/406/19 195/407/19 -f 200/402/19 195/407/19 194/408/19 -f 200/402/19 194/408/19 193/409/19 -f 200/402/19 193/409/19 192/410/19 -f 200/402/19 192/410/19 191/411/19 -f 200/402/19 191/411/19 190/412/19 -f 200/402/19 190/412/19 189/413/19 -f 200/402/19 189/413/19 188/414/19 -f 200/402/19 188/414/19 187/415/19 -f 200/402/19 187/415/19 186/416/19 -f 200/402/19 186/416/19 185/417/19 -f 200/402/19 185/417/19 183/418/19 -f 200/402/19 183/418/19 184/419/19 -f 200/402/19 184/419/19 210/420/19 -f 200/402/19 210/420/19 209/421/19 -f 200/402/19 209/421/19 208/422/19 -f 201/423/19 200/402/19 208/422/19 -f 201/423/19 208/422/19 207/424/19 -f 202/425/19 201/423/19 207/424/19 -f 202/425/19 207/424/19 206/426/19 -f 202/425/19 206/426/19 205/427/19 -f 203/428/19 202/425/19 205/427/19 -f 203/428/19 205/427/19 204/429/19 -# s 4 -f 183/430/62 239/431/63 240/432/64 -f 240/432/64 184/433/65 183/430/62 -f 184/433/65 240/432/64 241/434/66 -f 241/434/66 210/435/67 184/433/65 -f 210/435/67 241/434/66 242/436/68 -f 242/436/68 209/437/69 210/435/67 -f 209/437/69 242/436/68 243/438/70 -f 243/438/70 208/439/71 209/437/69 -f 208/439/71 243/438/70 244/440/72 -f 244/441/72 207/442/73 208/443/71 -f 207/444/73 244/445/72 245/446/74 -f 245/446/74 206/447/75 207/444/73 -f 206/447/75 245/446/74 246/448/76 -f 246/448/76 205/449/77 206/447/75 -f 205/449/77 246/448/76 247/450/78 -f 247/450/78 204/451/79 205/449/77 -f 204/451/79 247/450/78 248/452/80 -f 248/452/80 203/453/81 204/451/79 -f 203/453/81 248/452/80 249/454/82 -f 249/454/82 202/455/83 203/453/81 -f 202/455/83 249/454/82 250/456/84 -f 250/456/84 201/457/85 202/455/83 -f 201/458/85 250/459/84 251/460/86 -f 251/460/86 200/461/87 201/458/85 -f 200/462/87 251/463/86 252/464/88 -f 252/464/88 199/465/89 200/462/87 -f 199/465/89 252/464/88 253/466/90 -f 253/466/90 198/467/91 199/465/89 -f 198/467/91 253/466/90 254/468/92 -f 254/468/92 197/469/93 198/467/91 -f 197/469/93 254/468/92 255/470/94 -f 255/470/94 196/471/95 197/469/93 -f 196/471/95 255/470/94 256/472/96 -f 256/472/96 195/473/97 196/471/95 -f 195/473/97 256/472/96 257/474/98 -f 257/474/98 194/475/99 195/473/97 -f 194/475/99 257/474/98 258/476/100 -f 258/477/100 193/478/101 194/479/99 -f 193/480/101 258/481/100 259/482/102 -f 259/482/102 192/483/103 193/480/101 -f 192/483/103 259/482/102 260/484/104 -f 260/484/104 191/485/105 192/483/103 -f 191/485/105 260/484/104 261/486/106 -f 261/486/106 190/487/107 191/485/105 -f 190/487/107 261/486/106 262/488/108 -f 262/488/108 189/489/109 190/487/107 -f 189/489/109 262/488/108 263/490/110 -f 263/490/110 188/491/111 189/489/109 -f 188/491/111 263/490/110 264/492/112 -f 264/492/112 187/493/113 188/491/111 -f 187/494/113 264/495/112 265/496/114 -f 265/496/114 186/497/115 187/494/113 -f 186/498/115 265/499/114 266/500/116 -f 266/500/116 185/501/117 186/498/115 -f 185/501/117 266/500/116 239/431/63 -f 239/431/63 183/430/62 185/501/117 -f 239/502/63 267/503/118 268/504/119 -f 268/505/119 240/506/64 239/507/63 -f 240/506/64 268/505/119 269/508/120 -f 269/509/120 241/434/66 240/432/64 -f 241/434/66 269/509/120 270/510/121 -f 270/510/121 242/436/68 241/434/66 -f 242/436/68 270/510/121 271/511/122 -f 271/511/122 243/438/70 242/436/68 -f 243/438/70 271/511/122 272/512/123 -f 272/513/123 244/441/72 243/514/70 -f 244/441/72 272/513/123 273/515/124 -f 273/516/124 245/446/74 244/445/72 -f 245/446/74 273/516/124 274/517/125 -f 274/517/125 246/448/76 245/446/74 -f 246/448/76 274/517/125 275/518/126 -f 275/518/126 247/450/78 246/448/76 -f 247/450/78 275/518/126 276/519/127 -f 276/519/127 248/452/80 247/450/78 -f 248/452/80 276/519/127 277/520/128 -f 277/520/128 249/454/82 248/452/80 -f 249/454/82 277/520/128 278/521/129 -f 278/521/129 250/456/84 249/454/82 -f 250/459/84 278/522/129 279/523/130 -f 279/523/130 251/460/86 250/459/84 -f 251/463/86 279/524/130 280/525/131 -f 280/525/131 252/464/88 251/463/86 -f 252/464/88 280/525/131 281/526/132 -f 281/526/132 253/466/90 252/464/88 -f 253/466/90 281/526/132 282/527/133 -f 282/527/133 254/468/92 253/466/90 -f 254/468/92 282/527/133 283/528/134 -f 283/528/134 255/470/94 254/468/92 -f 255/470/94 283/528/134 284/529/135 -f 284/529/135 256/472/96 255/470/94 -f 256/472/96 284/529/135 285/530/136 -f 285/530/136 257/474/98 256/472/96 -f 257/474/98 285/530/136 286/531/137 -f 286/532/137 258/477/100 257/533/98 -f 258/481/100 286/534/137 287/535/138 -f 287/535/138 259/482/102 258/481/100 -f 259/482/102 287/535/138 288/536/139 -f 288/536/139 260/484/104 259/482/102 -f 260/484/104 288/536/139 289/537/140 -f 289/537/140 261/486/106 260/484/104 -f 261/486/106 289/537/140 290/538/141 -f 290/538/141 262/488/108 261/486/106 -f 262/488/108 290/538/141 291/539/142 -f 291/539/142 263/490/110 262/488/108 -f 263/540/110 291/541/142 292/542/143 -f 292/543/143 264/492/112 263/490/110 -f 264/544/112 292/545/143 293/546/144 -f 293/547/144 265/496/114 264/495/112 -f 265/499/114 293/548/144 294/549/145 -f 294/549/145 266/500/116 265/499/114 -f 266/500/116 294/549/145 267/550/118 -f 267/551/118 239/552/63 266/553/116 -f 267/554/118 295/555/146 296/556/147 -f 296/556/147 268/557/119 267/554/118 -f 268/557/119 296/556/147 297/558/148 -f 297/558/148 269/559/120 268/557/119 -f 269/559/120 297/558/148 298/560/149 -f 298/560/149 270/561/121 269/559/120 -f 270/561/121 298/560/149 299/562/150 -f 299/562/150 271/563/122 270/561/121 -f 271/563/122 299/562/150 300/564/151 -f 300/564/151 272/565/123 271/563/122 -f 272/566/123 300/567/151 301/568/152 -f 301/568/152 273/516/124 272/566/123 -f 273/516/124 301/568/152 302/569/153 -f 302/569/153 274/517/125 273/516/124 -f 274/517/125 302/569/153 303/570/154 -f 303/570/154 275/518/126 274/517/125 -f 275/518/126 303/570/154 304/571/155 -f 304/571/155 276/519/127 275/518/126 -f 276/519/127 304/571/155 305/572/156 -f 305/572/156 277/520/128 276/519/127 -f 277/520/128 305/572/156 306/573/157 -f 306/573/157 278/521/129 277/520/128 -f 278/574/129 306/575/157 307/576/158 -f 307/576/158 279/577/130 278/574/129 -f 279/577/130 307/576/158 308/578/159 -f 308/578/159 280/579/131 279/577/130 -f 280/579/131 308/578/159 309/580/160 -f 309/580/160 281/581/132 280/579/131 -f 281/581/132 309/580/160 310/582/161 -f 310/582/161 282/583/133 281/581/132 -f 282/583/133 310/582/161 311/584/162 -f 311/584/162 283/585/134 282/583/133 -f 283/585/134 311/584/162 312/586/163 -f 312/586/163 284/587/135 283/585/134 -f 284/587/135 312/586/163 313/588/164 -f 313/588/164 285/589/136 284/587/135 -f 285/589/136 313/588/164 314/590/165 -f 314/590/165 286/591/137 285/589/136 -f 286/534/137 314/592/165 315/593/166 -f 315/593/166 287/535/138 286/534/137 -f 287/535/138 315/593/166 316/594/167 -f 316/594/167 288/536/139 287/535/138 -f 288/536/139 316/594/167 317/595/168 -f 317/595/168 289/537/140 288/536/139 -f 289/537/140 317/595/168 318/596/169 -f 318/596/169 290/538/141 289/537/140 -f 290/538/141 318/596/169 319/597/170 -f 319/597/170 291/539/142 290/538/141 -f 291/539/142 319/597/170 320/598/171 -f 320/598/171 292/543/143 291/539/142 -f 292/599/143 320/600/171 321/601/172 -f 321/601/172 293/602/144 292/599/143 -f 293/602/144 321/601/172 322/603/173 -f 322/603/173 294/604/145 293/602/144 -f 294/604/145 322/603/173 295/555/146 -f 295/555/146 267/554/118 294/604/145 -f 295/555/146 323/605/174 324/606/175 -f 324/606/175 296/556/147 295/555/146 -f 296/556/147 324/606/175 325/607/176 -f 325/607/176 297/558/148 296/556/147 -f 297/558/148 325/607/176 326/608/177 -f 326/608/177 298/560/149 297/558/148 -f 298/560/149 326/608/177 327/609/178 -f 327/609/178 299/562/150 298/560/149 -f 299/562/150 327/609/178 328/610/179 -f 328/610/179 300/564/151 299/562/150 -f 300/567/151 328/611/179 329/612/180 -f 329/612/180 301/568/152 300/567/151 -f 301/568/152 329/612/180 330/613/181 -f 330/613/181 302/569/153 301/568/152 -f 302/569/153 330/613/181 331/614/182 -f 331/614/182 303/570/154 302/569/153 -f 303/570/154 331/614/182 332/615/183 -f 332/615/183 304/571/155 303/570/154 -f 304/571/155 332/615/183 333/616/184 -f 333/616/184 305/572/156 304/571/155 -f 305/572/156 333/616/184 334/617/185 -f 334/617/185 306/573/157 305/572/156 -f 306/618/157 334/619/185 335/620/186 -f 335/621/186 307/622/158 306/623/157 -f 307/576/158 335/624/186 336/625/187 -f 336/625/187 308/578/159 307/576/158 -f 308/578/159 336/625/187 337/626/188 -f 337/626/188 309/580/160 308/578/159 -f 309/580/160 337/626/188 338/627/189 -f 338/627/189 310/582/161 309/580/160 -f 310/582/161 338/627/189 339/628/190 -f 339/628/190 311/584/162 310/582/161 -f 311/584/162 339/628/190 340/629/191 -f 340/629/191 312/586/163 311/584/162 -f 312/586/163 340/629/191 341/630/192 -f 341/630/192 313/588/164 312/586/163 -f 313/588/164 341/630/192 342/631/193 -f 342/632/193 314/633/165 313/634/164 -f 314/592/165 342/635/193 343/636/194 -f 343/636/194 315/593/166 314/592/165 -f 315/593/166 343/636/194 344/637/195 -f 344/637/195 316/594/167 315/593/166 -f 316/594/167 344/637/195 345/638/196 -f 345/638/196 317/595/168 316/594/167 -f 317/595/168 345/638/196 346/639/197 -f 346/639/197 318/596/169 317/595/168 -f 318/596/169 346/639/197 347/640/198 -f 347/640/198 319/597/170 318/596/169 -f 319/597/170 347/640/198 348/641/199 -f 348/641/199 320/598/171 319/597/170 -f 320/600/171 348/642/199 349/643/200 -f 349/643/200 321/601/172 320/600/171 -f 321/601/172 349/643/200 350/644/201 -f 350/644/201 322/603/173 321/601/172 -f 322/603/173 350/644/201 323/605/174 -f 323/605/174 295/555/146 322/603/173 -f 323/645/174 351/646/202 352/647/203 -f 352/647/203 324/648/175 323/645/174 -f 324/648/175 352/647/203 353/649/204 -f 353/649/204 325/650/176 324/648/175 -f 325/650/176 353/649/204 354/651/205 -f 354/651/205 326/652/177 325/650/176 -f 326/652/177 354/651/205 355/653/206 -f 355/653/206 327/654/178 326/652/177 -f 327/655/178 355/656/206 356/657/207 -f 356/658/207 328/659/179 327/660/178 -f 328/611/179 356/661/207 357/662/208 -f 357/662/208 329/612/180 328/611/179 -f 329/612/180 357/662/208 358/663/209 -f 358/663/209 330/613/181 329/612/180 -f 330/613/181 358/663/209 359/664/210 -f 359/664/210 331/614/182 330/613/181 -f 331/614/182 359/664/210 360/665/211 -f 360/665/211 332/615/183 331/614/182 -f 332/615/183 360/665/211 361/666/212 -f 361/666/212 333/616/184 332/615/183 -f 333/616/184 361/666/212 362/667/213 -f 362/667/213 334/617/185 333/616/184 -f 334/668/185 362/669/213 363/670/214 -f 363/670/214 335/671/186 334/668/185 -f 335/671/186 363/670/214 364/672/215 -f 364/672/215 336/673/187 335/671/186 -f 336/673/187 364/672/215 365/674/216 -f 365/674/216 337/675/188 336/673/187 -f 337/675/188 365/674/216 366/676/217 -f 366/676/217 338/677/189 337/675/188 -f 338/677/189 366/676/217 367/678/218 -f 367/678/218 339/679/190 338/677/189 -f 339/679/190 367/678/218 368/680/219 -f 368/680/219 340/681/191 339/679/190 -f 340/681/191 368/680/219 369/682/220 -f 369/682/220 341/683/192 340/681/191 -f 341/683/192 369/682/220 370/684/221 -f 370/684/221 342/685/193 341/683/192 -f 342/635/193 370/686/221 371/687/222 -f 371/687/222 343/636/194 342/635/193 -f 343/636/194 371/687/222 372/688/223 -f 372/688/223 344/637/195 343/636/194 -f 344/637/195 372/688/223 373/689/224 -f 373/689/224 345/638/196 344/637/195 -f 345/638/196 373/689/224 374/690/225 -f 374/690/225 346/639/197 345/638/196 -f 346/639/197 374/690/225 375/691/226 -f 375/691/226 347/640/198 346/639/197 -f 347/640/198 375/691/226 376/692/227 -f 376/692/227 348/641/199 347/640/198 -f 348/693/199 376/694/227 377/695/228 -f 377/695/228 349/696/200 348/693/199 -f 349/696/200 377/695/228 378/697/229 -f 378/697/229 350/698/201 349/696/200 -f 350/698/201 378/697/229 351/646/202 -f 351/646/202 323/645/174 350/698/201 -f 351/646/202 230/699/230 231/700/231 -f 231/700/231 352/647/203 351/646/202 -f 352/647/203 231/700/231 232/701/232 -f 232/701/232 353/649/204 352/647/203 -f 353/649/204 232/701/232 233/702/233 -f 233/702/233 354/651/205 353/649/204 -f 354/651/205 233/702/233 234/703/234 -f 234/703/234 355/653/206 354/651/205 -f 355/656/206 234/704/234 236/705/235 -f 236/705/235 356/657/207 355/656/206 -f 356/661/207 236/706/235 238/707/236 -f 238/707/236 357/662/208 356/661/207 -f 357/662/208 238/707/236 213/708/237 -f 213/708/237 358/663/209 357/662/208 -f 358/663/209 213/708/237 212/709/238 -f 212/709/238 359/664/210 358/663/209 -f 359/664/210 212/709/238 211/710/239 -f 211/710/239 360/665/211 359/664/210 -f 360/665/211 211/710/239 237/711/240 -f 237/711/240 361/666/212 360/665/211 -f 361/666/212 237/711/240 235/712/241 -f 235/712/241 362/667/213 361/666/212 -f 362/713/213 235/714/241 216/715/242 -f 216/715/242 363/716/214 362/713/213 -f 363/670/214 216/717/242 215/718/243 -f 215/718/243 364/672/215 363/670/214 -f 364/672/215 215/718/243 214/719/244 -f 214/719/244 365/674/216 364/672/215 -f 365/674/216 214/719/244 217/720/245 -f 217/720/245 366/676/217 365/674/216 -f 366/676/217 217/720/245 218/721/246 -f 218/721/246 367/678/218 366/676/217 -f 367/678/218 218/721/246 219/722/247 -f 219/722/247 368/680/219 367/678/218 -f 368/680/219 219/722/247 220/723/248 -f 220/723/248 369/682/220 368/680/219 -f 369/724/220 220/725/248 221/714/249 -f 221/714/249 370/726/221 369/724/220 -f 370/686/221 221/727/249 222/728/250 -f 222/728/250 371/687/222 370/686/221 -f 371/687/222 222/728/250 223/729/251 -f 223/729/251 372/688/223 371/687/222 -f 372/688/223 223/729/251 224/730/252 -f 224/730/252 373/689/224 372/688/223 -f 373/689/224 224/730/252 225/731/253 -f 225/731/253 374/690/225 373/689/224 -f 374/690/225 225/731/253 226/732/254 -f 226/732/254 375/691/226 374/690/225 -f 375/691/226 226/732/254 227/733/255 -f 227/733/255 376/692/227 375/691/226 -f 376/734/227 227/735/255 228/736/256 -f 228/736/256 377/737/228 376/734/227 -f 377/695/228 228/738/256 229/739/257 -f 229/739/257 378/697/229 377/695/228 -f 378/697/229 229/739/257 230/699/230 -f 230/699/230 351/646/202 378/697/229 -# s 8 -f 379/740/258 380/741/259 381/742/260 -f 381/742/260 382/743/261 379/740/258 -f 380/741/259 383/744/262 384/745/263 -f 384/745/263 381/742/260 380/741/259 -f 383/744/262 385/746/264 386/747/265 -f 386/747/265 384/745/263 383/744/262 -f 385/746/264 387/748/266 388/749/267 -f 388/749/267 386/747/265 385/746/264 -f 387/748/266 389/750/268 390/751/269 -f 390/751/269 388/749/267 387/748/266 -f 389/750/268 391/752/270 392/753/271 -f 392/753/271 390/751/269 389/750/268 -f 391/752/270 393/754/272 394/755/273 -f 394/755/273 392/753/271 391/752/270 -f 393/754/272 395/756/274 396/757/275 -f 396/757/275 394/755/273 393/754/272 -f 395/756/274 397/758/276 398/759/277 -f 398/759/277 396/757/275 395/756/274 -f 397/758/276 399/760/278 400/761/279 -f 400/761/279 398/759/277 397/758/276 -f 399/760/278 401/762/280 402/763/281 -f 402/763/281 400/761/279 399/760/278 -f 401/762/280 403/764/282 404/765/283 -f 404/765/283 402/763/281 401/762/280 -f 403/764/282 405/766/284 406/767/285 -f 406/767/285 404/765/283 403/764/282 -f 405/766/284 407/768/286 408/769/287 -f 408/769/287 406/767/285 405/766/284 -f 407/768/286 409/770/288 410/771/289 -f 410/771/289 408/769/287 407/768/286 -f 409/770/288 411/772/290 412/773/291 -f 412/773/291 410/771/289 409/770/288 -f 411/772/290 413/774/292 414/775/293 -f 414/775/293 412/773/291 411/772/290 -f 413/774/292 379/740/258 382/743/261 -f 382/743/261 414/775/293 413/774/292 -f 382/776/261 381/777/260 415/778/2 -f 415/778/2 416/779/1 382/776/261 -f 381/777/260 384/780/263 417/781/3 -f 417/781/3 415/778/2 381/777/260 -f 384/782/263 386/783/265 418/784/4 -f 418/784/4 417/785/3 384/782/263 -f 386/783/265 388/786/267 419/787/5 -f 419/787/5 418/784/4 386/783/265 -f 388/786/267 390/788/269 420/789/6 -f 420/789/6 419/787/5 388/786/267 -f 390/788/269 392/790/271 421/791/7 -f 421/791/7 420/789/6 390/788/269 -f 392/790/271 394/792/273 422/793/8 -f 422/793/8 421/791/7 392/790/271 -f 394/794/273 396/795/275 423/796/9 -f 423/796/9 422/797/8 394/794/273 -f 396/795/275 398/798/277 424/799/10 -f 424/799/10 423/796/9 396/795/275 -f 398/798/277 400/800/279 425/801/11 -f 425/801/11 424/799/10 398/798/277 -f 400/800/279 402/802/281 426/803/12 -f 426/803/12 425/801/11 400/800/279 -f 402/804/281 404/805/283 427/806/13 -f 427/806/13 426/807/12 402/804/281 -f 404/805/283 406/808/285 428/809/14 -f 428/809/14 427/806/13 404/805/283 -f 406/808/285 408/810/287 429/811/15 -f 429/811/15 428/809/14 406/808/285 -f 408/810/287 410/812/289 430/813/16 -f 430/813/16 429/811/15 408/810/287 -f 410/812/289 412/814/291 431/815/17 -f 431/815/17 430/813/16 410/812/289 -f 412/816/291 414/817/293 432/818/18 -f 432/818/18 431/819/17 412/816/291 -f 414/817/293 382/776/261 416/779/1 -f 416/779/1 432/818/18 414/817/293 -f 416/779/1 415/778/2 433/820/2 -f 433/820/2 434/821/1 416/779/1 -f 415/778/2 417/781/3 435/822/3 -f 435/822/3 433/820/2 415/778/2 -f 417/785/3 418/784/4 436/823/4 -f 436/823/4 435/824/3 417/785/3 -f 418/784/4 419/787/5 437/825/5 -f 437/825/5 436/823/4 418/784/4 -f 419/787/5 420/789/6 438/826/6 -f 438/826/6 437/825/5 419/787/5 -f 420/789/6 421/791/7 439/827/7 -f 439/827/7 438/826/6 420/789/6 -f 421/791/7 422/793/8 440/828/8 -f 440/828/8 439/827/7 421/791/7 -f 422/797/8 423/796/9 441/829/9 -f 441/829/9 440/830/8 422/797/8 -f 423/796/9 424/799/10 442/831/10 -f 442/831/10 441/829/9 423/796/9 -f 424/799/10 425/801/11 443/832/11 -f 443/832/11 442/831/10 424/799/10 -f 425/801/11 426/803/12 444/833/12 -f 444/833/12 443/832/11 425/801/11 -f 426/807/12 427/806/13 445/834/13 -f 445/834/13 444/835/12 426/807/12 -f 427/806/13 428/809/14 446/836/14 -f 446/836/14 445/834/13 427/806/13 -f 428/809/14 429/811/15 447/837/15 -f 447/837/15 446/836/14 428/809/14 -f 429/811/15 430/813/16 448/838/16 -f 448/838/16 447/837/15 429/811/15 -f 430/813/16 431/815/17 449/839/17 -f 449/839/17 448/838/16 430/813/16 -f 431/819/17 432/818/18 450/840/18 -f 450/840/18 449/841/17 431/819/17 -f 432/818/18 416/779/1 434/821/1 -f 434/821/1 450/840/18 432/818/18 -f 434/821/1 433/820/2 451/842/294 -f 451/842/294 452/843/295 434/821/1 -f 433/820/2 435/822/3 453/844/296 -f 453/844/296 451/842/294 433/820/2 -f 435/824/3 436/823/4 454/845/297 -f 454/845/297 453/846/296 435/824/3 -f 436/823/4 437/825/5 455/847/298 -f 455/847/298 454/845/297 436/823/4 -f 437/825/5 438/826/6 456/848/299 -f 456/848/299 455/847/298 437/825/5 -f 438/826/6 439/827/7 457/849/300 -f 457/849/300 456/848/299 438/826/6 -f 439/827/7 440/828/8 458/850/301 -f 458/850/301 457/849/300 439/827/7 -f 440/830/8 441/829/9 459/851/302 -f 459/851/302 458/852/301 440/830/8 -f 441/829/9 442/831/10 460/853/303 -f 460/853/303 459/851/302 441/829/9 -f 442/831/10 443/832/11 461/854/304 -f 461/854/304 460/853/303 442/831/10 -f 443/832/11 444/833/12 462/855/305 -f 462/855/305 461/854/304 443/832/11 -f 444/835/12 445/834/13 463/856/306 -f 463/856/306 462/857/305 444/835/12 -f 445/834/13 446/836/14 464/858/307 -f 464/858/307 463/856/306 445/834/13 -f 446/836/14 447/837/15 465/859/308 -f 465/859/308 464/858/307 446/836/14 -f 447/837/15 448/838/16 466/860/309 -f 466/860/309 465/859/308 447/837/15 -f 448/838/16 449/839/17 467/861/310 -f 467/861/310 466/860/309 448/838/16 -f 449/841/17 450/840/18 468/862/311 -f 468/862/311 467/863/310 449/841/17 -f 450/840/18 434/821/1 452/843/295 -f 452/843/295 468/862/311 450/840/18 -f 452/864/295 451/865/294 469/866/312 -f 469/866/312 470/867/313 452/864/295 -f 451/865/294 453/868/296 471/869/314 -f 471/869/314 469/866/312 451/865/294 -f 453/868/296 454/870/297 472/871/315 -f 472/871/315 471/869/314 453/868/296 -f 454/870/297 455/872/298 473/873/316 -f 473/873/316 472/871/315 454/870/297 -f 455/872/298 456/874/299 474/875/317 -f 474/875/317 473/873/316 455/872/298 -f 456/874/299 457/876/300 475/877/318 -f 475/877/318 474/875/317 456/874/299 -f 457/876/300 458/878/301 476/879/319 -f 476/879/319 475/877/318 457/876/300 -f 458/878/301 459/880/302 477/881/320 -f 477/881/320 476/879/319 458/878/301 -f 459/880/302 460/882/303 478/883/321 -f 478/883/321 477/881/320 459/880/302 -f 460/882/303 461/884/304 479/885/322 -f 479/885/322 478/883/321 460/882/303 -f 461/884/304 462/886/305 480/887/323 -f 480/887/323 479/885/322 461/884/304 -f 462/886/305 463/888/306 481/889/324 -f 481/889/324 480/887/323 462/886/305 -f 463/888/306 464/890/307 482/891/325 -f 482/891/325 481/889/324 463/888/306 -f 464/890/307 465/892/308 483/893/326 -f 483/893/326 482/891/325 464/890/307 -f 465/892/308 466/894/309 484/895/327 -f 484/895/327 483/893/326 465/892/308 -f 466/894/309 467/896/310 485/897/328 -f 485/897/328 484/895/327 466/894/309 -f 467/896/310 468/898/311 486/899/329 -f 486/899/329 485/897/328 467/896/310 -f 468/898/311 452/864/295 470/867/313 -f 470/867/313 486/899/329 468/898/311 -# s 1 -f 411/900/19 409/901/19 407/902/19 -f 407/902/19 405/903/19 403/904/19 -f 403/904/19 401/905/19 399/906/19 -f 407/902/19 403/904/19 399/906/19 -f 399/906/19 397/907/19 395/908/19 -f 395/908/19 393/909/19 391/910/19 -f 399/906/19 395/908/19 391/910/19 -f 391/910/19 389/911/19 387/912/19 -f 387/912/19 385/913/19 383/914/19 -f 391/910/19 387/912/19 383/914/19 -f 399/906/19 391/910/19 383/914/19 -f 407/902/19 399/906/19 383/914/19 -f 383/914/19 380/915/19 379/916/19 -f 407/902/19 383/914/19 379/916/19 -f 411/900/19 407/902/19 379/916/19 -f 413/917/19 411/900/19 379/916/19 -f 469/918/20 471/919/20 472/920/20 -f 472/920/20 473/921/20 474/922/20 -f 474/922/20 475/923/20 476/924/20 -f 472/920/20 474/922/20 476/924/20 -f 476/924/20 477/925/20 478/926/20 -f 478/926/20 479/927/20 480/928/20 -f 476/924/20 478/926/20 480/928/20 -f 480/928/20 481/929/20 482/930/20 -f 482/930/20 483/931/20 484/932/20 -f 480/928/20 482/930/20 484/932/20 -f 476/924/20 480/928/20 484/932/20 -f 472/920/20 476/924/20 484/932/20 -f 484/932/20 485/933/20 486/934/20 -f 472/920/20 484/932/20 486/934/20 -f 469/918/20 472/920/20 486/934/20 -f 470/935/20 469/918/20 486/934/20 -f 487/936/1 487/936/1 488/937/1 -f 488/938/1 488/938/1 487/939/1 -# s 3 -f 489/940/1 489/940/1 487/321/1 -f 487/941/1 487/941/1 489/942/1 -# s 2 -f 490/943/1 490/943/1 489/944/1 -f 489/945/1 489/945/1 490/946/1 -f 491/947/1 491/947/1 490/948/1 -f 490/949/1 490/949/1 491/950/1 -f 492/951/1 492/951/1 491/363/1 -f 491/952/1 491/952/1 492/953/1 -f 493/954/1 493/954/1 492/955/1 -f 492/337/1 492/337/1 493/956/1 -f 494/957/1 494/957/1 493/958/1 -f 493/959/1 493/959/1 494/960/1 -f 495/961/1 495/961/1 494/291/1 -f 494/962/1 494/962/1 495/963/1 -f 496/964/1 496/964/1 495/965/1 -f 495/966/1 495/966/1 496/967/1 -f 497/968/1 497/968/1 496/969/1 -f 496/970/1 496/970/1 497/364/1 -f 498/971/1 498/971/1 497/972/1 -f 497/973/1 497/973/1 498/974/1 -f 499/975/1 499/975/1 498/976/1 -f 498/977/1 498/977/1 499/328/1 -f 500/978/1 500/978/1 499/979/1 -f 499/980/1 499/980/1 500/981/1 -f 501/982/1 501/982/1 500/983/1 -f 500/984/1 500/984/1 501/985/1 -f 502/986/1 502/986/1 501/987/1 -f 501/988/1 501/988/1 502/989/1 -f 503/990/1 503/990/1 502/991/1 -f 502/992/1 502/992/1 503/993/1 -f 504/994/1 504/994/1 503/995/1 -f 503/296/1 503/296/1 504/996/1 -f 505/997/1 505/997/1 504/998/1 -f 504/999/1 504/999/1 505/1000/1 -f 506/1001/1 506/1001/1 505/1002/1 -f 505/308/1 505/308/1 506/1003/1 -f 507/1004/1 507/1004/1 506/297/1 -f 506/363/1 506/363/1 507/1005/1 -f 508/1006/1 508/1006/1 507/1007/1 -f 507/369/1 507/369/1 508/1008/1 -f 509/1009/1 509/1009/1 508/957/1 -f 508/1007/1 508/1007/1 509/1010/1 -f 510/1011/1 510/1011/1 509/1012/1 -f 509/1013/1 509/1013/1 510/1014/1 -f 511/326/1 511/326/1 510/1015/1 -f 510/1016/1 510/1016/1 511/1017/1 -f 512/1018/1 512/1018/1 511/1019/1 -f 511/1020/1 511/1020/1 512/1021/1 -f 513/1022/1 513/1022/1 512/1023/1 -f 512/1024/1 512/1024/1 513/1025/1 -f 514/1026/1 514/1026/1 513/1027/1 -f 513/372/1 513/372/1 514/1028/1 -# s 3 -f 488/1029/1 488/1029/1 514/1030/1 -f 514/1031/1 514/1031/1 488/1032/1 -# s 16 -f 515/1033/330 516/1034/330 517/1035/331 -f 518/1036/331 519/1037/331 520/1038/331 -f 521/1039/331 518/1036/331 520/1038/331 -f 522/1040/331 521/1039/331 520/1038/331 -f 523/1041/331 522/1040/331 520/1038/331 -f 524/1042/331 523/1041/331 520/1038/331 -f 525/1043/331 524/1042/331 520/1038/331 -f 526/1044/331 525/1043/331 520/1038/331 -f 527/1045/331 526/1044/331 520/1038/331 -f 528/1046/331 527/1045/331 520/1038/331 -f 529/1047/331 528/1046/331 520/1038/331 -f 530/1048/331 529/1047/331 520/1038/331 -f 531/1049/331 530/1048/331 520/1038/331 -f 532/1050/331 531/1049/331 520/1038/331 -f 533/1051/331 532/1050/331 520/1038/331 -f 534/1052/331 533/1051/331 520/1038/331 -f 535/1053/331 534/1052/331 520/1038/331 -f 536/1054/331 535/1053/331 520/1038/331 -f 537/1055/331 536/1054/331 520/1038/331 -f 538/1056/331 537/1055/331 520/1038/331 -f 538/1056/331 520/1038/331 539/1057/331 -f 540/1058/331 538/1056/331 539/1057/331 -f 540/1058/331 539/1057/331 541/1059/331 -f 542/1060/331 540/1058/331 541/1059/331 -f 517/1035/331 542/1060/331 541/1059/331 -f 515/1033/330 517/1035/331 541/1059/331 -f 504/1061/332 503/1062/332 502/1063/332 -f 504/1061/332 502/1063/332 501/1064/333 -f 504/1061/332 501/1064/333 500/1065/332 -f 504/1061/332 500/1065/332 499/1066/332 -f 504/1061/332 499/1066/332 498/1067/332 -f 504/1061/332 498/1067/332 497/1068/332 -f 504/1061/332 497/1068/332 496/1069/332 -f 504/1061/332 496/1069/332 495/1070/332 -f 504/1061/332 495/1070/332 494/1071/332 -f 504/1061/332 494/1071/332 493/1072/332 -f 504/1061/332 493/1072/332 492/1073/332 -f 504/1061/332 492/1073/332 491/1074/332 -f 504/1061/332 491/1074/332 490/1075/332 -f 504/1061/332 490/1075/332 489/1076/332 -f 504/1061/332 489/1076/332 487/1077/332 -f 504/1061/332 487/1077/332 488/1078/332 -f 504/1061/332 488/1078/332 514/1079/332 -f 504/1061/332 514/1079/332 513/1080/332 -f 504/1061/332 513/1080/332 512/1081/332 -f 505/1082/332 504/1061/332 512/1081/332 -f 505/1082/332 512/1081/332 511/1083/332 -f 506/1084/332 505/1082/332 511/1083/332 -f 506/1084/332 511/1083/332 510/1085/332 -f 506/1084/332 510/1085/332 509/1086/332 -f 507/1087/334 506/1084/332 509/1086/332 -f 507/1087/334 509/1086/332 508/1088/334 -# s 4 -f 487/1089/335 543/1090/336 544/1091/337 -f 544/1091/337 488/1092/338 487/1089/335 -f 488/1092/338 544/1091/337 545/1093/339 -f 545/1093/339 514/1094/340 488/1092/338 -f 514/1094/340 545/1093/339 546/1095/341 -f 546/1095/341 513/1096/342 514/1094/340 -f 513/1096/342 546/1095/341 547/1097/343 -f 547/1097/343 512/1098/344 513/1096/342 -f 512/1099/344 547/1100/343 548/1101/345 -f 548/1101/345 511/1102/346 512/1099/344 -f 511/1102/346 548/1101/345 549/1103/347 -f 549/1103/347 510/1104/348 511/1102/346 -f 510/1104/348 549/1103/347 550/1105/349 -f 550/1105/349 509/1106/350 510/1104/348 -f 509/1106/350 550/1105/349 551/1107/351 -f 551/1107/351 508/1108/352 509/1106/350 -f 508/1108/352 551/1107/351 552/1109/353 -f 552/1109/353 507/1110/354 508/1108/352 -f 507/1110/354 552/1109/353 553/1111/355 -f 553/1111/355 506/1112/356 507/1110/354 -f 506/1112/356 553/1111/355 554/1113/357 -f 554/1113/357 505/1114/358 506/1112/356 -f 505/1114/358 554/1113/357 555/1115/359 -f 555/1115/359 504/1116/360 505/1114/358 -f 504/1117/360 555/1118/359 556/1119/361 -f 556/1119/361 503/1120/362 504/1117/360 -f 503/1120/362 556/1119/361 557/1121/363 -f 557/1121/363 502/1122/364 503/1120/362 -f 502/1122/364 557/1121/363 558/1123/365 -f 558/1123/365 501/1124/366 502/1122/364 -f 501/1124/366 558/1123/365 559/1125/367 -f 559/1125/367 500/1126/368 501/1124/366 -f 500/1126/368 559/1125/367 560/1127/369 -f 560/1127/369 499/1128/370 500/1126/368 -f 499/1128/370 560/1127/369 561/1129/371 -f 561/1129/371 498/1130/372 499/1128/370 -f 498/1131/372 561/1132/371 562/1115/373 -f 562/1115/373 497/1133/374 498/1131/372 -f 497/1133/374 562/1115/373 563/1134/375 -f 563/1134/375 496/1135/376 497/1133/374 -f 496/1135/376 563/1134/375 564/1136/377 -f 564/1136/377 495/1137/378 496/1135/376 -f 495/1137/378 564/1136/377 565/1138/379 -f 565/1138/379 494/1139/380 495/1137/378 -f 494/1139/380 565/1138/379 566/1140/381 -f 566/1140/381 493/1141/382 494/1139/380 -f 493/1141/382 566/1140/381 567/1142/383 -f 567/1142/383 492/1143/384 493/1141/382 -f 492/1143/384 567/1142/383 568/1144/385 -f 568/1144/385 491/1145/386 492/1143/384 -f 491/1145/386 568/1144/385 569/1146/387 -f 569/1146/387 490/1147/388 491/1145/386 -f 490/1148/388 569/1149/387 570/1150/389 -f 570/1150/389 489/1151/390 490/1148/388 -f 489/1151/390 570/1150/389 543/1090/336 -f 543/1090/336 487/1089/335 489/1151/390 -f 543/1152/336 571/1153/391 572/1154/392 -f 572/1154/392 544/1155/337 543/1152/336 -f 544/1155/337 572/1154/392 573/1156/393 -f 573/1157/393 545/1093/339 544/1091/337 -f 545/1093/339 573/1157/393 574/1158/394 -f 574/1158/394 546/1095/341 545/1093/339 -f 546/1095/341 574/1158/394 575/1159/395 -f 575/1159/395 547/1097/343 546/1095/341 -f 547/1097/343 575/1159/395 576/1160/396 -f 576/1161/396 548/1101/345 547/1100/343 -f 548/1162/345 576/1163/396 577/1164/397 -f 577/1165/397 549/1103/347 548/1101/345 -f 549/1103/347 577/1165/397 578/1166/398 -f 578/1166/398 550/1105/349 549/1103/347 -f 550/1105/349 578/1166/398 579/1167/399 -f 579/1167/399 551/1107/351 550/1105/349 -f 551/1107/351 579/1167/399 580/1168/400 -f 580/1168/400 552/1109/353 551/1107/351 -f 552/1109/353 580/1168/400 581/1169/401 -f 581/1169/401 553/1111/355 552/1109/353 -f 553/1111/355 581/1169/401 582/1170/402 -f 582/1170/402 554/1113/357 553/1111/355 -f 554/1171/357 582/1172/402 583/467/403 -f 583/1173/403 555/1115/359 554/1113/357 -f 555/1118/359 583/1174/403 584/1175/404 -f 584/1175/404 556/1119/361 555/1118/359 -f 556/1119/361 584/1175/404 585/1176/405 -f 585/1176/405 557/1121/363 556/1119/361 -f 557/1121/363 585/1176/405 586/1177/406 -f 586/1177/406 558/1123/365 557/1121/363 -f 558/1123/365 586/1177/406 587/1178/407 -f 587/1178/407 559/1125/367 558/1123/365 -f 559/1125/367 587/1178/407 588/1179/408 -f 588/1179/408 560/1127/369 559/1125/367 -f 560/1127/369 588/1179/408 589/1180/409 -f 589/1180/409 561/1129/371 560/1127/369 -f 561/1181/371 589/1182/409 590/1183/410 -f 590/1184/410 562/1115/373 561/1132/371 -f 562/1115/373 590/1184/410 591/1185/411 -f 591/1185/411 563/1134/375 562/1115/373 -f 563/1134/375 591/1185/411 592/1186/412 -f 592/1186/412 564/1136/377 563/1134/375 -f 564/1136/377 592/1186/412 593/1187/413 -f 593/1187/413 565/1138/379 564/1136/377 -f 565/1138/379 593/1187/413 594/1188/414 -f 594/1188/414 566/1140/381 565/1138/379 -f 566/1140/381 594/1188/414 595/1189/415 -f 595/1189/415 567/1142/383 566/1140/381 -f 567/1190/383 595/1191/415 596/1192/416 -f 596/1193/416 568/1144/385 567/1142/383 -f 568/1194/385 596/1192/416 597/1195/417 -f 597/1196/417 569/1146/387 568/1144/385 -f 569/1197/387 597/1198/417 598/1199/418 -f 598/1199/418 570/1200/389 569/1197/387 -f 570/1200/389 598/1199/418 571/1153/391 -f 571/1153/391 543/1152/336 570/1200/389 -f 571/1201/391 599/1202/419 600/1203/420 -f 600/1203/420 572/1204/392 571/1201/391 -f 572/1204/392 600/1203/420 601/1205/421 -f 601/1205/421 573/1206/393 572/1204/392 -f 573/1206/393 601/1205/421 602/1207/422 -f 602/1207/422 574/1208/394 573/1206/393 -f 574/1208/394 602/1207/422 603/1209/423 -f 603/1209/423 575/1210/395 574/1208/394 -f 575/1211/395 603/1212/423 604/1213/424 -f 604/1213/424 576/1161/396 575/1211/395 -f 576/1161/396 604/1213/424 605/1214/425 -f 605/1214/425 577/1165/397 576/1161/396 -f 577/1165/397 605/1214/425 606/1215/426 -f 606/1215/426 578/1166/398 577/1165/397 -f 578/1166/398 606/1215/426 607/1216/427 -f 607/1216/427 579/1167/399 578/1166/398 -f 579/1167/399 607/1216/427 608/1217/428 -f 608/1217/428 580/1168/400 579/1167/399 -f 580/1168/400 608/1217/428 609/1218/429 -f 609/1218/429 581/1169/401 580/1168/400 -f 581/1169/401 609/1218/429 610/1219/430 -f 610/1219/430 582/1170/402 581/1169/401 -f 582/1170/402 610/1219/430 611/1220/431 -f 611/1220/431 583/1173/403 582/1170/402 -f 583/1221/403 611/1222/431 612/1223/432 -f 612/1223/432 584/1224/404 583/1221/403 -f 584/1224/404 612/1223/432 613/1225/433 -f 613/1225/433 585/1226/405 584/1224/404 -f 585/1226/405 613/1225/433 614/1227/434 -f 614/1227/434 586/1228/406 585/1226/405 -f 586/1228/406 614/1227/434 615/1229/435 -f 615/1229/435 587/1230/407 586/1228/406 -f 587/1230/407 615/1229/435 616/1231/436 -f 616/1231/436 588/1232/408 587/1230/407 -f 588/1232/408 616/1231/436 617/1233/437 -f 617/1233/437 589/1234/409 588/1232/408 -f 589/1235/409 617/1236/437 618/1237/438 -f 618/1237/438 590/1184/410 589/1235/409 -f 590/1184/410 618/1237/438 619/1238/439 -f 619/1238/439 591/1185/411 590/1184/410 -f 591/1185/411 619/1238/439 620/1239/440 -f 620/1239/440 592/1186/412 591/1185/411 -f 592/1186/412 620/1239/440 621/1240/441 -f 621/1240/441 593/1187/413 592/1186/412 -f 593/1187/413 621/1240/441 622/1241/442 -f 622/1241/442 594/1188/414 593/1187/413 -f 594/1188/414 622/1241/442 623/1242/443 -f 623/1242/443 595/1189/415 594/1188/414 -f 595/1189/415 623/1242/443 624/1243/444 -f 624/1243/444 596/1193/416 595/1189/415 -f 596/1193/416 624/1243/444 625/1244/445 -f 625/1244/445 597/1196/417 596/1193/416 -f 597/1245/417 625/1246/445 626/1247/446 -f 626/1247/446 598/1248/418 597/1245/417 -f 598/1248/418 626/1247/446 599/1202/419 -f 599/1202/419 571/1201/391 598/1248/418 -f 599/1202/419 627/1249/447 628/1250/448 -f 628/1250/448 600/1203/420 599/1202/419 -f 600/1203/420 628/1250/448 629/1251/449 -f 629/1251/449 601/1205/421 600/1203/420 -f 601/1205/421 629/1251/449 630/1252/450 -f 630/1252/450 602/1207/422 601/1205/421 -f 602/1207/422 630/1252/450 631/1253/451 -f 631/1253/451 603/1209/423 602/1207/422 -f 603/1212/423 631/1254/451 632/1255/452 -f 632/1255/452 604/1213/424 603/1212/423 -f 604/1213/424 632/1255/452 633/1256/453 -f 633/1256/453 605/1214/425 604/1213/424 -f 605/1214/425 633/1256/453 634/1257/454 -f 634/1257/454 606/1215/426 605/1214/425 -f 606/1215/426 634/1257/454 635/1258/455 -f 635/1258/455 607/1216/427 606/1215/426 -f 607/1216/427 635/1258/455 636/1259/456 -f 636/1259/456 608/1217/428 607/1216/427 -f 608/1217/428 636/1259/456 637/1260/457 -f 637/1260/457 609/1218/429 608/1217/428 -f 609/1218/429 637/1260/457 638/1261/458 -f 638/1261/458 610/1219/430 609/1218/429 -f 610/1219/430 638/1261/458 639/1262/459 -f 639/1262/459 611/1220/431 610/1219/430 -f 611/1222/431 639/1263/459 640/1264/460 -f 640/1264/460 612/1223/432 611/1222/431 -f 612/1223/432 640/1264/460 641/1265/461 -f 641/1265/461 613/1225/433 612/1223/432 -f 613/1225/433 641/1265/461 642/1266/462 -f 642/1266/462 614/1227/434 613/1225/433 -f 614/1227/434 642/1266/462 643/1267/463 -f 643/1267/463 615/1229/435 614/1227/434 -f 615/1229/435 643/1267/463 644/1268/464 -f 644/1268/464 616/1231/436 615/1229/435 -f 616/1231/436 644/1268/464 645/1269/465 -f 645/1269/465 617/1233/437 616/1231/436 -f 617/1236/437 645/1270/465 646/1271/466 -f 646/1271/466 618/1237/438 617/1236/437 -f 618/1237/438 646/1271/466 647/1272/467 -f 647/1272/467 619/1238/439 618/1237/438 -f 619/1238/439 647/1272/467 648/1273/468 -f 648/1273/468 620/1239/440 619/1238/439 -f 620/1239/440 648/1273/468 649/1274/469 -f 649/1274/469 621/1240/441 620/1239/440 -f 621/1240/441 649/1274/469 650/1275/470 -f 650/1275/470 622/1241/442 621/1240/441 -f 622/1241/442 650/1275/470 651/1276/471 -f 651/1276/471 623/1242/443 622/1241/442 -f 623/1242/443 651/1276/471 652/1277/472 -f 652/1277/472 624/1243/444 623/1242/443 -f 624/1243/444 652/1277/472 653/1278/473 -f 653/1278/473 625/1244/445 624/1243/444 -f 625/1246/445 653/1279/473 654/1280/474 -f 654/1280/474 626/1247/446 625/1246/445 -f 626/1247/446 654/1280/474 627/1249/447 -f 627/1249/447 599/1202/419 626/1247/446 -f 627/1281/447 655/1282/475 656/1283/476 -f 656/1283/476 628/1284/448 627/1281/447 -f 628/1284/448 656/1283/476 657/1285/477 -f 657/1285/477 629/1286/449 628/1284/448 -f 629/1286/449 657/1285/477 658/1287/478 -f 658/1287/478 630/1288/450 629/1286/449 -f 630/1288/450 658/1287/478 659/1289/479 -f 659/1289/479 631/1290/451 630/1288/450 -f 631/1254/451 659/1291/479 660/1292/480 -f 660/1293/480 632/1294/452 631/1295/451 -f 632/1255/452 660/1292/480 661/1296/481 -f 661/1296/481 633/1256/453 632/1255/452 -f 633/1256/453 661/1296/481 662/1297/482 -f 662/1297/482 634/1257/454 633/1256/453 -f 634/1257/454 662/1297/482 663/1298/483 -f 663/1298/483 635/1258/455 634/1257/454 -f 635/1258/455 663/1298/483 664/1299/484 -f 664/1299/484 636/1259/456 635/1258/455 -f 636/1259/456 664/1299/484 665/1300/485 -f 665/1300/485 637/1260/457 636/1259/456 -f 637/1260/457 665/1300/485 666/1301/486 -f 666/1301/486 638/1261/458 637/1260/457 -f 638/1261/458 666/1301/486 667/1302/487 -f 667/1302/487 639/1262/459 638/1261/458 -f 639/1303/459 667/1304/487 668/1305/488 -f 668/1305/488 640/1306/460 639/1303/459 -f 640/1306/460 668/1305/488 669/1307/489 -f 669/1307/489 641/1308/461 640/1306/460 -f 641/1308/461 669/1307/489 670/1309/490 -f 670/1309/490 642/1310/462 641/1308/461 -f 642/1310/462 670/1309/490 671/1311/491 -f 671/1311/491 643/1312/463 642/1310/462 -f 643/1312/463 671/1311/491 672/1313/492 -f 672/1313/492 644/1314/464 643/1312/463 -f 644/1314/464 672/1313/492 673/1315/493 -f 673/1315/493 645/1316/465 644/1314/464 -f 645/1270/465 673/1317/493 674/1318/494 -f 674/1318/494 646/1271/466 645/1270/465 -f 646/1271/466 674/1318/494 675/1319/495 -f 675/1319/495 647/1272/467 646/1271/466 -f 647/1272/467 675/1319/495 676/1320/496 -f 676/1320/496 648/1273/468 647/1272/467 -f 648/1273/468 676/1320/496 677/1321/497 -f 677/1321/497 649/1274/469 648/1273/468 -f 649/1274/469 677/1321/497 678/1322/498 -f 678/1322/498 650/1275/470 649/1274/469 -f 650/1275/470 678/1322/498 679/1323/499 -f 679/1323/499 651/1276/471 650/1275/470 -f 651/1276/471 679/1323/499 680/1324/500 -f 680/1324/500 652/1277/472 651/1276/471 -f 652/1277/472 680/1324/500 681/1325/501 -f 681/1326/501 653/1327/473 652/1328/472 -f 653/1327/473 681/1326/501 682/1329/502 -f 682/1329/502 654/1330/474 653/1327/473 -f 654/1330/474 682/1329/502 655/1282/475 -f 655/1282/475 627/1281/447 654/1330/474 -f 655/1282/475 534/1331/503 535/1332/504 -f 535/1332/504 656/1283/476 655/1282/475 -f 656/1283/476 535/1332/504 536/1333/505 -f 536/1333/505 657/1285/477 656/1283/476 -f 657/1285/477 536/1333/505 537/1334/506 -f 537/1334/506 658/1287/478 657/1285/477 -f 658/1287/478 537/1334/506 538/1335/507 -f 538/1335/507 659/1289/479 658/1287/478 -f 659/1291/479 538/1336/507 540/1337/508 -f 540/1337/508 660/1292/480 659/1291/479 -f 660/1292/480 540/1337/508 542/1338/509 -f 542/1338/509 661/1296/481 660/1292/480 -f 661/1296/481 542/1338/509 517/1339/510 -f 517/1339/510 662/1297/482 661/1296/481 -f 662/1297/482 517/1339/510 516/1340/511 -f 516/1340/511 663/1298/483 662/1297/482 -f 663/1298/483 516/1340/511 515/1341/512 -f 515/1341/512 664/1299/484 663/1298/483 -f 664/1299/484 515/1341/512 541/1342/513 -f 541/1342/513 665/1300/485 664/1299/484 -f 665/1300/485 541/1342/513 539/1343/514 -f 539/1343/514 666/1301/486 665/1300/485 -f 666/1301/486 539/1343/514 520/1344/515 -f 520/1344/515 667/1302/487 666/1301/486 -f 667/1304/487 520/1345/515 519/1346/516 -f 519/1346/516 668/1305/488 667/1304/487 -f 668/1305/488 519/1346/516 518/1347/517 -f 518/1347/517 669/1307/489 668/1305/488 -f 669/1307/489 518/1347/517 521/1348/518 -f 521/1348/518 670/1309/490 669/1307/489 -f 670/1309/490 521/1348/518 522/1349/519 -f 522/1349/519 671/1311/491 670/1309/490 -f 671/1311/491 522/1349/519 523/1350/520 -f 523/1350/520 672/1313/492 671/1311/491 -f 672/1313/492 523/1350/520 524/1351/521 -f 524/1351/521 673/1315/493 672/1313/492 -f 673/1317/493 524/1352/521 525/1353/522 -f 525/1353/522 674/1318/494 673/1317/493 -f 674/1318/494 525/1353/522 526/1354/523 -f 526/1354/523 675/1319/495 674/1318/494 -f 675/1319/495 526/1354/523 527/1355/524 -f 527/1355/524 676/1320/496 675/1319/495 -f 676/1320/496 527/1355/524 528/1356/525 -f 528/1356/525 677/1321/497 676/1320/496 -f 677/1321/497 528/1356/525 529/1357/526 -f 529/1357/526 678/1322/498 677/1321/497 -f 678/1322/498 529/1357/526 530/1358/527 -f 530/1358/527 679/1323/499 678/1322/498 -f 679/1323/499 530/1358/527 531/1359/528 -f 531/1359/528 680/1324/500 679/1323/499 -f 680/1324/500 531/1359/528 532/1360/529 -f 532/1360/529 681/1325/501 680/1324/500 -f 681/1326/501 532/1361/529 533/1362/530 -f 533/1362/530 682/1329/502 681/1326/501 -f 682/1329/502 533/1362/530 534/1331/503 -f 534/1331/503 655/1282/475 682/1329/502 -#s 1 -f 683/1363/1 684/1364/1 684/1364/1 -f 684/1364/1 683/1363/1 683/1363/1 -#s 3 -f 685/1365/1 683/1363/1 683/1363/1 -f 683/1363/1 685/1365/1 685/1365/1 -#s 2 -f 686/1366/1 685/1365/1 685/1365/1 -f 685/1365/1 686/1366/1 686/1366/1 -f 687/1367/1 686/1366/1 686/1366/1 -f 686/1366/1 687/1367/1 687/1367/1 -f 688/1368/1 687/1367/1 687/1367/1 -f 687/1367/1 688/1368/1 688/1368/1 -f 689/1369/1 688/1368/1 688/1368/1 -f 688/1368/1 689/1369/1 689/1369/1 -f 690/1370/1 689/1369/1 689/1369/1 -f 689/1369/1 690/1370/1 690/1370/1 -f 691/1371/1 690/1370/1 690/1370/1 -f 690/1370/1 691/1371/1 691/1371/1 -f 692/971/1 691/1371/1 691/1371/1 -f 691/1371/1 692/971/1 692/971/1 -f 693/950/1 692/971/1 692/971/1 -f 692/971/1 693/950/1 693/950/1 -f 694/1372/1 693/950/1 693/950/1 -f 693/950/1 694/1372/1 694/1372/1 -f 695/1373/1 694/1372/1 694/1372/1 -f 694/1372/1 695/1373/1 695/1373/1 -f 696/1374/1 695/1373/1 695/1373/1 -f 695/1373/1 696/1374/1 696/1374/1 -f 697/1375/1 696/1374/1 696/1374/1 -f 696/1374/1 697/1375/1 697/1375/1 -f 698/1376/1 697/1375/1 697/1375/1 -f 697/1375/1 698/1376/1 698/1376/1 -f 699/1377/1 698/1376/1 698/1376/1 -f 698/1376/1 699/1377/1 699/1377/1 -f 700/1378/1 699/1377/1 699/1377/1 -f 699/1377/1 700/1378/1 700/1378/1 -f 701/1379/1 700/1378/1 700/1378/1 -f 700/1378/1 701/1379/1 701/1379/1 -f 702/1380/1 701/1379/1 701/1379/1 -f 701/1379/1 702/1380/1 702/1380/1 -f 703/1381/1 702/1380/1 702/1380/1 -f 702/1380/1 703/1381/1 703/1381/1 -f 704/1382/1 703/1381/1 703/1381/1 -f 703/1381/1 704/1382/1 704/1382/1 -f 705/1383/1 704/1382/1 704/1382/1 -f 704/1382/1 705/1383/1 705/1383/1 -f 706/1384/1 705/1383/1 705/1383/1 -f 705/1383/1 706/1384/1 706/1384/1 -f 707/1385/1 706/1384/1 706/1384/1 -f 706/1384/1 707/1385/1 707/1385/1 -f 708/1386/1 707/1385/1 707/1385/1 -f 707/1385/1 708/1386/1 708/1386/1 -f 709/1387/1 708/1386/1 708/1386/1 -f 708/1386/1 709/1387/1 709/1387/1 -f 710/1388/1 709/1387/1 709/1387/1 -f 709/1387/1 710/1388/1 710/1388/1 -#s 3 -f 684/1364/1 710/1388/1 710/1388/1 -f 710/1388/1 684/1364/1 684/1364/1 -#s 16 -f 711/1389/531 712/1390/531 713/1391/531 -f 711/1389/531 713/1391/531 714/1392/531 -f 711/1389/531 714/1392/531 715/1393/531 -f 711/1389/531 715/1393/531 716/1394/532 -f 711/1389/531 716/1394/532 717/1395/532 -f 711/1389/531 717/1395/532 718/1396/532 -f 711/1389/531 718/1396/532 719/1397/531 -f 711/1389/531 719/1397/531 720/1398/531 -f 711/1389/531 720/1398/531 721/1399/531 -f 711/1389/531 721/1399/531 722/1400/531 -f 711/1389/531 722/1400/531 723/1401/531 -f 711/1389/531 723/1401/531 724/1402/533 -f 711/1389/531 724/1402/533 725/1403/532 -f 711/1389/531 725/1403/532 726/1404/532 -f 711/1389/531 726/1404/532 727/1405/532 -f 711/1389/531 727/1405/532 728/1406/531 -f 711/1389/531 728/1406/531 729/1407/532 -f 711/1389/531 729/1407/532 730/1408/532 -f 711/1389/531 730/1408/532 731/1409/532 -f 732/1410/533 711/1389/531 731/1409/532 -f 732/1410/533 731/1409/532 733/1411/531 -f 734/1412/531 732/1410/533 733/1411/531 -f 734/1412/531 733/1411/531 735/1413/531 -f 734/1412/531 735/1413/531 736/1414/531 -f 737/1415/534 734/1412/531 736/1414/531 -f 737/1415/534 736/1414/531 738/1416/535 -f 703/1417/536 704/1418/536 705/1419/537 -f 698/1420/538 699/1421/539 700/1422/540 -f 697/1423/541 698/1420/538 700/1422/540 -f 696/1424/542 697/1423/541 700/1422/540 -f 695/1425/541 696/1424/542 700/1422/540 -f 694/1426/540 695/1425/541 700/1422/540 -f 693/1427/540 694/1426/540 700/1422/540 -f 692/1428/540 693/1427/540 700/1422/540 -f 691/1429/540 692/1428/540 700/1422/540 -f 690/1430/540 691/1429/540 700/1422/540 -f 689/1431/540 690/1430/540 700/1422/540 -f 688/1432/540 689/1431/540 700/1422/540 -f 687/1433/540 688/1432/540 700/1422/540 -f 686/1434/540 687/1433/540 700/1422/540 -f 685/1435/543 686/1434/540 700/1422/540 -f 683/1436/540 685/1435/543 700/1422/540 -f 684/1437/540 683/1436/540 700/1422/540 -f 710/1438/540 684/1437/540 700/1422/540 -f 709/1439/540 710/1438/540 700/1422/540 -f 708/1440/543 709/1439/540 700/1422/540 -f 708/1440/543 700/1422/540 701/1441/540 -f 707/1442/540 708/1440/543 701/1441/540 -f 707/1442/540 701/1441/540 702/1443/540 -f 706/1444/536 707/1442/540 702/1443/540 -f 705/1419/537 706/1444/536 702/1443/540 -f 703/1417/536 705/1419/537 702/1443/540 -#s 4 -f 683/1445/544 684/1446/545 739/1447/546 -f 739/1447/546 740/1448/547 683/1445/544 -f 684/1446/545 710/1449/548 741/1450/549 -f 741/1450/549 739/1447/546 684/1446/545 -f 710/1449/548 709/1451/550 742/1452/551 -f 742/1452/551 741/1450/549 710/1449/548 -f 709/1451/550 708/1453/552 743/1454/553 -f 743/1454/553 742/1452/551 709/1451/550 -f 708/1455/552 707/1456/554 744/1457/555 -f 744/1457/555 743/1458/553 708/1455/552 -f 707/1456/554 706/1459/556 745/1460/557 -f 745/1460/557 744/1457/555 707/1456/554 -f 706/1459/556 705/1461/558 746/1462/559 -f 746/1462/559 745/1460/557 706/1459/556 -f 705/1461/558 704/1463/560 747/1464/561 -f 747/1464/561 746/1462/559 705/1461/558 -f 704/1463/560 703/1465/562 748/1466/563 -f 748/1466/563 747/1464/561 704/1463/560 -f 703/1465/562 702/1467/564 749/1468/565 -f 749/1468/565 748/1466/563 703/1465/562 -f 702/1467/564 701/1469/566 750/1470/567 -f 750/1470/567 749/1468/565 702/1467/564 -f 701/1469/566 700/1471/568 751/1472/569 -f 751/1472/569 750/1470/567 701/1469/566 -f 700/1473/568 699/1474/570 752/1475/571 -f 752/1475/571 751/1476/569 700/1473/568 -f 699/1474/570 698/1477/572 753/1478/573 -f 753/1478/573 752/1475/571 699/1474/570 -f 698/1477/572 697/1479/574 754/1480/575 -f 754/1480/575 753/1478/573 698/1477/572 -f 697/1479/574 696/1481/576 755/1482/577 -f 755/1482/577 754/1480/575 697/1479/574 -f 696/1481/576 695/1483/578 756/1484/579 -f 756/1484/579 755/1482/577 696/1481/576 -f 695/1483/578 694/1485/580 757/1486/581 -f 757/1486/581 756/1484/579 695/1483/578 -f 694/1487/580 693/1488/582 758/1489/583 -f 758/1489/583 757/1490/581 694/1487/580 -f 693/1488/582 692/1491/584 759/1492/585 -f 759/1492/585 758/1489/583 693/1488/582 -f 692/1491/584 691/1493/586 760/1494/587 -f 760/1494/587 759/1492/585 692/1491/584 -f 691/1493/586 690/1495/588 761/1496/589 -f 761/1496/589 760/1494/587 691/1493/586 -f 690/1495/588 689/1497/590 762/1498/591 -f 762/1498/591 761/1496/589 690/1495/588 -f 689/1497/590 688/1499/592 763/1500/593 -f 763/1500/593 762/1498/591 689/1497/590 -f 688/1499/592 687/1501/594 764/1502/595 -f 764/1502/595 763/1500/593 688/1499/592 -f 687/1501/594 686/1503/596 765/1504/597 -f 765/1504/597 764/1502/595 687/1501/594 -f 686/1505/596 685/1506/598 766/1507/599 -f 766/1507/599 765/1508/597 686/1505/596 -f 685/1506/598 683/1445/544 740/1448/547 -f 740/1448/547 766/1507/599 685/1506/598 -f 740/1509/547 739/1510/546 767/1511/600 -f 767/1512/600 768/1513/601 740/1448/547 -f 739/1447/546 741/1450/549 769/1514/602 -f 769/1515/602 767/1511/600 739/1510/546 -f 741/1450/549 742/1452/551 770/1516/603 -f 770/1516/603 769/1514/602 741/1450/549 -f 742/1452/551 743/1454/553 771/1517/604 -f 771/1517/604 770/1516/603 742/1452/551 -f 743/1458/553 744/1457/555 772/1518/605 -f 772/1519/605 771/1517/604 743/1454/553 -f 744/1457/555 745/1460/557 773/1520/606 -f 773/1521/606 772/1522/605 744/1523/555 -f 745/1460/557 746/1462/559 774/1524/607 -f 774/1524/607 773/1520/606 745/1460/557 -f 746/1462/559 747/1464/561 775/1525/608 -f 775/1525/608 774/1524/607 746/1462/559 -f 747/1464/561 748/1466/563 776/1526/609 -f 776/1526/609 775/1525/608 747/1464/561 -f 748/1466/563 749/1468/565 777/1527/610 -f 777/1527/610 776/1526/609 748/1466/563 -f 749/1468/565 750/1470/567 778/1528/611 -f 778/1528/611 777/1527/610 749/1468/565 -f 750/1470/567 751/1472/569 779/1529/612 -f 779/1530/612 778/1531/611 750/1532/567 -f 751/1476/569 752/1475/571 780/1533/613 -f 780/1533/613 779/1534/612 751/1476/569 -f 752/1475/571 753/1478/573 781/1535/614 -f 781/1535/614 780/1533/613 752/1475/571 -f 753/1478/573 754/1480/575 782/1536/615 -f 782/1536/615 781/1535/614 753/1478/573 -f 754/1480/575 755/1482/577 783/1537/616 -f 783/1537/616 782/1536/615 754/1480/575 -f 755/1482/577 756/1484/579 784/1538/617 -f 784/1538/617 783/1537/616 755/1482/577 -f 756/1484/579 757/1486/581 785/1539/618 -f 785/1539/618 784/1538/617 756/1484/579 -f 757/1490/581 758/1489/583 786/1540/619 -f 786/1541/619 785/1542/618 757/1543/581 -f 758/1489/583 759/1492/585 787/1544/620 -f 787/1544/620 786/1540/619 758/1489/583 -f 759/1492/585 760/1494/587 788/1545/621 -f 788/1545/621 787/1544/620 759/1492/585 -f 760/1494/587 761/1496/589 789/1546/622 -f 789/1546/622 788/1545/621 760/1494/587 -f 761/1496/589 762/1498/591 790/1547/623 -f 790/1547/623 789/1546/622 761/1496/589 -f 762/1498/591 763/1500/593 791/1548/624 -f 791/1548/624 790/1547/623 762/1498/591 -f 763/1500/593 764/1502/595 792/1549/625 -f 792/1550/625 791/1551/624 763/1552/593 -f 764/1502/595 765/1504/597 793/1553/626 -f 793/1554/626 792/1555/625 764/1556/595 -f 765/1557/597 766/1558/599 794/1559/627 -f 794/1559/627 793/1560/626 765/1557/597 -f 766/1507/599 740/1448/547 768/1513/601 -f 768/1513/601 794/1561/627 766/1507/599 -f 768/1562/601 767/1563/600 795/1564/628 -f 795/1564/628 796/1565/629 768/1562/601 -f 767/1563/600 769/1566/602 797/1567/630 -f 797/1567/630 795/1564/628 767/1563/600 -f 769/1566/602 770/1568/603 798/1569/631 -f 798/1569/631 797/1567/630 769/1566/602 -f 770/1568/603 771/1570/604 799/1571/632 -f 799/1571/632 798/1569/631 770/1568/603 -f 771/1572/604 772/1518/605 800/1573/633 -f 800/1573/633 799/1574/632 771/1572/604 -f 772/1518/605 773/1520/606 801/1575/634 -f 801/1575/634 800/1573/633 772/1518/605 -f 773/1520/606 774/1524/607 802/1576/635 -f 802/1576/635 801/1575/634 773/1520/606 -f 774/1524/607 775/1525/608 803/1577/636 -f 803/1577/636 802/1576/635 774/1524/607 -f 775/1525/608 776/1526/609 804/1578/637 -f 804/1578/637 803/1577/636 775/1525/608 -f 776/1526/609 777/1527/610 805/1579/638 -f 805/1579/638 804/1578/637 776/1526/609 -f 777/1527/610 778/1528/611 806/1580/639 -f 806/1580/639 805/1579/638 777/1527/610 -f 778/1528/611 779/1529/612 807/1581/640 -f 807/1581/640 806/1580/639 778/1528/611 -f 779/1582/612 780/1583/613 808/1584/641 -f 808/1584/641 807/1585/640 779/1582/612 -f 780/1583/613 781/1586/614 809/1587/642 -f 809/1587/642 808/1584/641 780/1583/613 -f 781/1586/614 782/1588/615 810/1589/643 -f 810/1589/643 809/1587/642 781/1586/614 -f 782/1588/615 783/1590/616 811/1591/644 -f 811/1591/644 810/1589/643 782/1588/615 -f 783/1590/616 784/1592/617 812/1593/645 -f 812/1593/645 811/1591/644 783/1590/616 -f 784/1592/617 785/1594/618 813/1595/646 -f 813/1595/646 812/1593/645 784/1592/617 -f 785/1596/618 786/1540/619 814/1597/647 -f 814/1597/647 813/1598/646 785/1596/618 -f 786/1540/619 787/1544/620 815/1599/648 -f 815/1599/648 814/1597/647 786/1540/619 -f 787/1544/620 788/1545/621 816/1600/649 -f 816/1600/649 815/1599/648 787/1544/620 -f 788/1545/621 789/1546/622 817/1601/650 -f 817/1601/650 816/1600/649 788/1545/621 -f 789/1546/622 790/1547/623 818/1602/651 -f 818/1602/651 817/1601/650 789/1546/622 -f 790/1547/623 791/1548/624 819/1603/652 -f 819/1603/652 818/1602/651 790/1547/623 -f 791/1548/624 792/1549/625 820/1604/653 -f 820/1604/653 819/1603/652 791/1548/624 -f 792/1549/625 793/1553/626 821/1605/654 -f 821/1605/654 820/1604/653 792/1549/625 -f 793/1606/626 794/1607/627 822/1608/655 -f 822/1608/655 821/1609/654 793/1606/626 -f 794/1607/627 768/1562/601 796/1565/629 -f 796/1565/629 822/1608/655 794/1607/627 -f 796/1565/629 795/1564/628 823/1610/656 -f 823/1610/656 824/1611/657 796/1565/629 -f 795/1564/628 797/1567/630 825/1612/658 -f 825/1612/658 823/1610/656 795/1564/628 -f 797/1567/630 798/1569/631 826/1613/659 -f 826/1613/659 825/1612/658 797/1567/630 -f 798/1569/631 799/1571/632 827/1614/660 -f 827/1614/660 826/1613/659 798/1569/631 -f 799/1574/632 800/1573/633 828/1615/661 -f 828/1615/661 827/1616/660 799/1574/632 -f 800/1573/633 801/1575/634 829/1617/662 -f 829/1617/662 828/1615/661 800/1573/633 -f 801/1575/634 802/1576/635 830/1618/663 -f 830/1618/663 829/1617/662 801/1575/634 -f 802/1576/635 803/1577/636 831/1619/664 -f 831/1619/664 830/1618/663 802/1576/635 -f 803/1577/636 804/1578/637 832/1620/665 -f 832/1620/665 831/1619/664 803/1577/636 -f 804/1578/637 805/1579/638 833/1621/666 -f 833/1621/666 832/1620/665 804/1578/637 -f 805/1579/638 806/1580/639 834/1622/667 -f 834/1622/667 833/1621/666 805/1579/638 -f 806/1580/639 807/1581/640 835/1623/668 -f 835/1623/668 834/1622/667 806/1580/639 -f 807/1585/640 808/1584/641 836/1624/669 -f 836/1624/669 835/1625/668 807/1585/640 -f 808/1584/641 809/1587/642 837/1626/670 -f 837/1626/670 836/1624/669 808/1584/641 -f 809/1587/642 810/1589/643 838/1627/671 -f 838/1627/671 837/1626/670 809/1587/642 -f 810/1589/643 811/1591/644 839/1628/672 -f 839/1628/672 838/1627/671 810/1589/643 -f 811/1591/644 812/1593/645 840/1629/673 -f 840/1629/673 839/1628/672 811/1591/644 -f 812/1593/645 813/1595/646 841/1630/674 -f 841/1630/674 840/1629/673 812/1593/645 -f 813/1598/646 814/1597/647 842/1631/675 -f 842/1631/675 841/1632/674 813/1598/646 -f 814/1597/647 815/1599/648 843/1633/676 -f 843/1633/676 842/1631/675 814/1597/647 -f 815/1599/648 816/1600/649 844/1634/677 -f 844/1634/677 843/1633/676 815/1599/648 -f 816/1600/649 817/1601/650 845/1635/678 -f 845/1635/678 844/1634/677 816/1600/649 -f 817/1601/650 818/1602/651 846/1636/679 -f 846/1636/679 845/1635/678 817/1601/650 -f 818/1602/651 819/1603/652 847/1637/680 -f 847/1637/680 846/1636/679 818/1602/651 -f 819/1603/652 820/1604/653 848/1638/681 -f 848/1638/681 847/1637/680 819/1603/652 -f 820/1604/653 821/1605/654 849/1639/682 -f 849/1639/682 848/1638/681 820/1604/653 -f 821/1609/654 822/1608/655 850/1640/683 -f 850/1640/683 849/1641/682 821/1609/654 -f 822/1608/655 796/1565/629 824/1611/657 -f 824/1611/657 850/1640/683 822/1608/655 -f 824/1642/657 823/1643/656 851/1644/684 -f 851/1644/684 852/1645/685 824/1642/657 -f 823/1643/656 825/1646/658 853/1647/686 -f 853/1647/686 851/1644/684 823/1643/656 -f 825/1646/658 826/1648/659 854/1649/687 -f 854/1649/687 853/1647/686 825/1646/658 -f 826/1648/659 827/1650/660 855/1651/688 -f 855/1651/688 854/1649/687 826/1648/659 -f 827/1652/660 828/1653/661 856/658/689 -f 856/1654/689 855/1655/688 827/1616/660 -f 828/1615/661 829/1617/662 857/1656/690 -f 857/1656/690 856/1654/689 828/1615/661 -f 829/1617/662 830/1618/663 858/1657/691 -f 858/1657/691 857/1656/690 829/1617/662 -f 830/1618/663 831/1619/664 859/1658/692 -f 859/1658/692 858/1657/691 830/1618/663 -f 831/1619/664 832/1620/665 860/1659/693 -f 860/1659/693 859/1658/692 831/1619/664 -f 832/1620/665 833/1621/666 861/1660/694 -f 861/1660/694 860/1659/693 832/1620/665 -f 833/1621/666 834/1622/667 862/1661/695 -f 862/1661/695 861/1660/694 833/1621/666 -f 834/1622/667 835/1623/668 863/1662/696 -f 863/1662/696 862/1661/695 834/1622/667 -f 835/1663/668 836/1664/669 864/1665/697 -f 864/1665/697 863/1666/696 835/1663/668 -f 836/1664/669 837/1667/670 865/1668/698 -f 865/1668/698 864/1665/697 836/1664/669 -f 837/1667/670 838/1669/671 866/1670/699 -f 866/1670/699 865/1668/698 837/1667/670 -f 838/1669/671 839/1671/672 867/1672/700 -f 867/1672/700 866/1670/699 838/1669/671 -f 839/1671/672 840/475/673 868/1673/701 -f 868/1673/701 867/1672/700 839/1671/672 -f 840/475/673 841/1674/674 869/1675/702 -f 869/1675/702 868/1673/701 840/475/673 -f 841/1632/674 842/1631/675 870/1676/703 -f 870/1676/703 869/1677/702 841/1632/674 -f 842/1631/675 843/1633/676 871/1678/704 -f 871/1678/704 870/1676/703 842/1631/675 -f 843/1633/676 844/1634/677 872/1679/705 -f 872/1679/705 871/1678/704 843/1633/676 -f 844/1634/677 845/1635/678 873/1680/706 -f 873/1680/706 872/1679/705 844/1634/677 -f 845/1635/678 846/1636/679 874/1681/707 -f 874/1681/707 873/1680/706 845/1635/678 -f 846/1636/679 847/1637/680 875/1682/708 -f 875/1682/708 874/1681/707 846/1636/679 -f 847/1637/680 848/1638/681 876/1683/709 -f 876/1683/709 875/1682/708 847/1637/680 -f 848/1684/681 849/1685/682 877/1686/710 -f 877/1687/710 876/1683/709 848/1638/681 -f 849/1685/682 850/1688/683 878/1689/711 -f 878/1689/711 877/1686/710 849/1685/682 -f 850/1688/683 824/1642/657 852/1645/685 -f 852/1645/685 878/1689/711 850/1688/683 -f 852/1645/685 851/1644/684 728/1690/712 -f 728/1690/712 727/1691/713 852/1645/685 -f 851/1644/684 853/1647/686 729/1692/714 -f 729/1692/714 728/1690/712 851/1644/684 -f 853/1647/686 854/1649/687 730/1693/715 -f 730/1693/715 729/1692/714 853/1647/686 -f 854/1649/687 855/1651/688 731/1694/716 -f 731/1694/716 730/1693/715 854/1649/687 -f 855/1655/688 856/1654/689 733/1695/717 -f 733/1695/717 731/1696/716 855/1655/688 -f 856/1654/689 857/1656/690 735/1697/718 -f 735/1697/718 733/1695/717 856/1654/689 -f 857/1656/690 858/1657/691 736/1698/719 -f 736/1698/719 735/1697/718 857/1656/690 -f 858/1657/691 859/1658/692 738/1699/720 -f 738/1699/720 736/1698/719 858/1657/691 -f 859/1658/692 860/1659/693 737/1700/721 -f 737/1700/721 738/1699/720 859/1658/692 -f 860/1659/693 861/1660/694 734/1701/722 -f 734/1701/722 737/1700/721 860/1659/693 -f 861/1660/694 862/1661/695 732/1702/723 -f 732/1702/723 734/1701/722 861/1660/694 -f 862/1661/695 863/1662/696 711/1703/724 -f 711/1703/724 732/1702/723 862/1661/695 -f 863/1666/696 864/1665/697 712/1704/725 -f 712/1704/725 711/1705/724 863/1666/696 -f 864/1665/697 865/1668/698 713/1706/726 -f 713/1706/726 712/1704/725 864/1665/697 -f 865/1668/698 866/1670/699 714/1707/727 -f 714/1707/727 713/1706/726 865/1668/698 -f 866/1670/699 867/1672/700 715/1708/728 -f 715/1708/728 714/1707/727 866/1670/699 -f 867/1672/700 868/1673/701 716/1709/729 -f 716/1709/729 715/1708/728 867/1672/700 -f 868/1673/701 869/1675/702 717/1710/730 -f 717/1710/730 716/1709/729 868/1673/701 -f 869/1677/702 870/1676/703 718/1711/731 -f 718/1711/731 717/1712/730 869/1677/702 -f 870/1676/703 871/1678/704 719/1713/732 -f 719/1713/732 718/1711/731 870/1676/703 -f 871/1678/704 872/1679/705 720/1714/733 -f 720/1714/733 719/1713/732 871/1678/704 -f 872/1679/705 873/1680/706 721/1715/734 -f 721/1715/734 720/1714/733 872/1679/705 -f 873/1680/706 874/1681/707 722/1716/735 -f 722/1716/735 721/1715/734 873/1680/706 -f 874/1681/707 875/1682/708 723/1717/736 -f 723/1717/736 722/1716/735 874/1681/707 -f 875/1682/708 876/1683/709 724/1718/737 -f 724/1718/737 723/1717/736 875/1682/708 -f 876/1683/709 877/1687/710 725/1719/738 -f 725/1719/738 724/1718/737 876/1683/709 -f 877/1686/710 878/1689/711 726/1720/739 -f 726/1720/739 725/1721/738 877/1686/710 -f 878/1689/711 852/1645/685 727/1691/713 -f 727/1691/713 726/1720/739 878/1689/711 -# 1904 faces \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/block/hopcropblock.json b/src/main/resources/assets/bbs_mod/models/block/hopcropblock.json deleted file mode 100644 index b0b9d92..0000000 --- a/src/main/resources/assets/bbs_mod/models/block/hopcropblock.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "ambientocclusion": false, - "textures": { - "particle": "#crop" - }, - "elements": [ - { "from": [ 4, -1, 0 ], - "to": [ 4, 15, 16 ], - "shade": false, - "faces": { - "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, - "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } - } - }, - { "from": [ 12, -1, 0 ], - "to": [ 12, 15, 16 ], - "shade": false, - "faces": { - "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, - "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } - } - }, - { "from": [ 0, -1, 4 ], - "to": [ 16, 15, 4 ], - "shade": false, - "faces": { - "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, - "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } - } - }, - { "from": [ 0, -1, 12 ], - "to": [ 16, 15, 12 ], - "shade": false, - "faces": { - "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, - "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/block/pelleter.json b/src/main/resources/assets/bbs_mod/models/block/pelleter.json deleted file mode 100644 index aebafbc..0000000 --- a/src/main/resources/assets/bbs_mod/models/block/pelleter.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "bbs_mod:block/pelleter" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/block/pelleter.mtl b/src/main/resources/assets/bbs_mod/models/block/pelleter.mtl deleted file mode 100755 index c1d442f..0000000 --- a/src/main/resources/assets/bbs_mod/models/block/pelleter.mtl +++ /dev/null @@ -1,16 +0,0 @@ -# 3ds Max Wavefront OBJ Exporter v0.97b - (c)2007 guruware -# File Created: 23.05.2017 10:43:12 - -newmtl 11___Default -# Ns 10.0000 -# Ni 1.5000 -# d 1.0000 -# Tr 0.0000 -# Tf 1.0000 1.0000 1.0000 -# illum 2 -# Ka 0.5882 0.5882 0.5882 -# Kd 0.5882 0.5882 0.5882 -# Ks 0.0000 0.0000 0.0000 -# Ke 0.0000 0.0000 0.0000 -map_Ka bbs_mod:block/pelleter -map_Kd bbs_mod:block/pelleter diff --git a/src/main/resources/assets/bbs_mod/models/block/pelleter.obj b/src/main/resources/assets/bbs_mod/models/block/pelleter.obj deleted file mode 100755 index 115f1d7..0000000 --- a/src/main/resources/assets/bbs_mod/models/block/pelleter.obj +++ /dev/null @@ -1,4253 +0,0 @@ -# 3ds Max Wavefront OBJ Exporter v0.97b - (c)2007 guruware -# File Created: 23.05.2017 11:18:25 - -mtllib pelleter.mtl - -# -o pelleter -# - -v 0.6780 0.3626 0.5921 -v 0.7178 0.4826 0.5921 -v 0.7094 0.4826 0.6402 -v 0.6719 0.3626 0.6266 -v 0.7577 0.6026 0.5921 -v 0.7468 0.6026 0.6538 -v 0.7975 0.7226 0.5921 -v 0.7842 0.7226 0.6674 -v 0.8373 0.8426 0.5921 -v 0.8216 0.8426 0.6811 -v 0.8771 0.9626 0.5921 -v 0.8590 0.9626 0.6947 -v 0.8671 0.9626 0.5921 -v 0.8496 0.9626 0.6913 -v 0.8286 0.8426 0.5921 -v 0.8135 0.8426 0.6781 -v 0.7901 0.7226 0.5921 -v 0.7773 0.7226 0.6649 -v 0.7516 0.6026 0.5921 -v 0.7411 0.6026 0.6518 -v 0.7132 0.4826 0.5921 -v 0.7049 0.4826 0.6386 -v 0.6747 0.3626 0.5921 -v 0.6688 0.3626 0.6254 -v 0.6849 0.4826 0.6825 -v 0.6544 0.3626 0.6569 -v 0.7154 0.6026 0.7081 -v 0.7459 0.7226 0.7337 -v 0.7764 0.8426 0.7593 -v 0.8069 0.9626 0.7849 -v 0.7993 0.9626 0.7785 -v 0.7698 0.8426 0.7537 -v 0.7403 0.7226 0.7290 -v 0.7108 0.6026 0.7043 -v 0.6813 0.4826 0.6795 -v 0.6518 0.3626 0.6548 -v 0.6475 0.4826 0.7139 -v 0.6276 0.3626 0.6794 -v 0.6674 0.6026 0.7484 -v 0.6873 0.7226 0.7829 -v 0.7072 0.8426 0.8174 -v 0.7271 0.9626 0.8519 -v 0.7221 0.9626 0.8432 -v 0.7029 0.8426 0.8099 -v 0.6836 0.7226 0.7765 -v 0.6644 0.6026 0.7432 -v 0.6451 0.4826 0.7099 -v 0.6259 0.3626 0.6765 -v 0.6016 0.4826 0.7306 -v 0.5947 0.3626 0.6914 -v 0.6085 0.6026 0.7699 -v 0.6154 0.7226 0.8091 -v 0.6223 0.8426 0.8483 -v 0.6292 0.9626 0.8875 -v 0.6275 0.9626 0.8777 -v 0.6208 0.8426 0.8398 -v 0.6141 0.7226 0.8019 -v 0.6074 0.6026 0.7639 -v 0.6008 0.4826 0.7260 -v 0.5941 0.3626 0.6881 -v 0.5527 0.4826 0.7306 -v 0.5596 0.3626 0.6914 -v 0.5458 0.6026 0.7699 -v 0.5389 0.7226 0.8091 -v 0.5320 0.8426 0.8483 -v 0.5250 0.9626 0.8875 -v 0.5268 0.9626 0.8777 -v 0.5335 0.8426 0.8398 -v 0.5401 0.7226 0.8019 -v 0.5468 0.6026 0.7639 -v 0.5535 0.4826 0.7260 -v 0.5602 0.3626 0.6881 -v 0.5068 0.4826 0.7139 -v 0.5267 0.3626 0.6794 -v 0.4869 0.6026 0.7484 -v 0.4670 0.7226 0.7829 -v 0.4470 0.8426 0.8174 -v 0.4271 0.9626 0.8519 -v 0.4321 0.9626 0.8432 -v 0.4514 0.8426 0.8099 -v 0.4706 0.7226 0.7765 -v 0.4899 0.6026 0.7432 -v 0.5091 0.4826 0.7099 -v 0.5284 0.3626 0.6765 -v 0.4693 0.4826 0.6825 -v 0.4999 0.3626 0.6569 -v 0.4388 0.6026 0.7081 -v 0.4083 0.7226 0.7337 -v 0.3778 0.8426 0.7593 -v 0.3473 0.9626 0.7849 -v 0.3550 0.9626 0.7785 -v 0.3845 0.8426 0.7537 -v 0.4140 0.7226 0.7290 -v 0.4434 0.6026 0.7043 -v 0.4729 0.4826 0.6795 -v 0.5024 0.3626 0.6548 -v 0.4449 0.4826 0.6402 -v 0.4823 0.3626 0.6266 -v 0.4075 0.6026 0.6538 -v 0.3701 0.7226 0.6674 -v 0.3326 0.8426 0.6811 -v 0.2952 0.9626 0.6947 -v 0.3046 0.9626 0.6913 -v 0.3408 0.8426 0.6781 -v 0.3770 0.7226 0.6649 -v 0.4131 0.6026 0.6518 -v 0.4493 0.4826 0.6386 -v 0.4855 0.3626 0.6254 -v 0.4364 0.4826 0.5921 -v 0.4762 0.3626 0.5921 -v 0.3966 0.6026 0.5921 -v 0.3568 0.7226 0.5921 -v 0.3170 0.8426 0.5921 -v 0.2771 0.9626 0.5921 -v 0.2871 0.9626 0.5921 -v 0.3256 0.8426 0.5921 -v 0.3641 0.7226 0.5921 -v 0.4026 0.6026 0.5921 -v 0.4411 0.4826 0.5921 -v 0.4796 0.3626 0.5921 -v 0.4449 0.4826 0.5440 -v 0.4823 0.3626 0.5576 -v 0.4075 0.6026 0.5303 -v 0.3701 0.7226 0.5167 -v 0.3326 0.8426 0.5031 -v 0.2952 0.9626 0.4895 -v 0.3046 0.9626 0.4929 -v 0.3408 0.8426 0.5061 -v 0.3770 0.7226 0.5192 -v 0.4131 0.6026 0.5324 -v 0.4493 0.4826 0.5456 -v 0.4855 0.3626 0.5587 -v 0.4693 0.4826 0.5016 -v 0.4999 0.3626 0.5272 -v 0.4388 0.6026 0.4760 -v 0.4083 0.7226 0.4504 -v 0.3778 0.8426 0.4248 -v 0.3473 0.9626 0.3992 -v 0.3550 0.9626 0.4057 -v 0.3845 0.8426 0.4304 -v 0.4140 0.7226 0.4552 -v 0.4434 0.6026 0.4799 -v 0.4729 0.4826 0.5046 -v 0.5024 0.3626 0.5294 -v 0.5068 0.4826 0.4702 -v 0.5267 0.3626 0.5047 -v 0.4869 0.6026 0.4357 -v 0.4670 0.7226 0.4012 -v 0.4470 0.8426 0.3668 -v 0.4271 0.9626 0.3323 -v 0.4321 0.9626 0.3409 -v 0.4514 0.8426 0.3743 -v 0.4706 0.7226 0.4076 -v 0.4899 0.6026 0.4409 -v 0.5091 0.4826 0.4743 -v 0.5284 0.3626 0.5076 -v 0.5527 0.4826 0.4535 -v 0.5596 0.3626 0.4927 -v 0.5458 0.6026 0.4143 -v 0.5389 0.7226 0.3751 -v 0.5320 0.8426 0.3359 -v 0.5250 0.9626 0.2966 -v 0.5268 0.9626 0.3065 -v 0.5335 0.8426 0.3444 -v 0.5401 0.7226 0.3823 -v 0.5468 0.6026 0.4202 -v 0.5535 0.4826 0.4581 -v 0.5602 0.3626 0.4960 -v 0.6016 0.4826 0.4535 -v 0.5947 0.3626 0.4927 -v 0.6085 0.6026 0.4143 -v 0.6154 0.7226 0.3751 -v 0.6223 0.8426 0.3359 -v 0.6292 0.9626 0.2966 -v 0.6275 0.9626 0.3065 -v 0.6208 0.8426 0.3444 -v 0.6141 0.7226 0.3823 -v 0.6074 0.6026 0.4202 -v 0.6008 0.4826 0.4581 -v 0.5941 0.3626 0.4960 -v 0.6475 0.4826 0.4702 -v 0.6276 0.3626 0.5047 -v 0.6674 0.6026 0.4357 -v 0.6873 0.7226 0.4012 -v 0.7072 0.8426 0.3668 -v 0.7271 0.9626 0.3323 -v 0.7221 0.9626 0.3409 -v 0.7029 0.8426 0.3743 -v 0.6836 0.7226 0.4076 -v 0.6644 0.6026 0.4409 -v 0.6451 0.4826 0.4743 -v 0.6259 0.3626 0.5076 -v 0.6849 0.4826 0.5016 -v 0.6544 0.3626 0.5272 -v 0.7154 0.6026 0.4760 -v 0.7459 0.7226 0.4504 -v 0.7764 0.8426 0.4248 -v 0.8069 0.9626 0.3992 -v 0.7993 0.9626 0.4057 -v 0.7698 0.8426 0.4304 -v 0.7403 0.7226 0.4552 -v 0.7108 0.6026 0.4799 -v 0.6813 0.4826 0.5046 -v 0.6518 0.3626 0.5294 -v 0.7094 0.4826 0.5440 -v 0.6719 0.3626 0.5576 -v 0.7468 0.6026 0.5303 -v 0.7842 0.7226 0.5167 -v 0.8216 0.8426 0.5031 -v 0.8590 0.9626 0.4895 -v 0.8496 0.9626 0.4929 -v 0.8135 0.8426 0.5061 -v 0.7773 0.7226 0.5192 -v 0.7411 0.6026 0.5324 -v 0.7049 0.4826 0.5456 -v 0.6688 0.3626 0.5587 -v 0.3498 0.2809 0.6985 -v 0.3498 0.2809 0.4841 -v 0.0844 0.1327 0.4841 -v 0.0844 0.1327 0.6985 -v 0.3498 0.2709 0.4841 -v 0.0844 0.1227 0.4841 -v 0.0844 0.2016 0.4841 -v 0.3498 0.3498 0.4841 -v 0.3498 0.3498 0.6885 -v 0.0844 0.2016 0.6885 -v 0.0844 0.1227 0.6885 -v 0.3498 0.2709 0.6885 -v 0.3498 0.2709 0.6985 -v 0.3498 0.3498 0.6985 -v 0.0844 0.2016 0.6985 -v 0.0844 0.1227 0.6985 -v 0.3498 0.3498 0.4941 -v 0.3498 0.2709 0.4941 -v 0.0844 0.1227 0.4941 -v 0.0844 0.2016 0.4941 -v 0.8105 0.0121 0.3765 -v 0.3407 0.0121 0.3765 -v 0.3407 0.3902 0.3765 -v 0.8105 0.3902 0.3765 -v 0.8105 0.0121 0.8076 -v 0.8105 0.3902 0.8076 -v 0.3407 0.3902 0.8076 -v 0.3407 0.0121 0.8076 -v 0.7104 0.2745 0.4857 -v 0.7104 0.2745 0.6985 -v 0.7104 0.3499 0.6985 -v 0.7104 0.3499 0.4857 -v 0.3407 0.2745 0.4857 -v 0.3407 0.3499 0.4857 -v 0.3407 0.2745 0.6985 -v 0.3407 0.3499 0.6985 -v 0.4394 0.1868 0.0636 -v 0.4443 0.1588 0.0636 -v 0.4443 0.1588 0.1211 -v 0.4394 0.1868 0.1211 -v 0.4515 0.1390 0.0636 -v 0.4658 0.1144 0.0636 -v 0.4658 0.1144 0.1211 -v 0.4515 0.1390 0.1211 -v 0.4793 0.0982 0.0636 -v 0.5011 0.0799 0.0636 -v 0.5011 0.0799 0.1211 -v 0.4793 0.0982 0.1211 -v 0.5194 0.0694 0.0636 -v 0.5461 0.0596 0.0636 -v 0.5461 0.0596 0.1211 -v 0.5194 0.0694 0.1211 -v 0.5669 0.0560 0.0636 -v 0.5953 0.0560 0.0636 -v 0.5953 0.0560 0.1211 -v 0.5669 0.0560 0.1211 -v 0.6161 0.0596 0.0636 -v 0.6428 0.0694 0.0636 -v 0.6428 0.0694 0.1211 -v 0.6161 0.0596 0.1211 -v 0.6611 0.0799 0.0636 -v 0.6829 0.0982 0.0636 -v 0.6829 0.0982 0.1211 -v 0.6611 0.0799 0.1211 -v 0.6965 0.1144 0.0636 -v 0.7107 0.1390 0.0636 -v 0.7107 0.1390 0.1211 -v 0.6965 0.1144 0.1211 -v 0.7179 0.1588 0.0636 -v 0.7228 0.1868 0.0636 -v 0.7228 0.1868 0.1211 -v 0.7179 0.1588 0.1211 -v 0.7228 0.2079 0.0636 -v 0.7179 0.2359 0.0636 -v 0.7179 0.2359 0.1211 -v 0.7228 0.2079 0.1211 -v 0.7107 0.2558 0.0636 -v 0.6965 0.2804 0.0636 -v 0.6965 0.2804 0.1211 -v 0.7107 0.2558 0.1211 -v 0.6829 0.2966 0.0636 -v 0.6611 0.3148 0.0636 -v 0.6611 0.3148 0.1211 -v 0.6829 0.2966 0.1211 -v 0.6428 0.3254 0.0636 -v 0.6161 0.3351 0.0636 -v 0.6161 0.3351 0.1211 -v 0.6428 0.3254 0.1211 -v 0.5953 0.3388 0.0636 -v 0.5669 0.3388 0.0636 -v 0.5669 0.3388 0.1211 -v 0.5953 0.3388 0.1211 -v 0.5461 0.3351 0.0636 -v 0.5194 0.3254 0.0636 -v 0.5194 0.3254 0.1211 -v 0.5461 0.3351 0.1211 -v 0.5011 0.3148 0.0636 -v 0.4793 0.2966 0.0636 -v 0.4793 0.2966 0.1211 -v 0.5011 0.3148 0.1211 -v 0.4658 0.2804 0.0636 -v 0.4515 0.2558 0.0636 -v 0.4515 0.2558 0.1211 -v 0.4658 0.2804 0.1211 -v 0.4443 0.2359 0.0636 -v 0.4394 0.2079 0.0636 -v 0.4394 0.2079 0.1211 -v 0.4443 0.2359 0.1211 -v 0.4443 0.1588 0.1850 -v 0.4394 0.1868 0.1850 -v 0.4658 0.1144 0.1850 -v 0.4515 0.1390 0.1850 -v 0.5011 0.0799 0.1850 -v 0.4793 0.0982 0.1850 -v 0.5461 0.0596 0.1850 -v 0.5194 0.0694 0.1850 -v 0.5953 0.0560 0.1850 -v 0.5669 0.0560 0.1850 -v 0.6428 0.0694 0.1850 -v 0.6161 0.0596 0.1850 -v 0.6829 0.0982 0.1850 -v 0.6611 0.0799 0.1850 -v 0.7107 0.1390 0.1850 -v 0.6965 0.1144 0.1850 -v 0.7228 0.1868 0.1850 -v 0.7179 0.1588 0.1850 -v 0.7179 0.2359 0.1850 -v 0.7228 0.2079 0.1850 -v 0.6965 0.2804 0.1850 -v 0.7107 0.2558 0.1850 -v 0.6611 0.3148 0.1850 -v 0.6829 0.2966 0.1850 -v 0.6161 0.3351 0.1850 -v 0.6428 0.3254 0.1850 -v 0.5669 0.3388 0.1850 -v 0.5953 0.3388 0.1850 -v 0.5194 0.3254 0.1850 -v 0.5461 0.3351 0.1850 -v 0.4793 0.2966 0.1850 -v 0.5011 0.3148 0.1850 -v 0.4515 0.2558 0.1850 -v 0.4658 0.2804 0.1850 -v 0.4394 0.2079 0.1850 -v 0.4443 0.2359 0.1850 -v 0.4443 0.1588 0.2490 -v 0.4394 0.1868 0.2490 -v 0.4658 0.1144 0.2490 -v 0.4515 0.1390 0.2490 -v 0.5011 0.0799 0.2490 -v 0.4793 0.0982 0.2490 -v 0.5461 0.0596 0.2490 -v 0.5194 0.0694 0.2490 -v 0.5953 0.0560 0.2490 -v 0.5669 0.0560 0.2490 -v 0.6428 0.0694 0.2490 -v 0.6161 0.0596 0.2490 -v 0.6829 0.0982 0.2490 -v 0.6611 0.0799 0.2490 -v 0.7107 0.1390 0.2490 -v 0.6965 0.1144 0.2490 -v 0.7228 0.1868 0.2490 -v 0.7179 0.1588 0.2490 -v 0.7179 0.2359 0.2490 -v 0.7228 0.2079 0.2490 -v 0.6965 0.2804 0.2490 -v 0.7107 0.2558 0.2490 -v 0.6611 0.3148 0.2490 -v 0.6829 0.2966 0.2490 -v 0.6161 0.3351 0.2490 -v 0.6428 0.3254 0.2490 -v 0.5669 0.3388 0.2490 -v 0.5953 0.3388 0.2490 -v 0.5194 0.3254 0.2490 -v 0.5461 0.3351 0.2490 -v 0.4793 0.2966 0.2490 -v 0.5011 0.3148 0.2490 -v 0.4515 0.2558 0.2490 -v 0.4658 0.2804 0.2490 -v 0.4394 0.2079 0.2490 -v 0.4443 0.2359 0.2490 -v 0.4443 0.1588 0.3129 -v 0.4394 0.1868 0.3129 -v 0.4658 0.1144 0.3129 -v 0.4515 0.1390 0.3129 -v 0.5011 0.0799 0.3129 -v 0.4793 0.0982 0.3129 -v 0.5461 0.0596 0.3129 -v 0.5194 0.0694 0.3129 -v 0.5953 0.0560 0.3129 -v 0.5669 0.0560 0.3129 -v 0.6428 0.0694 0.3129 -v 0.6161 0.0596 0.3129 -v 0.6829 0.0982 0.3129 -v 0.6611 0.0799 0.3129 -v 0.7107 0.1390 0.3129 -v 0.6965 0.1144 0.3129 -v 0.7228 0.1868 0.3129 -v 0.7179 0.1588 0.3129 -v 0.7179 0.2359 0.3129 -v 0.7228 0.2079 0.3129 -v 0.6965 0.2804 0.3129 -v 0.7107 0.2558 0.3129 -v 0.6611 0.3148 0.3129 -v 0.6829 0.2966 0.3129 -v 0.6161 0.3351 0.3129 -v 0.6428 0.3254 0.3129 -v 0.5669 0.3388 0.3129 -v 0.5953 0.3388 0.3129 -v 0.5194 0.3254 0.3129 -v 0.5461 0.3351 0.3129 -v 0.4793 0.2966 0.3129 -v 0.5011 0.3148 0.3129 -v 0.4515 0.2558 0.3129 -v 0.4658 0.2804 0.3129 -v 0.4394 0.2079 0.3129 -v 0.4443 0.2359 0.3129 -v 0.4443 0.1588 0.3704 -v 0.4394 0.1868 0.3704 -v 0.4658 0.1144 0.3704 -v 0.4515 0.1390 0.3704 -v 0.5011 0.0799 0.3704 -v 0.4793 0.0982 0.3704 -v 0.5461 0.0596 0.3704 -v 0.5194 0.0694 0.3704 -v 0.5953 0.0560 0.3704 -v 0.5669 0.0560 0.3704 -v 0.6428 0.0694 0.3704 -v 0.6161 0.0596 0.3704 -v 0.6829 0.0982 0.3704 -v 0.6611 0.0799 0.3704 -v 0.7107 0.1390 0.3704 -v 0.6965 0.1144 0.3704 -v 0.7228 0.1868 0.3704 -v 0.7179 0.1588 0.3704 -v 0.7179 0.2359 0.3704 -v 0.7228 0.2079 0.3704 -v 0.6965 0.2804 0.3704 -v 0.7107 0.2558 0.3704 -v 0.6611 0.3148 0.3704 -v 0.6829 0.2966 0.3704 -v 0.6161 0.3351 0.3704 -v 0.6428 0.3254 0.3704 -v 0.5669 0.3388 0.3704 -v 0.5953 0.3388 0.3704 -v 0.5194 0.3254 0.3704 -v 0.5461 0.3351 0.3704 -v 0.4793 0.2966 0.3704 -v 0.5011 0.3148 0.3704 -v 0.4515 0.2558 0.3704 -v 0.4658 0.2804 0.3704 -v 0.4394 0.2079 0.3704 -v 0.4443 0.2359 0.3704 -v 0.4835 0.2793 0.0572 -v 0.5174 0.3078 0.0572 -v 0.5590 0.3229 0.0572 -v 0.6032 0.3229 0.0572 -v 0.6448 0.3078 0.0572 -v 0.6788 0.2793 0.0572 -v 0.7009 0.2410 0.0572 -v 0.7086 0.1974 0.0572 -v 0.7009 0.1538 0.0572 -v 0.6788 0.1154 0.0572 -v 0.6448 0.0870 0.0572 -v 0.6032 0.0718 0.0572 -v 0.5590 0.0718 0.0572 -v 0.5174 0.0870 0.0572 -v 0.4835 0.1154 0.0572 -v 0.4613 0.1538 0.0572 -v 0.4536 0.1974 0.0572 -v 0.4613 0.2410 0.0572 -v 0.4613 0.1538 0.3768 -v 0.4835 0.1154 0.3768 -v 0.5174 0.0870 0.3768 -v 0.5590 0.0718 0.3768 -v 0.6032 0.0718 0.3768 -v 0.6448 0.0870 0.3768 -v 0.6788 0.1154 0.3768 -v 0.7009 0.1538 0.3768 -v 0.7086 0.1974 0.3768 -v 0.7009 0.2410 0.3768 -v 0.6788 0.2793 0.3768 -v 0.6448 0.3078 0.3768 -v 0.6032 0.3229 0.3768 -v 0.5590 0.3229 0.3768 -v 0.5174 0.3078 0.3768 -v 0.4835 0.2793 0.3768 -v 0.4613 0.2410 0.3768 -v 0.4536 0.1974 0.3768 -v 0.4599 0.1616 0.0636 -v 0.4550 0.1896 0.0636 -v 0.4613 0.1538 0.1211 -v 0.4599 0.1616 0.1211 -v 0.4613 0.1538 0.1850 -v 0.4599 0.1616 0.1850 -v 0.4613 0.1538 0.2490 -v 0.4599 0.1616 0.2490 -v 0.4613 0.1538 0.3129 -v 0.4599 0.1616 0.3129 -v 0.4599 0.1616 0.3704 -v 0.4550 0.1896 0.3704 -v 0.4536 0.1974 0.3129 -v 0.4550 0.1896 0.3129 -v 0.4536 0.1974 0.2490 -v 0.4550 0.1896 0.2490 -v 0.4536 0.1974 0.1850 -v 0.4550 0.1896 0.1850 -v 0.4536 0.1974 0.1211 -v 0.4550 0.1896 0.1211 -v 0.4835 0.1154 0.1211 -v 0.4895 0.1103 0.0636 -v 0.4895 0.1103 0.1211 -v 0.5113 0.0921 0.0636 -v 0.5174 0.0870 0.1211 -v 0.5113 0.0921 0.1211 -v 0.5174 0.0870 0.1850 -v 0.5113 0.0921 0.1850 -v 0.5174 0.0870 0.2490 -v 0.5113 0.0921 0.2490 -v 0.5174 0.0870 0.3129 -v 0.5113 0.0921 0.3129 -v 0.5113 0.0921 0.3704 -v 0.4895 0.1103 0.3704 -v 0.4835 0.1154 0.3129 -v 0.4895 0.1103 0.3129 -v 0.4835 0.1154 0.2490 -v 0.4895 0.1103 0.2490 -v 0.4835 0.1154 0.1850 -v 0.4895 0.1103 0.1850 -v 0.5590 0.0718 0.1211 -v 0.5669 0.0718 0.0636 -v 0.5669 0.0718 0.1211 -v 0.5953 0.0718 0.0636 -v 0.6032 0.0718 0.1211 -v 0.5953 0.0718 0.1211 -v 0.6032 0.0718 0.1850 -v 0.5953 0.0718 0.1850 -v 0.6032 0.0718 0.2490 -v 0.5953 0.0718 0.2490 -v 0.6032 0.0718 0.3129 -v 0.5953 0.0718 0.3129 -v 0.5953 0.0718 0.3704 -v 0.5669 0.0718 0.3704 -v 0.5590 0.0718 0.3129 -v 0.5669 0.0718 0.3129 -v 0.5590 0.0718 0.2490 -v 0.5669 0.0718 0.2490 -v 0.5590 0.0718 0.1850 -v 0.5669 0.0718 0.1850 -v 0.6448 0.0870 0.1211 -v 0.6509 0.0921 0.0636 -v 0.6509 0.0921 0.1211 -v 0.6727 0.1103 0.0636 -v 0.6788 0.1154 0.1211 -v 0.6727 0.1103 0.1211 -v 0.6788 0.1154 0.1850 -v 0.6727 0.1103 0.1850 -v 0.6788 0.1154 0.2490 -v 0.6727 0.1103 0.2490 -v 0.6788 0.1154 0.3129 -v 0.6727 0.1103 0.3129 -v 0.6727 0.1103 0.3704 -v 0.6509 0.0921 0.3704 -v 0.6448 0.0870 0.3129 -v 0.6509 0.0921 0.3129 -v 0.6448 0.0870 0.2490 -v 0.6509 0.0921 0.2490 -v 0.6448 0.0870 0.1850 -v 0.6509 0.0921 0.1850 -v 0.7009 0.1538 0.1211 -v 0.7023 0.1616 0.0636 -v 0.7023 0.1616 0.1211 -v 0.7072 0.1896 0.0636 -v 0.7086 0.1974 0.1211 -v 0.7072 0.1896 0.1211 -v 0.7086 0.1974 0.1850 -v 0.7072 0.1896 0.1850 -v 0.7086 0.1974 0.2490 -v 0.7072 0.1896 0.2490 -v 0.7086 0.1974 0.3129 -v 0.7072 0.1896 0.3129 -v 0.7072 0.1896 0.3704 -v 0.7023 0.1616 0.3704 -v 0.7009 0.1538 0.3129 -v 0.7023 0.1616 0.3129 -v 0.7009 0.1538 0.2490 -v 0.7023 0.1616 0.2490 -v 0.7009 0.1538 0.1850 -v 0.7023 0.1616 0.1850 -v 0.7009 0.2410 0.1211 -v 0.6969 0.2478 0.0636 -v 0.6969 0.2478 0.1211 -v 0.6827 0.2725 0.0636 -v 0.6788 0.2793 0.1211 -v 0.6827 0.2725 0.1211 -v 0.6788 0.2793 0.1850 -v 0.6827 0.2725 0.1850 -v 0.6788 0.2793 0.2490 -v 0.6827 0.2725 0.2490 -v 0.6788 0.2793 0.3129 -v 0.6827 0.2725 0.3129 -v 0.6827 0.2725 0.3704 -v 0.6969 0.2478 0.3704 -v 0.7009 0.2410 0.3129 -v 0.6969 0.2478 0.3129 -v 0.7009 0.2410 0.2490 -v 0.6969 0.2478 0.2490 -v 0.7009 0.2410 0.1850 -v 0.6969 0.2478 0.1850 -v 0.6448 0.3078 0.1211 -v 0.6374 0.3105 0.0636 -v 0.6374 0.3105 0.1211 -v 0.6107 0.3202 0.0636 -v 0.6032 0.3229 0.1211 -v 0.6107 0.3202 0.1211 -v 0.6032 0.3229 0.1850 -v 0.6107 0.3202 0.1850 -v 0.6032 0.3229 0.2490 -v 0.6107 0.3202 0.2490 -v 0.6032 0.3229 0.3129 -v 0.6107 0.3202 0.3129 -v 0.6107 0.3202 0.3704 -v 0.6374 0.3105 0.3704 -v 0.6448 0.3078 0.3129 -v 0.6374 0.3105 0.3129 -v 0.6448 0.3078 0.2490 -v 0.6374 0.3105 0.2490 -v 0.6448 0.3078 0.1850 -v 0.6374 0.3105 0.1850 -v 0.5590 0.3229 0.1211 -v 0.5515 0.3202 0.0636 -v 0.5515 0.3202 0.1211 -v 0.5248 0.3105 0.0636 -v 0.5174 0.3078 0.1211 -v 0.5248 0.3105 0.1211 -v 0.5174 0.3078 0.1850 -v 0.5248 0.3105 0.1850 -v 0.5174 0.3078 0.2490 -v 0.5248 0.3105 0.2490 -v 0.5174 0.3078 0.3129 -v 0.5248 0.3105 0.3129 -v 0.5248 0.3105 0.3704 -v 0.5515 0.3202 0.3704 -v 0.5590 0.3229 0.3129 -v 0.5515 0.3202 0.3129 -v 0.5590 0.3229 0.2490 -v 0.5515 0.3202 0.2490 -v 0.5590 0.3229 0.1850 -v 0.5515 0.3202 0.1850 -v 0.4835 0.2793 0.1211 -v 0.4795 0.2725 0.0636 -v 0.4795 0.2725 0.1211 -v 0.4653 0.2478 0.0636 -v 0.4613 0.2410 0.1211 -v 0.4653 0.2478 0.1211 -v 0.4613 0.2410 0.1850 -v 0.4653 0.2478 0.1850 -v 0.4613 0.2410 0.2490 -v 0.4653 0.2478 0.2490 -v 0.4613 0.2410 0.3129 -v 0.4653 0.2478 0.3129 -v 0.4653 0.2478 0.3704 -v 0.4795 0.2725 0.3704 -v 0.4835 0.2793 0.3129 -v 0.4795 0.2725 0.3129 -v 0.4835 0.2793 0.2490 -v 0.4795 0.2725 0.2490 -v 0.4835 0.2793 0.1850 -v 0.4795 0.2725 0.1850 -v 0.4653 0.1469 0.0636 -v 0.4653 0.1469 0.1211 -v 0.4795 0.1223 0.0636 -v 0.4795 0.1223 0.1211 -v 0.4795 0.1223 0.1850 -v 0.4795 0.1223 0.2490 -v 0.4795 0.1223 0.3129 -v 0.4795 0.1223 0.3704 -v 0.4653 0.1469 0.3704 -v 0.4653 0.1469 0.3129 -v 0.4653 0.1469 0.2490 -v 0.4653 0.1469 0.1850 -v 0.5248 0.0843 0.0636 -v 0.5248 0.0843 0.1211 -v 0.5515 0.0745 0.0636 -v 0.5515 0.0745 0.1211 -v 0.5515 0.0745 0.1850 -v 0.5515 0.0745 0.2490 -v 0.5515 0.0745 0.3129 -v 0.5515 0.0745 0.3704 -v 0.5248 0.0843 0.3704 -v 0.5248 0.0843 0.3129 -v 0.5248 0.0843 0.2490 -v 0.5248 0.0843 0.1850 -v 0.6107 0.0745 0.0636 -v 0.6107 0.0745 0.1211 -v 0.6374 0.0843 0.0636 -v 0.6374 0.0843 0.1211 -v 0.6374 0.0843 0.1850 -v 0.6374 0.0843 0.2490 -v 0.6374 0.0843 0.3129 -v 0.6374 0.0843 0.3704 -v 0.6107 0.0745 0.3704 -v 0.6107 0.0745 0.3129 -v 0.6107 0.0745 0.2490 -v 0.6107 0.0745 0.1850 -v 0.6827 0.1223 0.0636 -v 0.6827 0.1223 0.1211 -v 0.6969 0.1469 0.0636 -v 0.6969 0.1469 0.1211 -v 0.6969 0.1469 0.1850 -v 0.6969 0.1469 0.2490 -v 0.6969 0.1469 0.3129 -v 0.6969 0.1469 0.3704 -v 0.6827 0.1223 0.3704 -v 0.6827 0.1223 0.3129 -v 0.6827 0.1223 0.2490 -v 0.6827 0.1223 0.1850 -v 0.7072 0.2052 0.0636 -v 0.7072 0.2052 0.1211 -v 0.7023 0.2332 0.0636 -v 0.7023 0.2332 0.1211 -v 0.7023 0.2332 0.1850 -v 0.7023 0.2332 0.2490 -v 0.7023 0.2332 0.3129 -v 0.7023 0.2332 0.3704 -v 0.7072 0.2052 0.3704 -v 0.7072 0.2052 0.3129 -v 0.7072 0.2052 0.2490 -v 0.7072 0.2052 0.1850 -v 0.6727 0.2844 0.0636 -v 0.6727 0.2844 0.1211 -v 0.6509 0.3027 0.0636 -v 0.6509 0.3027 0.1211 -v 0.6509 0.3027 0.1850 -v 0.6509 0.3027 0.2490 -v 0.6509 0.3027 0.3129 -v 0.6509 0.3027 0.3704 -v 0.6727 0.2844 0.3704 -v 0.6727 0.2844 0.3129 -v 0.6727 0.2844 0.2490 -v 0.6727 0.2844 0.1850 -v 0.5953 0.3229 0.0636 -v 0.5953 0.3229 0.1211 -v 0.5669 0.3229 0.0636 -v 0.5669 0.3229 0.1211 -v 0.5669 0.3229 0.1850 -v 0.5669 0.3229 0.2490 -v 0.5669 0.3229 0.3129 -v 0.5669 0.3229 0.3704 -v 0.5953 0.3229 0.3704 -v 0.5953 0.3229 0.3129 -v 0.5953 0.3229 0.2490 -v 0.5953 0.3229 0.1850 -v 0.5113 0.3027 0.0636 -v 0.5113 0.3027 0.1211 -v 0.4895 0.2844 0.0636 -v 0.4895 0.2844 0.1211 -v 0.4895 0.2844 0.1850 -v 0.4895 0.2844 0.2490 -v 0.4895 0.2844 0.3129 -v 0.4895 0.2844 0.3704 -v 0.5113 0.3027 0.3704 -v 0.5113 0.3027 0.3129 -v 0.5113 0.3027 0.2490 -v 0.5113 0.3027 0.1850 -v 0.4550 0.2052 0.1211 -v 0.4550 0.2052 0.0636 -v 0.4550 0.2052 0.1850 -v 0.4550 0.2052 0.2490 -v 0.4550 0.2052 0.3129 -v 0.4550 0.2052 0.3704 -v 0.4599 0.2332 0.3704 -v 0.4599 0.2332 0.3129 -v 0.4599 0.2332 0.2490 -v 0.4599 0.2332 0.1850 -v 0.4599 0.2332 0.1211 -v 0.4599 0.2332 0.0636 -# 792 vertices - -vn 0.9491 -0.3150 0.0000 -vn 0.8919 -0.3150 0.3246 -vn 0.9491 -0.3150 -0.0000 -vn 0.0000 1.0000 -0.0000 -vn -0.9522 0.3055 0.0000 -vn -0.9522 0.3055 -0.0000 -vn -0.8948 0.3055 -0.3257 -vn 0.0000 -1.0000 -0.0000 -vn 0.7271 -0.3150 0.6101 -vn -0.7294 0.3055 -0.6121 -vn 0.4746 -0.3150 0.8219 -vn -0.4761 0.3055 -0.8246 -vn 0.1648 -0.3150 0.9347 -vn -0.1653 0.3055 -0.9377 -vn -0.1648 -0.3150 0.9347 -vn -0.0000 1.0000 -0.0000 -vn 0.1653 0.3055 -0.9377 -vn -0.4746 -0.3150 0.8219 -vn 0.4761 0.3055 -0.8246 -vn -0.7271 -0.3150 0.6101 -vn 0.7294 0.3055 -0.6121 -vn -0.8919 -0.3150 0.3246 -vn 0.8948 0.3055 -0.3257 -vn -0.9491 -0.3150 -0.0000 -vn 0.9522 0.3055 0.0000 -vn -0.8919 -0.3150 -0.3246 -vn 0.8948 0.3055 0.3257 -vn -0.7271 -0.3150 -0.6101 -vn 0.7294 0.3055 0.6121 -vn -0.4746 -0.3150 -0.8219 -vn 0.4761 0.3055 0.8246 -vn -0.1648 -0.3150 -0.9347 -vn -0.0000 1.0000 0.0000 -vn 0.1653 0.3055 0.9377 -vn 0.1648 -0.3150 -0.9347 -vn -0.1653 0.3055 0.9377 -vn 0.4746 -0.3150 -0.8219 -vn -0.4761 0.3055 0.8246 -vn 0.7271 -0.3150 -0.6101 -vn -0.7294 0.3055 0.6121 -vn 0.8919 -0.3150 -0.3246 -vn -0.8948 0.3055 0.3257 -vn -0.4876 0.8731 -0.0000 -vn 0.0000 0.0000 -1.0000 -vn -0.0000 0.0000 1.0000 -vn 1.0000 0.0000 0.0000 -vn -1.0000 0.0000 -0.0000 -vn 0.4876 -0.8731 0.0000 -vn 0.0000 -0.0000 -1.0000 -vn 0.0000 -1.0000 0.0000 -vn -1.0000 -0.0000 -0.0000 -vn -1.0000 -0.0000 0.0000 -vn -1.0000 0.0000 0.0000 -vn -0.0000 -0.0000 1.0000 -vn -0.0000 -1.0000 0.0000 -vn -0.9848 -0.1736 -0.0000 -vn -0.8660 -0.5000 -0.0000 -vn -0.6428 -0.7660 -0.0000 -vn -0.3420 -0.9397 -0.0000 -vn 0.3420 -0.9397 0.0000 -vn 0.3420 -0.9397 -0.0000 -vn 0.6428 -0.7660 0.0000 -vn 0.8660 -0.5000 0.0000 -vn 0.9848 -0.1736 0.0000 -vn 0.9848 0.1736 0.0000 -vn 0.8660 0.5000 0.0000 -vn 0.6428 0.7660 0.0000 -vn 0.6428 0.7660 -0.0000 -vn 0.3420 0.9397 0.0000 -vn 0.3420 0.9397 -0.0000 -vn 0.0000 1.0000 0.0000 -vn -0.3420 0.9397 -0.0000 -vn -0.6428 0.7660 -0.0000 -vn -0.8660 0.5000 -0.0000 -vn -0.9848 0.1736 -0.0000 -vn -0.3420 -0.9397 0.0000 -vn -0.9848 -0.1736 0.0000 -vn -0.8660 -0.5000 0.0000 -vn -0.6428 -0.7660 0.0000 -vn 0.0000 0.0000 1.0000 -vn 0.0000 -0.0000 1.0000 -vn 0.6428 -0.7660 -0.0000 -vn 0.9848 -0.1736 -0.0000 -vn 0.8660 0.5000 -0.0000 -vn -0.3420 0.9397 0.0000 -vn -0.8660 0.5000 0.0000 -vn 0.1736 -0.9848 0.0000 -vn -0.1736 0.9848 -0.0000 -vn -0.7660 0.6428 -0.0000 -vn 0.7660 -0.6428 0.0000 -vn 0.7660 -0.6428 -0.0000 -vn -0.7660 -0.6428 -0.0000 -vn 0.7660 0.6428 0.0000 -vn 0.7660 0.6428 -0.0000 -vn -0.7660 -0.6428 0.0000 -vn -0.1736 -0.9848 -0.0000 -vn 0.1736 0.9848 -0.0000 -vn 0.1736 0.9848 0.0000 -vn -0.1736 -0.9848 0.0000 -vn 0.5000 -0.8660 0.0000 -vn -0.5000 0.8660 -0.0000 -vn -0.5000 0.8660 0.0000 -vn 0.5000 -0.8660 -0.0000 -vn 0.9397 -0.3420 0.0000 -vn -0.9397 0.3420 -0.0000 -vn 0.9397 0.3420 0.0000 -vn -0.9397 -0.3420 -0.0000 -vn 0.5000 0.8660 0.0000 -vn -0.5000 -0.8660 -0.0000 -vn -0.5000 -0.8660 0.0000 -vn 0.5000 0.8660 -0.0000 -vn 0.8660 -0.5000 -0.0000 -vn 0.9848 0.1736 -0.0000 -vn -0.6428 0.7660 0.0000 -vn -0.9848 0.1737 -0.0000 -vn -0.9848 0.1736 0.0000 -vn 0.1736 -0.9848 -0.0000 -vn 1.0000 -0.0000 0.0000 -# 118 vertex normals - -vt 0.5630 0.5081 0.0000 -vt 0.5348 0.5081 0.0000 -vt 0.5348 0.4968 0.0000 -vt 0.5630 0.5000 0.0000 -vt 0.5067 0.5081 0.0000 -vt 0.5067 0.4936 0.0000 -vt 0.4785 0.5081 0.0000 -vt 0.4785 0.4904 0.0000 -vt 0.4503 0.5081 0.0000 -vt 0.4503 0.4872 0.0000 -vt 0.4222 0.5081 0.0000 -vt 0.4222 0.4840 0.0000 -vt 0.6697 0.0392 0.0000 -vt 0.6697 0.0414 0.0000 -vt 0.6479 0.0453 0.0000 -vt 0.6471 0.0432 0.0000 -vt 0.0922 0.6467 0.0000 -vt 0.0896 0.6755 0.0000 -vt 0.0696 0.6748 0.0000 -vt 0.0691 0.6459 0.0000 -vt 0.0871 0.7043 0.0000 -vt 0.0701 0.7037 0.0000 -vt 0.0845 0.7331 0.0000 -vt 0.0706 0.7326 0.0000 -vt 0.0820 0.7619 0.0000 -vt 0.0712 0.7616 0.0000 -vt 0.0794 0.7908 0.0000 -vt 0.0717 0.7905 0.0000 -vt 0.7187 0.2709 0.0000 -vt 0.7187 0.2717 0.0000 -vt 0.7111 0.2703 0.0000 -vt 0.7114 0.2696 0.0000 -vt 0.5348 0.4869 0.0000 -vt 0.5630 0.4929 0.0000 -vt 0.5067 0.4809 0.0000 -vt 0.4785 0.4748 0.0000 -vt 0.4503 0.4688 0.0000 -vt 0.4222 0.4628 0.0000 -vt 0.6287 0.0563 0.0000 -vt 0.6273 0.0546 0.0000 -vt 0.0507 0.6762 0.0000 -vt 0.0473 0.6475 0.0000 -vt 0.0541 0.7049 0.0000 -vt 0.0575 0.7336 0.0000 -vt 0.0609 0.7623 0.0000 -vt 0.0643 0.7910 0.0000 -vt 0.7044 0.2665 0.0000 -vt 0.7049 0.2659 0.0000 -vt 0.3991 0.5443 0.0000 -vt 0.3700 0.5459 0.0000 -vt 0.3700 0.5347 0.0000 -vt 0.3991 0.5363 0.0000 -vt 0.3409 0.5475 0.0000 -vt 0.3409 0.5331 0.0000 -vt 0.3118 0.5491 0.0000 -vt 0.3118 0.5315 0.0000 -vt 0.2827 0.5507 0.0000 -vt 0.2827 0.5299 0.0000 -vt 0.2535 0.5523 0.0000 -vt 0.2535 0.5283 0.0000 -vt 0.6144 0.0733 0.0000 -vt 0.6125 0.0722 0.0000 -vt 0.1458 0.8117 0.0000 -vt 0.1377 0.8402 0.0000 -vt 0.1216 0.8397 0.0000 -vt 0.1273 0.8111 0.0000 -vt 0.1296 0.8688 0.0000 -vt 0.1160 0.8683 0.0000 -vt 0.1215 0.8973 0.0000 -vt 0.1104 0.8969 0.0000 -vt 0.1134 0.9258 0.0000 -vt 0.1048 0.9255 0.0000 -vt 0.1054 0.9544 0.0000 -vt 0.0991 0.9542 0.0000 -vt 0.6995 0.2605 0.0000 -vt 0.7001 0.2602 0.0000 -vt 0.3712 0.5241 0.0000 -vt 0.3999 0.5287 0.0000 -vt 0.3424 0.5195 0.0000 -vt 0.3136 0.5149 0.0000 -vt 0.2849 0.5103 0.0000 -vt 0.2561 0.5057 0.0000 -vt 0.6069 0.0941 0.0000 -vt 0.6047 0.0938 0.0000 -vt 0.1019 0.8390 0.0000 -vt 0.1046 0.8103 0.0000 -vt 0.0993 0.8677 0.0000 -vt 0.0967 0.8964 0.0000 -vt 0.0941 0.9252 0.0000 -vt 0.0915 0.9539 0.0000 -vt 0.6968 0.2533 0.0000 -vt 0.6976 0.2532 0.0000 -vt 0.3734 0.5154 0.0000 -vt 0.4016 0.5225 0.0000 -vt 0.3453 0.5084 0.0000 -vt 0.3172 0.5014 0.0000 -vt 0.2890 0.4943 0.0000 -vt 0.2609 0.4873 0.0000 -vt 0.6069 0.1163 0.0000 -vt 0.6047 0.1167 0.0000 -vt 0.0810 0.8383 0.0000 -vt 0.0804 0.8094 0.0000 -vt 0.0816 0.8671 0.0000 -vt 0.0822 0.8959 0.0000 -vt 0.0828 0.9248 0.0000 -vt 0.0834 0.9536 0.0000 -vt 0.6968 0.2456 0.0000 -vt 0.6976 0.2457 0.0000 -vt 0.2286 0.5437 0.0000 -vt 0.2004 0.5452 0.0000 -vt 0.2004 0.5343 0.0000 -vt 0.2286 0.5358 0.0000 -vt 0.1722 0.5468 0.0000 -vt 0.1722 0.5328 0.0000 -vt 0.1441 0.5483 0.0000 -vt 0.1441 0.5312 0.0000 -vt 0.1159 0.5498 0.0000 -vt 0.1159 0.5297 0.0000 -vt 0.0877 0.5514 0.0000 -vt 0.0877 0.5281 0.0000 -vt 0.6144 0.1371 0.0000 -vt 0.6125 0.1382 0.0000 -vt 0.0613 0.8376 0.0000 -vt 0.0577 0.8086 0.0000 -vt 0.0649 0.8665 0.0000 -vt 0.0685 0.8955 0.0000 -vt 0.0721 0.9244 0.0000 -vt 0.0758 0.9533 0.0000 -vt 0.6995 0.2383 0.0000 -vt 0.7001 0.2387 0.0000 -vt 0.2016 0.5241 0.0000 -vt 0.2294 0.5285 0.0000 -vt 0.1737 0.5196 0.0000 -vt 0.1459 0.5152 0.0000 -vt 0.1180 0.5107 0.0000 -vt 0.0902 0.5063 0.0000 -vt 0.6287 0.1541 0.0000 -vt 0.6273 0.1558 0.0000 -vt 0.0453 0.8370 0.0000 -vt 0.0392 0.8080 0.0000 -vt 0.0513 0.8660 0.0000 -vt 0.0574 0.8951 0.0000 -vt 0.0635 0.9241 0.0000 -vt 0.0695 0.9531 0.0000 -vt 0.7044 0.2324 0.0000 -vt 0.7049 0.2330 0.0000 -vt 0.5630 0.4114 0.0000 -vt 0.5348 0.4175 0.0000 -vt 0.5348 0.4075 0.0000 -vt 0.5630 0.4043 0.0000 -vt 0.5067 0.4235 0.0000 -vt 0.5067 0.4107 0.0000 -vt 0.4785 0.4295 0.0000 -vt 0.4785 0.4139 0.0000 -vt 0.4503 0.4355 0.0000 -vt 0.4503 0.4171 0.0000 -vt 0.4222 0.4415 0.0000 -vt 0.4222 0.4203 0.0000 -vt 0.6479 0.1652 0.0000 -vt 0.6471 0.1673 0.0000 -vt 0.3720 0.8213 0.0000 -vt 0.3652 0.8492 0.0000 -vt 0.3475 0.8486 0.0000 -vt 0.3515 0.8206 0.0000 -vt 0.3584 0.8771 0.0000 -vt 0.3434 0.8766 0.0000 -vt 0.3516 0.9050 0.0000 -vt 0.3393 0.9046 0.0000 -vt 0.3449 0.9329 0.0000 -vt 0.3353 0.9326 0.0000 -vt 0.3381 0.9608 0.0000 -vt 0.3312 0.9606 0.0000 -vt 0.7111 0.2286 0.0000 -vt 0.7114 0.2293 0.0000 -vt 0.5348 0.3962 0.0000 -vt 0.5630 0.3962 0.0000 -vt 0.5067 0.3962 0.0000 -vt 0.4785 0.3962 0.0000 -vt 0.4503 0.3962 0.0000 -vt 0.4222 0.3962 0.0000 -vt 0.6697 0.1691 0.0000 -vt 0.6697 0.1713 0.0000 -vt 0.3273 0.8479 0.0000 -vt 0.3283 0.8198 0.0000 -vt 0.3263 0.8760 0.0000 -vt 0.3254 0.9041 0.0000 -vt 0.3244 0.9322 0.0000 -vt 0.3234 0.9603 0.0000 -vt 0.7187 0.2272 0.0000 -vt 0.7187 0.2280 0.0000 -vt 0.5348 0.3849 0.0000 -vt 0.5630 0.3881 0.0000 -vt 0.5067 0.3817 0.0000 -vt 0.4785 0.3785 0.0000 -vt 0.4503 0.3753 0.0000 -vt 0.4222 0.3722 0.0000 -vt 0.6915 0.1652 0.0000 -vt 0.6923 0.1673 0.0000 -vt 0.3072 0.8472 0.0000 -vt 0.3051 0.8190 0.0000 -vt 0.3093 0.8754 0.0000 -vt 0.3114 0.9036 0.0000 -vt 0.3135 0.9318 0.0000 -vt 0.3156 0.9600 0.0000 -vt 0.7263 0.2286 0.0000 -vt 0.7260 0.2293 0.0000 -vt 0.5348 0.3750 0.0000 -vt 0.5630 0.3810 0.0000 -vt 0.5067 0.3690 0.0000 -vt 0.4785 0.3630 0.0000 -vt 0.4503 0.3570 0.0000 -vt 0.4222 0.3510 0.0000 -vt 0.7107 0.1541 0.0000 -vt 0.7122 0.1558 0.0000 -vt 0.2895 0.8466 0.0000 -vt 0.2847 0.8183 0.0000 -vt 0.2943 0.8749 0.0000 -vt 0.2991 0.9032 0.0000 -vt 0.3039 0.9315 0.0000 -vt 0.3087 0.9598 0.0000 -vt 0.7330 0.2324 0.0000 -vt 0.7325 0.2330 0.0000 -vt 0.5594 0.3206 0.0000 -vt 0.5303 0.3222 0.0000 -vt 0.5303 0.3110 0.0000 -vt 0.5594 0.3126 0.0000 -vt 0.5012 0.3238 0.0000 -vt 0.5012 0.3094 0.0000 -vt 0.4721 0.3254 0.0000 -vt 0.4721 0.3078 0.0000 -vt 0.4430 0.3270 0.0000 -vt 0.4430 0.3062 0.0000 -vt 0.4138 0.3286 0.0000 -vt 0.4138 0.3046 0.0000 -vt 0.7250 0.1371 0.0000 -vt 0.7269 0.1382 0.0000 -vt 0.2677 0.8160 0.0000 -vt 0.2597 0.8445 0.0000 -vt 0.2436 0.8439 0.0000 -vt 0.2492 0.8153 0.0000 -vt 0.2516 0.8730 0.0000 -vt 0.2380 0.8726 0.0000 -vt 0.2435 0.9016 0.0000 -vt 0.2324 0.9012 0.0000 -vt 0.2354 0.9301 0.0000 -vt 0.2268 0.9298 0.0000 -vt 0.2274 0.9586 0.0000 -vt 0.2211 0.9584 0.0000 -vt 0.7379 0.2383 0.0000 -vt 0.7373 0.2387 0.0000 -vt 0.5315 0.3004 0.0000 -vt 0.5602 0.3050 0.0000 -vt 0.5027 0.2958 0.0000 -vt 0.4739 0.2912 0.0000 -vt 0.4452 0.2866 0.0000 -vt 0.4164 0.2820 0.0000 -vt 0.7326 0.1163 0.0000 -vt 0.7347 0.1167 0.0000 -vt 0.2239 0.8433 0.0000 -vt 0.2265 0.8145 0.0000 -vt 0.2213 0.8720 0.0000 -vt 0.2187 0.9007 0.0000 -vt 0.2161 0.9294 0.0000 -vt 0.2135 0.9581 0.0000 -vt 0.7406 0.2456 0.0000 -vt 0.7398 0.2457 0.0000 -vt 0.5337 0.2917 0.0000 -vt 0.5619 0.2988 0.0000 -vt 0.5056 0.2847 0.0000 -vt 0.4775 0.2777 0.0000 -vt 0.4493 0.2706 0.0000 -vt 0.4212 0.2636 0.0000 -vt 0.7326 0.0941 0.0000 -vt 0.7347 0.0938 0.0000 -vt 0.2030 0.8425 0.0000 -vt 0.2024 0.8137 0.0000 -vt 0.2036 0.8714 0.0000 -vt 0.2042 0.9002 0.0000 -vt 0.2048 0.9290 0.0000 -vt 0.2054 0.9579 0.0000 -vt 0.7406 0.2533 0.0000 -vt 0.7398 0.2532 0.0000 -vt 0.5587 0.2316 0.0000 -vt 0.5305 0.2331 0.0000 -vt 0.5305 0.2222 0.0000 -vt 0.5587 0.2237 0.0000 -vt 0.5023 0.2347 0.0000 -vt 0.5023 0.2207 0.0000 -vt 0.4741 0.2362 0.0000 -vt 0.4741 0.2191 0.0000 -vt 0.4460 0.2377 0.0000 -vt 0.4460 0.2176 0.0000 -vt 0.4178 0.2393 0.0000 -vt 0.4178 0.2160 0.0000 -vt 0.7250 0.0733 0.0000 -vt 0.7269 0.0722 0.0000 -vt 0.1833 0.8418 0.0000 -vt 0.1797 0.8129 0.0000 -vt 0.1869 0.8708 0.0000 -vt 0.1905 0.8997 0.0000 -vt 0.1941 0.9287 0.0000 -vt 0.1977 0.9576 0.0000 -vt 0.7379 0.2605 0.0000 -vt 0.7373 0.2602 0.0000 -vt 0.5316 0.2120 0.0000 -vt 0.5595 0.2164 0.0000 -vt 0.5038 0.2075 0.0000 -vt 0.4760 0.2031 0.0000 -vt 0.4481 0.1986 0.0000 -vt 0.4203 0.1942 0.0000 -vt 0.7107 0.0563 0.0000 -vt 0.7122 0.0546 0.0000 -vt 0.1673 0.8413 0.0000 -vt 0.1612 0.8123 0.0000 -vt 0.1733 0.8703 0.0000 -vt 0.1794 0.8993 0.0000 -vt 0.1855 0.9284 0.0000 -vt 0.1915 0.9574 0.0000 -vt 0.7330 0.2665 0.0000 -vt 0.7325 0.2659 0.0000 -vt 0.5630 0.5233 0.0000 -vt 0.5348 0.5293 0.0000 -vt 0.5348 0.5194 0.0000 -vt 0.5630 0.5162 0.0000 -vt 0.5067 0.5353 0.0000 -vt 0.5067 0.5226 0.0000 -vt 0.4785 0.5413 0.0000 -vt 0.4785 0.5258 0.0000 -vt 0.4503 0.5473 0.0000 -vt 0.4503 0.5290 0.0000 -vt 0.4222 0.5533 0.0000 -vt 0.4222 0.5322 0.0000 -vt 0.6915 0.0453 0.0000 -vt 0.6923 0.0432 0.0000 -vt 0.1313 0.6549 0.0000 -vt 0.1236 0.6826 0.0000 -vt 0.1084 0.6782 0.0000 -vt 0.1138 0.6498 0.0000 -vt 0.1158 0.7103 0.0000 -vt 0.1030 0.7066 0.0000 -vt 0.1081 0.7381 0.0000 -vt 0.0975 0.7350 0.0000 -vt 0.1004 0.7658 0.0000 -vt 0.0921 0.7634 0.0000 -vt 0.0926 0.7935 0.0000 -vt 0.0867 0.7918 0.0000 -vt 0.7263 0.2703 0.0000 -vt 0.7260 0.2696 0.0000 -vt 0.5675 0.6725 0.0000 -vt 0.6180 0.6725 0.0000 -vt 0.6180 0.7350 0.0000 -vt 0.5675 0.7350 0.0000 -vt 0.2888 0.6260 0.0000 -vt 0.2855 0.6928 0.0000 -vt 0.2707 0.6836 0.0000 -vt 0.2740 0.6168 0.0000 -vt 0.2223 0.3155 0.0000 -vt 0.2863 0.2961 0.0000 -vt 0.2988 0.3082 0.0000 -vt 0.2348 0.3275 0.0000 -vt 0.2301 0.5060 0.0000 -vt 0.2301 0.5082 0.0000 -vt 0.2127 0.5082 0.0000 -vt 0.1887 0.5082 0.0000 -vt 0.1887 0.5060 0.0000 -vt 0.2061 0.5060 0.0000 -vt 0.1448 0.0767 0.0000 -vt 0.1448 0.0744 0.0000 -vt 0.2073 0.0744 0.0000 -vt 0.1068 0.3665 0.0000 -vt 0.1068 0.3689 0.0000 -vt 0.0443 0.3689 0.0000 -vt 0.5428 0.1961 0.0000 -vt 0.5428 0.1939 0.0000 -vt 0.5602 0.1939 0.0000 -vt 0.5362 0.1939 0.0000 -vt 0.5362 0.1961 0.0000 -vt 0.5188 0.1961 0.0000 -vt 0.3205 0.0552 0.0000 -vt 0.3205 0.0529 0.0000 -vt 0.3830 0.0529 0.0000 -vt 0.2073 0.0475 0.0000 -vt 0.2073 0.0498 0.0000 -vt 0.1448 0.0498 0.0000 -vt 0.6123 0.6633 0.0000 -vt 0.6101 0.6633 0.0000 -vt 0.6101 0.6161 0.0000 -vt 0.6123 0.6161 0.0000 -vt 0.5688 0.5990 0.0000 -vt 0.5703 0.5974 0.0000 -vt 0.5897 0.6615 0.0000 -vt 0.5881 0.6631 0.0000 -vt 0.6220 0.6633 0.0000 -vt 0.6198 0.6633 0.0000 -vt 0.6198 0.6161 0.0000 -vt 0.6220 0.6161 0.0000 -vt 0.6017 0.6630 0.0000 -vt 0.5998 0.6619 0.0000 -vt 0.6008 0.5950 0.0000 -vt 0.6027 0.5961 0.0000 -vt 0.2870 0.8853 0.0000 -vt 0.2892 0.8854 0.0000 -vt 0.2886 0.9027 0.0000 -vt 0.2864 0.9027 0.0000 -vt 0.3051 0.6958 0.0000 -vt 0.3027 0.6957 0.0000 -vt 0.3049 0.6333 0.0000 -vt 0.3073 0.6333 0.0000 -vt 0.3665 0.9323 0.0000 -vt 0.3643 0.9322 0.0000 -vt 0.3649 0.9148 0.0000 -vt 0.3671 0.9149 0.0000 -vt 0.3739 0.7391 0.0000 -vt 0.3716 0.7391 0.0000 -vt 0.3738 0.6766 0.0000 -vt 0.3761 0.6767 0.0000 -vt 0.2936 0.9123 0.0000 -vt 0.2930 0.9297 0.0000 -vt 0.2908 0.9296 0.0000 -vt 0.3634 0.9590 0.0000 -vt 0.3640 0.9416 0.0000 -vt 0.3662 0.9417 0.0000 -vt 0.3396 0.7024 0.0000 -vt 0.3418 0.6400 0.0000 -vt 0.3441 0.6400 0.0000 -vt 0.2430 0.6226 0.0000 -vt 0.2408 0.6851 0.0000 -vt 0.2384 0.6850 0.0000 -vt 0.1844 0.7466 0.0000 -vt 0.1850 0.7292 0.0000 -vt 0.1872 0.7293 0.0000 -vt 0.2981 0.9393 0.0000 -vt 0.2975 0.9567 0.0000 -vt 0.2953 0.9566 0.0000 -vt 0.3744 0.6575 0.0000 -vt 0.3766 0.5950 0.0000 -vt 0.3790 0.5951 0.0000 -vt 0.4000 0.6775 0.0000 -vt 0.3978 0.7400 0.0000 -vt 0.3954 0.7399 0.0000 -vt 0.6879 0.2347 0.0000 -vt 0.6879 0.3381 0.0000 -vt 0.6047 0.3381 0.0000 -vt 0.6047 0.2347 0.0000 -vt 0.8348 0.1716 0.0000 -vt 0.7516 0.1716 0.0000 -vt 0.7516 0.0682 0.0000 -vt 0.8348 0.0682 0.0000 -vt 0.5574 0.7324 0.0000 -vt 0.4625 0.7324 0.0000 -vt 0.4625 0.6290 0.0000 -vt 0.5574 0.6290 0.0000 -vt 0.3879 0.7552 0.0000 -vt 0.3863 0.8020 0.0000 -vt 0.3697 0.8014 0.0000 -vt 0.3713 0.7546 0.0000 -vt 0.5659 0.7906 0.0000 -vt 0.5659 0.8855 0.0000 -vt 0.4625 0.8855 0.0000 -vt 0.4625 0.7906 0.0000 -vt 0.3988 0.4387 0.0000 -vt 0.3039 0.4387 0.0000 -vt 0.3039 0.3555 0.0000 -vt 0.3988 0.3555 0.0000 -vt 0.1694 0.6989 0.0000 -vt 0.2525 0.7018 0.0000 -vt 0.1940 0.7238 0.0000 -vt 0.1774 0.7232 0.0000 -vt 0.2492 0.7966 0.0000 -vt 0.1924 0.7706 0.0000 -vt 0.1661 0.7937 0.0000 -vt 0.1758 0.7700 0.0000 -vt 0.3393 0.7185 0.0000 -vt 0.3559 0.7191 0.0000 -vt 0.3530 0.8004 0.0000 -vt 0.3364 0.7998 0.0000 -vt 0.2163 0.6819 0.0000 -vt 0.1695 0.6803 0.0000 -vt 0.1724 0.5989 0.0000 -vt 0.2192 0.6006 0.0000 -vt 0.4041 0.9595 0.0000 -vt 0.3875 0.9589 0.0000 -vt 0.3903 0.8776 0.0000 -vt 0.4069 0.8782 0.0000 -vt 0.2700 0.7161 0.0000 -vt 0.3168 0.7177 0.0000 -vt 0.3140 0.7990 0.0000 -vt 0.2672 0.7974 0.0000 -vt 0.4009 0.1692 0.0000 -vt 0.4009 0.1630 0.0000 -vt 0.4137 0.1630 0.0000 -vt 0.4137 0.1692 0.0000 -vt 0.2132 0.3525 0.0000 -vt 0.2132 0.3467 0.0000 -vt 0.2268 0.3467 0.0000 -vt 0.2268 0.3525 0.0000 -vt 0.3268 0.4636 0.0000 -vt 0.3268 0.4581 0.0000 -vt 0.3413 0.4581 0.0000 -vt 0.3413 0.4636 0.0000 -vt 0.1271 0.3280 0.0000 -vt 0.1271 0.3219 0.0000 -vt 0.1401 0.3219 0.0000 -vt 0.1401 0.3280 0.0000 -vt 0.1619 0.4812 0.0000 -vt 0.1619 0.4750 0.0000 -vt 0.1745 0.4750 0.0000 -vt 0.1745 0.4812 0.0000 -vt 0.2303 0.2710 0.0000 -vt 0.2303 0.2650 0.0000 -vt 0.2434 0.2650 0.0000 -vt 0.2434 0.2710 0.0000 -vt 0.1403 0.2399 0.0000 -vt 0.1403 0.2344 0.0000 -vt 0.1548 0.2344 0.0000 -vt 0.1548 0.2399 0.0000 -vt 0.1950 0.4093 0.0000 -vt 0.1950 0.4151 0.0000 -vt 0.1814 0.4151 0.0000 -vt 0.1814 0.4093 0.0000 -vt 0.5598 0.1074 0.0000 -vt 0.5598 0.1136 0.0000 -vt 0.5470 0.1136 0.0000 -vt 0.5470 0.1074 0.0000 -vt 0.1927 0.4336 0.0000 -vt 0.1927 0.4398 0.0000 -vt 0.1800 0.4398 0.0000 -vt 0.1800 0.4336 0.0000 -vt 0.5620 0.0832 0.0000 -vt 0.5620 0.0890 0.0000 -vt 0.5484 0.0890 0.0000 -vt 0.5484 0.0832 0.0000 -vt 0.2282 0.2153 0.0000 -vt 0.2282 0.2098 0.0000 -vt 0.2426 0.2098 0.0000 -vt 0.2426 0.2153 0.0000 -vt 0.0729 0.4813 0.0000 -vt 0.0729 0.4753 0.0000 -vt 0.0860 0.4753 0.0000 -vt 0.0860 0.4813 0.0000 -vt 0.3222 0.2652 0.0000 -vt 0.3222 0.2590 0.0000 -vt 0.3348 0.2590 0.0000 -vt 0.3348 0.2652 0.0000 -vt 0.2319 0.2396 0.0000 -vt 0.2319 0.2335 0.0000 -vt 0.2450 0.2335 0.0000 -vt 0.2450 0.2396 0.0000 -vt 0.3085 0.1695 0.0000 -vt 0.3085 0.1640 0.0000 -vt 0.3230 0.1640 0.0000 -vt 0.3230 0.1695 0.0000 -vt 0.3987 0.1445 0.0000 -vt 0.3987 0.1387 0.0000 -vt 0.4123 0.1387 0.0000 -vt 0.4123 0.1445 0.0000 -vt 0.2154 0.3771 0.0000 -vt 0.2154 0.3709 0.0000 -vt 0.2282 0.3709 0.0000 -vt 0.2282 0.3771 0.0000 -vt 0.4279 0.1630 0.0000 -vt 0.4279 0.1692 0.0000 -vt 0.2419 0.3467 0.0000 -vt 0.2419 0.3525 0.0000 -vt 0.3574 0.4581 0.0000 -vt 0.3574 0.4636 0.0000 -vt 0.1546 0.3219 0.0000 -vt 0.1546 0.3280 0.0000 -vt 0.1886 0.4750 0.0000 -vt 0.1886 0.4812 0.0000 -vt 0.2579 0.2650 0.0000 -vt 0.2579 0.2710 0.0000 -vt 0.1708 0.2344 0.0000 -vt 0.1708 0.2399 0.0000 -vt 0.1663 0.4151 0.0000 -vt 0.1663 0.4093 0.0000 -vt 0.5328 0.1136 0.0000 -vt 0.5328 0.1074 0.0000 -vt 0.1658 0.4398 0.0000 -vt 0.1658 0.4336 0.0000 -vt 0.5333 0.0890 0.0000 -vt 0.5333 0.0832 0.0000 -vt 0.2587 0.2098 0.0000 -vt 0.2587 0.2153 0.0000 -vt 0.1005 0.4753 0.0000 -vt 0.1005 0.4813 0.0000 -vt 0.3489 0.2590 0.0000 -vt 0.3489 0.2652 0.0000 -vt 0.2595 0.2335 0.0000 -vt 0.2595 0.2396 0.0000 -vt 0.3391 0.1640 0.0000 -vt 0.3391 0.1695 0.0000 -vt 0.4274 0.1387 0.0000 -vt 0.4274 0.1445 0.0000 -vt 0.2424 0.3709 0.0000 -vt 0.2424 0.3771 0.0000 -vt 0.4420 0.1630 0.0000 -vt 0.4420 0.1692 0.0000 -vt 0.2570 0.3467 0.0000 -vt 0.2570 0.3525 0.0000 -vt 0.3735 0.4581 0.0000 -vt 0.3735 0.4636 0.0000 -vt 0.1692 0.3219 0.0000 -vt 0.1692 0.3280 0.0000 -vt 0.2027 0.4750 0.0000 -vt 0.2027 0.4812 0.0000 -vt 0.2724 0.2650 0.0000 -vt 0.2724 0.2710 0.0000 -vt 0.1869 0.2344 0.0000 -vt 0.1869 0.2399 0.0000 -vt 0.1512 0.4151 0.0000 -vt 0.1512 0.4093 0.0000 -vt 0.5186 0.1136 0.0000 -vt 0.5186 0.1074 0.0000 -vt 0.1516 0.4398 0.0000 -vt 0.1516 0.4336 0.0000 -vt 0.5182 0.0890 0.0000 -vt 0.5182 0.0832 0.0000 -vt 0.2748 0.2098 0.0000 -vt 0.2748 0.2153 0.0000 -vt 0.1150 0.4753 0.0000 -vt 0.1150 0.4813 0.0000 -vt 0.3630 0.2590 0.0000 -vt 0.3630 0.2652 0.0000 -vt 0.2740 0.2335 0.0000 -vt 0.2740 0.2396 0.0000 -vt 0.3551 0.1640 0.0000 -vt 0.3551 0.1695 0.0000 -vt 0.4425 0.1387 0.0000 -vt 0.4425 0.1445 0.0000 -vt 0.2566 0.3709 0.0000 -vt 0.2566 0.3771 0.0000 -vt 0.4562 0.1630 0.0000 -vt 0.4562 0.1692 0.0000 -vt 0.2722 0.3467 0.0000 -vt 0.2722 0.3525 0.0000 -vt 0.3895 0.4581 0.0000 -vt 0.3895 0.4636 0.0000 -vt 0.1837 0.3219 0.0000 -vt 0.1837 0.3280 0.0000 -vt 0.2167 0.4750 0.0000 -vt 0.2167 0.4812 0.0000 -vt 0.2870 0.2650 0.0000 -vt 0.2870 0.2710 0.0000 -vt 0.2030 0.2344 0.0000 -vt 0.2030 0.2399 0.0000 -vt 0.1360 0.4151 0.0000 -vt 0.1360 0.4093 0.0000 -vt 0.5045 0.1136 0.0000 -vt 0.5045 0.1074 0.0000 -vt 0.1374 0.4398 0.0000 -vt 0.1374 0.4336 0.0000 -vt 0.5030 0.0890 0.0000 -vt 0.5030 0.0832 0.0000 -vt 0.2909 0.2098 0.0000 -vt 0.2909 0.2153 0.0000 -vt 0.1295 0.4753 0.0000 -vt 0.1295 0.4813 0.0000 -vt 0.3770 0.2590 0.0000 -vt 0.3770 0.2652 0.0000 -vt 0.2885 0.2335 0.0000 -vt 0.2885 0.2396 0.0000 -vt 0.3712 0.1640 0.0000 -vt 0.3712 0.1695 0.0000 -vt 0.4576 0.1387 0.0000 -vt 0.4576 0.1445 0.0000 -vt 0.2707 0.3709 0.0000 -vt 0.2707 0.3771 0.0000 -vt 0.4690 0.1630 0.0000 -vt 0.4690 0.1692 0.0000 -vt 0.2858 0.3467 0.0000 -vt 0.2858 0.3525 0.0000 -vt 0.4040 0.4581 0.0000 -vt 0.4040 0.4636 0.0000 -vt 0.1967 0.3219 0.0000 -vt 0.1967 0.3280 0.0000 -vt 0.2294 0.4750 0.0000 -vt 0.2294 0.4812 0.0000 -vt 0.3000 0.2650 0.0000 -vt 0.3000 0.2710 0.0000 -vt 0.2175 0.2344 0.0000 -vt 0.2175 0.2399 0.0000 -vt 0.1224 0.4151 0.0000 -vt 0.1224 0.4093 0.0000 -vt 0.4917 0.1136 0.0000 -vt 0.4917 0.1074 0.0000 -vt 0.1247 0.4398 0.0000 -vt 0.1247 0.4336 0.0000 -vt 0.4894 0.0890 0.0000 -vt 0.4894 0.0832 0.0000 -vt 0.3053 0.2098 0.0000 -vt 0.3053 0.2153 0.0000 -vt 0.1426 0.4753 0.0000 -vt 0.1426 0.4813 0.0000 -vt 0.3897 0.2590 0.0000 -vt 0.3897 0.2652 0.0000 -vt 0.3016 0.2335 0.0000 -vt 0.3016 0.2396 0.0000 -vt 0.3857 0.1640 0.0000 -vt 0.3857 0.1695 0.0000 -vt 0.4712 0.1387 0.0000 -vt 0.4712 0.1445 0.0000 -vt 0.2835 0.3709 0.0000 -vt 0.2835 0.3771 0.0000 -vt 0.7066 0.2892 0.0000 -vt 0.7150 0.2843 0.0000 -vt 0.7246 0.2826 0.0000 -vt 0.7342 0.2843 0.0000 -vt 0.7427 0.2892 0.0000 -vt 0.7489 0.2966 0.0000 -vt 0.7523 0.3058 0.0000 -vt 0.7523 0.3155 0.0000 -vt 0.7489 0.3247 0.0000 -vt 0.7427 0.3322 0.0000 -vt 0.7342 0.3370 0.0000 -vt 0.7246 0.3387 0.0000 -vt 0.7150 0.3370 0.0000 -vt 0.7066 0.3322 0.0000 -vt 0.7003 0.3247 0.0000 -vt 0.6970 0.3155 0.0000 -vt 0.6970 0.3058 0.0000 -vt 0.7003 0.2966 0.0000 -vt 0.6635 0.1384 0.0000 -vt 0.6560 0.1321 0.0000 -vt 0.6512 0.1237 0.0000 -vt 0.6495 0.1141 0.0000 -vt 0.6512 0.1045 0.0000 -vt 0.6560 0.0960 0.0000 -vt 0.6635 0.0898 0.0000 -vt 0.6727 0.0864 0.0000 -vt 0.6824 0.0864 0.0000 -vt 0.6916 0.0898 0.0000 -vt 0.6990 0.0960 0.0000 -vt 0.7039 0.1045 0.0000 -vt 0.7056 0.1141 0.0000 -vt 0.7039 0.1237 0.0000 -vt 0.6990 0.1321 0.0000 -vt 0.6916 0.1384 0.0000 -vt 0.6824 0.1417 0.0000 -vt 0.6727 0.1417 0.0000 -vt 0.4877 0.1507 0.0000 -vt 0.4877 0.1407 0.0000 -vt 0.4892 0.1425 0.0000 -vt 0.4892 0.1489 0.0000 -vt 0.5023 0.1407 0.0000 -vt 0.5023 0.1425 0.0000 -vt 0.5170 0.1407 0.0000 -vt 0.5170 0.1425 0.0000 -vt 0.5316 0.1407 0.0000 -vt 0.5316 0.1425 0.0000 -vt 0.5462 0.1407 0.0000 -vt 0.5462 0.1425 0.0000 -vt 0.5608 0.1407 0.0000 -vt 0.5594 0.1425 0.0000 -vt 0.5608 0.1507 0.0000 -vt 0.5594 0.1489 0.0000 -vt 0.5462 0.1507 0.0000 -vt 0.5462 0.1489 0.0000 -vt 0.5316 0.1507 0.0000 -vt 0.5316 0.1489 0.0000 -vt 0.5170 0.1507 0.0000 -vt 0.5170 0.1489 0.0000 -vt 0.5023 0.1507 0.0000 -vt 0.5023 0.1489 0.0000 -vt 0.3320 0.3288 0.0000 -vt 0.3170 0.3288 0.0000 -vt 0.3185 0.3274 0.0000 -vt 0.3320 0.3274 0.0000 -vt 0.3170 0.3208 0.0000 -vt 0.3185 0.3223 0.0000 -vt 0.3320 0.3208 0.0000 -vt 0.3320 0.3223 0.0000 -vt 0.3470 0.3208 0.0000 -vt 0.3470 0.3223 0.0000 -vt 0.3620 0.3208 0.0000 -vt 0.3620 0.3223 0.0000 -vt 0.3770 0.3208 0.0000 -vt 0.3770 0.3223 0.0000 -vt 0.3919 0.3208 0.0000 -vt 0.3904 0.3223 0.0000 -vt 0.3919 0.3288 0.0000 -vt 0.3904 0.3274 0.0000 -vt 0.3770 0.3288 0.0000 -vt 0.3770 0.3274 0.0000 -vt 0.3620 0.3288 0.0000 -vt 0.3620 0.3274 0.0000 -vt 0.3470 0.3288 0.0000 -vt 0.3470 0.3274 0.0000 -vt 0.3320 0.3111 0.0000 -vt 0.3170 0.3111 0.0000 -vt 0.3185 0.3092 0.0000 -vt 0.3320 0.3092 0.0000 -vt 0.3170 0.3007 0.0000 -vt 0.3185 0.3026 0.0000 -vt 0.3320 0.3007 0.0000 -vt 0.3320 0.3026 0.0000 -vt 0.3470 0.3007 0.0000 -vt 0.3470 0.3026 0.0000 -vt 0.3620 0.3007 0.0000 -vt 0.3620 0.3026 0.0000 -vt 0.3770 0.3007 0.0000 -vt 0.3770 0.3026 0.0000 -vt 0.3919 0.3007 0.0000 -vt 0.3904 0.3026 0.0000 -vt 0.3919 0.3111 0.0000 -vt 0.3904 0.3092 0.0000 -vt 0.3770 0.3111 0.0000 -vt 0.3770 0.3092 0.0000 -vt 0.3620 0.3111 0.0000 -vt 0.3620 0.3092 0.0000 -vt 0.3470 0.3111 0.0000 -vt 0.3470 0.3092 0.0000 -vt 0.3320 0.2910 0.0000 -vt 0.3170 0.2910 0.0000 -vt 0.3185 0.2895 0.0000 -vt 0.3320 0.2895 0.0000 -vt 0.3170 0.2830 0.0000 -vt 0.3185 0.2844 0.0000 -vt 0.3320 0.2830 0.0000 -vt 0.3320 0.2844 0.0000 -vt 0.3470 0.2830 0.0000 -vt 0.3470 0.2844 0.0000 -vt 0.3620 0.2830 0.0000 -vt 0.3620 0.2844 0.0000 -vt 0.3770 0.2830 0.0000 -vt 0.3770 0.2844 0.0000 -vt 0.3919 0.2830 0.0000 -vt 0.3904 0.2844 0.0000 -vt 0.3919 0.2910 0.0000 -vt 0.3904 0.2895 0.0000 -vt 0.3770 0.2910 0.0000 -vt 0.3770 0.2895 0.0000 -vt 0.3620 0.2910 0.0000 -vt 0.3620 0.2895 0.0000 -vt 0.3470 0.2910 0.0000 -vt 0.3470 0.2895 0.0000 -vt 0.3780 0.2111 0.0000 -vt 0.3926 0.2111 0.0000 -vt 0.3912 0.2129 0.0000 -vt 0.3780 0.2129 0.0000 -vt 0.3926 0.2211 0.0000 -vt 0.3912 0.2193 0.0000 -vt 0.3780 0.2211 0.0000 -vt 0.3780 0.2193 0.0000 -vt 0.3634 0.2211 0.0000 -vt 0.3634 0.2193 0.0000 -vt 0.3488 0.2211 0.0000 -vt 0.3488 0.2193 0.0000 -vt 0.3341 0.2211 0.0000 -vt 0.3341 0.2193 0.0000 -vt 0.3195 0.2211 0.0000 -vt 0.3210 0.2193 0.0000 -vt 0.3195 0.2111 0.0000 -vt 0.3210 0.2129 0.0000 -vt 0.3341 0.2111 0.0000 -vt 0.3341 0.2129 0.0000 -vt 0.3488 0.2111 0.0000 -vt 0.3488 0.2129 0.0000 -vt 0.3634 0.2111 0.0000 -vt 0.3634 0.2129 0.0000 -vt 0.3780 0.2310 0.0000 -vt 0.3926 0.2310 0.0000 -vt 0.3912 0.2326 0.0000 -vt 0.3780 0.2326 0.0000 -vt 0.3926 0.2398 0.0000 -vt 0.3912 0.2382 0.0000 -vt 0.3780 0.2398 0.0000 -vt 0.3780 0.2382 0.0000 -vt 0.3634 0.2398 0.0000 -vt 0.3634 0.2382 0.0000 -vt 0.3488 0.2398 0.0000 -vt 0.3488 0.2382 0.0000 -vt 0.3341 0.2398 0.0000 -vt 0.3341 0.2382 0.0000 -vt 0.3195 0.2398 0.0000 -vt 0.3210 0.2382 0.0000 -vt 0.3195 0.2310 0.0000 -vt 0.3210 0.2326 0.0000 -vt 0.3341 0.2310 0.0000 -vt 0.3341 0.2326 0.0000 -vt 0.3488 0.2310 0.0000 -vt 0.3488 0.2326 0.0000 -vt 0.3634 0.2310 0.0000 -vt 0.3634 0.2326 0.0000 -vt 0.2256 0.4327 0.0000 -vt 0.2106 0.4327 0.0000 -vt 0.2121 0.4309 0.0000 -vt 0.2256 0.4309 0.0000 -vt 0.2106 0.4229 0.0000 -vt 0.2121 0.4247 0.0000 -vt 0.2256 0.4229 0.0000 -vt 0.2256 0.4247 0.0000 -vt 0.2405 0.4229 0.0000 -vt 0.2405 0.4247 0.0000 -vt 0.2555 0.4229 0.0000 -vt 0.2555 0.4247 0.0000 -vt 0.2705 0.4229 0.0000 -vt 0.2705 0.4247 0.0000 -vt 0.2855 0.4229 0.0000 -vt 0.2840 0.4247 0.0000 -vt 0.2855 0.4327 0.0000 -vt 0.2840 0.4309 0.0000 -vt 0.2705 0.4327 0.0000 -vt 0.2705 0.4309 0.0000 -vt 0.2555 0.4327 0.0000 -vt 0.2555 0.4309 0.0000 -vt 0.2405 0.4327 0.0000 -vt 0.2405 0.4309 0.0000 -vt 0.2256 0.4126 0.0000 -vt 0.2106 0.4126 0.0000 -vt 0.2121 0.4108 0.0000 -vt 0.2256 0.4108 0.0000 -vt 0.2106 0.4028 0.0000 -vt 0.2121 0.4046 0.0000 -vt 0.2256 0.4028 0.0000 -vt 0.2256 0.4046 0.0000 -vt 0.2405 0.4028 0.0000 -vt 0.2405 0.4046 0.0000 -vt 0.2555 0.4028 0.0000 -vt 0.2555 0.4046 0.0000 -vt 0.2705 0.4028 0.0000 -vt 0.2705 0.4046 0.0000 -vt 0.2855 0.4028 0.0000 -vt 0.2840 0.4046 0.0000 -vt 0.2855 0.4126 0.0000 -vt 0.2840 0.4108 0.0000 -vt 0.2705 0.4126 0.0000 -vt 0.2705 0.4108 0.0000 -vt 0.2555 0.4126 0.0000 -vt 0.2555 0.4108 0.0000 -vt 0.2405 0.4126 0.0000 -vt 0.2405 0.4108 0.0000 -vt 0.5023 0.1694 0.0000 -vt 0.4877 0.1694 0.0000 -vt 0.4892 0.1679 0.0000 -vt 0.5023 0.1679 0.0000 -vt 0.4877 0.1607 0.0000 -vt 0.4892 0.1622 0.0000 -vt 0.5023 0.1607 0.0000 -vt 0.5023 0.1622 0.0000 -vt 0.5170 0.1607 0.0000 -vt 0.5170 0.1622 0.0000 -vt 0.5316 0.1607 0.0000 -vt 0.5316 0.1622 0.0000 -vt 0.5462 0.1607 0.0000 -vt 0.5462 0.1622 0.0000 -vt 0.5608 0.1607 0.0000 -vt 0.5594 0.1622 0.0000 -vt 0.5608 0.1694 0.0000 -vt 0.5594 0.1679 0.0000 -vt 0.5462 0.1694 0.0000 -vt 0.5462 0.1679 0.0000 -vt 0.5316 0.1694 0.0000 -vt 0.5316 0.1679 0.0000 -vt 0.5170 0.1694 0.0000 -vt 0.5170 0.1679 0.0000 -vt 0.5601 0.5355 0.0000 -vt 0.5604 0.5418 0.0000 -vt 0.5569 0.5419 0.0000 -vt 0.5567 0.5356 0.0000 -vt 0.2327 0.1881 0.0000 -vt 0.2455 0.1881 0.0000 -vt 0.2455 0.1916 0.0000 -vt 0.2327 0.1916 0.0000 -vt 0.2597 0.1881 0.0000 -vt 0.2597 0.1916 0.0000 -vt 0.2738 0.1881 0.0000 -vt 0.2738 0.1916 0.0000 -vt 0.2880 0.1881 0.0000 -vt 0.2880 0.1916 0.0000 -vt 0.3008 0.1881 0.0000 -vt 0.3008 0.1916 0.0000 -vt 0.5558 0.4298 0.0000 -vt 0.5569 0.4237 0.0000 -vt 0.5603 0.4243 0.0000 -vt 0.5593 0.4304 0.0000 -vt 0.5598 0.0427 0.0000 -vt 0.5470 0.0427 0.0000 -vt 0.5470 0.0392 0.0000 -vt 0.5598 0.0392 0.0000 -vt 0.5328 0.0427 0.0000 -vt 0.5328 0.0392 0.0000 -vt 0.5186 0.0427 0.0000 -vt 0.5186 0.0392 0.0000 -vt 0.5045 0.0427 0.0000 -vt 0.5045 0.0392 0.0000 -vt 0.4917 0.0427 0.0000 -vt 0.4917 0.0392 0.0000 -vt 0.2351 0.0552 0.0000 -vt 0.2206 0.0552 0.0000 -vt 0.2206 0.0522 0.0000 -vt 0.2351 0.0522 0.0000 -vt 0.5489 0.3527 0.0000 -vt 0.5495 0.3589 0.0000 -vt 0.5461 0.3593 0.0000 -vt 0.5454 0.3531 0.0000 -vt 0.5595 0.0647 0.0000 -vt 0.5468 0.0647 0.0000 -vt 0.5468 0.0612 0.0000 -vt 0.5595 0.0612 0.0000 -vt 0.5328 0.0647 0.0000 -vt 0.5328 0.0612 0.0000 -vt 0.5187 0.0647 0.0000 -vt 0.5187 0.0612 0.0000 -vt 0.5046 0.0647 0.0000 -vt 0.5046 0.0612 0.0000 -vt 0.4920 0.0647 0.0000 -vt 0.4920 0.0612 0.0000 -vt 0.5166 0.4295 0.0000 -vt 0.5229 0.4292 0.0000 -vt 0.5230 0.4327 0.0000 -vt 0.5167 0.4329 0.0000 -vt 0.2978 0.0552 0.0000 -vt 0.2833 0.0552 0.0000 -vt 0.2833 0.0522 0.0000 -vt 0.2978 0.0522 0.0000 -vt 0.2673 0.0552 0.0000 -vt 0.2673 0.0522 0.0000 -vt 0.2512 0.0552 0.0000 -vt 0.2512 0.0522 0.0000 -vt 0.1408 0.3034 0.0000 -vt 0.1281 0.3034 0.0000 -vt 0.1281 0.2999 0.0000 -vt 0.1408 0.2999 0.0000 -vt 0.5414 0.4645 0.0000 -vt 0.5476 0.4645 0.0000 -vt 0.5476 0.4680 0.0000 -vt 0.5414 0.4680 0.0000 -vt 0.2930 0.1692 0.0000 -vt 0.2803 0.1692 0.0000 -vt 0.2803 0.1657 0.0000 -vt 0.2930 0.1657 0.0000 -vt 0.2663 0.1692 0.0000 -vt 0.2663 0.1657 0.0000 -vt 0.2522 0.1692 0.0000 -vt 0.2522 0.1657 0.0000 -vt 0.2381 0.1692 0.0000 -vt 0.2381 0.1657 0.0000 -vt 0.2254 0.1692 0.0000 -vt 0.2254 0.1657 0.0000 -vt 0.5441 0.5455 0.0000 -vt 0.5503 0.5455 0.0000 -vt 0.5503 0.5489 0.0000 -vt 0.5441 0.5489 0.0000 -vt 0.1957 0.3034 0.0000 -vt 0.1830 0.3034 0.0000 -vt 0.1830 0.2999 0.0000 -vt 0.1957 0.2999 0.0000 -vt 0.1689 0.3034 0.0000 -vt 0.1689 0.2999 0.0000 -vt 0.1549 0.3034 0.0000 -vt 0.1549 0.2999 0.0000 -vt 0.0594 0.1205 0.0000 -vt 0.0449 0.1205 0.0000 -vt 0.0449 0.1174 0.0000 -vt 0.0594 0.1174 0.0000 -vt 0.5539 0.4648 0.0000 -vt 0.5602 0.4645 0.0000 -vt 0.5603 0.4680 0.0000 -vt 0.5541 0.4682 0.0000 -vt 0.2099 0.0985 0.0000 -vt 0.1955 0.0985 0.0000 -vt 0.1955 0.0954 0.0000 -vt 0.2099 0.0954 0.0000 -vt 0.1794 0.0985 0.0000 -vt 0.1794 0.0954 0.0000 -vt 0.1633 0.0985 0.0000 -vt 0.1633 0.0954 0.0000 -vt 0.1472 0.0985 0.0000 -vt 0.1472 0.0954 0.0000 -vt 0.1328 0.0985 0.0000 -vt 0.1328 0.0954 0.0000 -vt 0.5328 0.3527 0.0000 -vt 0.5334 0.3589 0.0000 -vt 0.5299 0.3593 0.0000 -vt 0.5293 0.3531 0.0000 -vt 0.1221 0.1205 0.0000 -vt 0.1076 0.1205 0.0000 -vt 0.1076 0.1174 0.0000 -vt 0.1221 0.1174 0.0000 -vt 0.0915 0.1205 0.0000 -vt 0.0915 0.1174 0.0000 -vt 0.0754 0.1205 0.0000 -vt 0.0754 0.1174 0.0000 -vt 0.1406 0.2813 0.0000 -vt 0.1279 0.2813 0.0000 -vt 0.1279 0.2779 0.0000 -vt 0.1406 0.2779 0.0000 -vt 0.3581 0.4942 0.0000 -vt 0.3591 0.4880 0.0000 -vt 0.3626 0.4886 0.0000 -vt 0.3615 0.4948 0.0000 -vt 0.3131 0.1168 0.0000 -vt 0.3258 0.1168 0.0000 -vt 0.3258 0.1203 0.0000 -vt 0.3131 0.1203 0.0000 -vt 0.3400 0.1168 0.0000 -vt 0.3400 0.1203 0.0000 -vt 0.3542 0.1168 0.0000 -vt 0.3542 0.1203 0.0000 -vt 0.3684 0.1168 0.0000 -vt 0.3684 0.1203 0.0000 -vt 0.3811 0.1168 0.0000 -vt 0.3811 0.1203 0.0000 -vt 0.5332 0.5411 0.0000 -vt 0.5334 0.5474 0.0000 -vt 0.5299 0.5475 0.0000 -vt 0.5297 0.5412 0.0000 -vt 0.1959 0.2813 0.0000 -vt 0.1832 0.2813 0.0000 -vt 0.1832 0.2779 0.0000 -vt 0.1959 0.2779 0.0000 -vt 0.1690 0.2813 0.0000 -vt 0.1690 0.2779 0.0000 -vt 0.1548 0.2813 0.0000 -vt 0.1548 0.2779 0.0000 -vt 0.1487 0.1445 0.0000 -vt 0.1351 0.1445 0.0000 -vt 0.1351 0.1412 0.0000 -vt 0.1487 0.1412 0.0000 -vt 0.5064 0.4680 0.0000 -vt 0.5002 0.4682 0.0000 -vt 0.5001 0.4648 0.0000 -vt 0.5063 0.4645 0.0000 -vt 0.3987 0.0732 0.0000 -vt 0.4123 0.0732 0.0000 -vt 0.4123 0.0764 0.0000 -vt 0.3987 0.0764 0.0000 -vt 0.4274 0.0732 0.0000 -vt 0.4274 0.0764 0.0000 -vt 0.4425 0.0732 0.0000 -vt 0.4425 0.0764 0.0000 -vt 0.4576 0.0732 0.0000 -vt 0.4576 0.0764 0.0000 -vt 0.4712 0.0732 0.0000 -vt 0.4712 0.0764 0.0000 -vt 0.4000 0.4914 0.0000 -vt 0.3940 0.4931 0.0000 -vt 0.3930 0.4897 0.0000 -vt 0.3991 0.4880 0.0000 -vt 0.2076 0.1445 0.0000 -vt 0.1940 0.1445 0.0000 -vt 0.1940 0.1412 0.0000 -vt 0.2076 0.1412 0.0000 -vt 0.1789 0.1445 0.0000 -vt 0.1789 0.1412 0.0000 -vt 0.1638 0.1445 0.0000 -vt 0.1638 0.1412 0.0000 -vt 0.2810 0.1410 0.0000 -vt 0.2941 0.1410 0.0000 -vt 0.2941 0.1444 0.0000 -vt 0.2810 0.1444 0.0000 -vt 0.5591 0.2697 0.0000 -vt 0.5532 0.2676 0.0000 -vt 0.5544 0.2643 0.0000 -vt 0.5603 0.2665 0.0000 -vt 0.1440 0.1907 0.0000 -vt 0.1571 0.1907 0.0000 -vt 0.1571 0.1941 0.0000 -vt 0.1440 0.1941 0.0000 -vt 0.1716 0.1907 0.0000 -vt 0.1716 0.1941 0.0000 -vt 0.1861 0.1907 0.0000 -vt 0.1861 0.1941 0.0000 -vt 0.2007 0.1907 0.0000 -vt 0.2007 0.1941 0.0000 -vt 0.2137 0.1907 0.0000 -vt 0.2137 0.1941 0.0000 -vt 0.5064 0.3562 0.0000 -vt 0.5002 0.3564 0.0000 -vt 0.5001 0.3529 0.0000 -vt 0.5063 0.3527 0.0000 -vt 0.2244 0.1410 0.0000 -vt 0.2374 0.1410 0.0000 -vt 0.2374 0.1444 0.0000 -vt 0.2244 0.1444 0.0000 -vt 0.2520 0.1410 0.0000 -vt 0.2520 0.1444 0.0000 -vt 0.2665 0.1410 0.0000 -vt 0.2665 0.1444 0.0000 -vt 0.2810 0.1170 0.0000 -vt 0.2941 0.1170 0.0000 -vt 0.2941 0.1203 0.0000 -vt 0.2810 0.1203 0.0000 -vt 0.5234 0.5446 0.0000 -vt 0.5172 0.5448 0.0000 -vt 0.5170 0.5413 0.0000 -vt 0.5233 0.5411 0.0000 -vt 0.1365 0.1658 0.0000 -vt 0.1496 0.1658 0.0000 -vt 0.1496 0.1692 0.0000 -vt 0.1365 0.1692 0.0000 -vt 0.1641 0.1658 0.0000 -vt 0.1641 0.1692 0.0000 -vt 0.1786 0.1658 0.0000 -vt 0.1786 0.1692 0.0000 -vt 0.1931 0.1658 0.0000 -vt 0.1931 0.1692 0.0000 -vt 0.2062 0.1658 0.0000 -vt 0.2062 0.1692 0.0000 -vt 0.5323 0.2697 0.0000 -vt 0.5264 0.2676 0.0000 -vt 0.5276 0.2643 0.0000 -vt 0.5335 0.2665 0.0000 -vt 0.2244 0.1170 0.0000 -vt 0.2374 0.1170 0.0000 -vt 0.2374 0.1203 0.0000 -vt 0.2244 0.1203 0.0000 -vt 0.2520 0.1170 0.0000 -vt 0.2520 0.1203 0.0000 -vt 0.2665 0.1170 0.0000 -vt 0.2665 0.1203 0.0000 -vt 0.1487 0.1204 0.0000 -vt 0.1351 0.1204 0.0000 -vt 0.1351 0.1172 0.0000 -vt 0.1487 0.1172 0.0000 -vt 0.3867 0.4914 0.0000 -vt 0.3807 0.4931 0.0000 -vt 0.3797 0.4897 0.0000 -vt 0.3857 0.4880 0.0000 -vt 0.0472 0.1412 0.0000 -vt 0.0608 0.1412 0.0000 -vt 0.0608 0.1445 0.0000 -vt 0.0472 0.1445 0.0000 -vt 0.0759 0.1412 0.0000 -vt 0.0759 0.1445 0.0000 -vt 0.0910 0.1412 0.0000 -vt 0.0910 0.1445 0.0000 -vt 0.1062 0.1412 0.0000 -vt 0.1062 0.1445 0.0000 -vt 0.1198 0.1412 0.0000 -vt 0.1198 0.1445 0.0000 -vt 0.5195 0.3591 0.0000 -vt 0.5193 0.3528 0.0000 -vt 0.5228 0.3527 0.0000 -vt 0.5230 0.3590 0.0000 -vt 0.2076 0.1204 0.0000 -vt 0.1940 0.1204 0.0000 -vt 0.1940 0.1172 0.0000 -vt 0.2076 0.1172 0.0000 -vt 0.1789 0.1204 0.0000 -vt 0.1789 0.1172 0.0000 -vt 0.1638 0.1204 0.0000 -vt 0.1638 0.1172 0.0000 -vt 0.4892 0.1392 0.0000 -vt 0.5023 0.1392 0.0000 -vt 0.4877 0.1320 0.0000 -vt 0.4892 0.1335 0.0000 -vt 0.5023 0.1320 0.0000 -vt 0.5023 0.1335 0.0000 -vt 0.5170 0.1320 0.0000 -vt 0.5170 0.1335 0.0000 -vt 0.5316 0.1320 0.0000 -vt 0.5316 0.1335 0.0000 -vt 0.5462 0.1320 0.0000 -vt 0.5462 0.1335 0.0000 -vt 0.5608 0.1320 0.0000 -vt 0.5594 0.1335 0.0000 -vt 0.5594 0.1392 0.0000 -vt 0.5462 0.1392 0.0000 -vt 0.5316 0.1392 0.0000 -vt 0.5170 0.1392 0.0000 -vt 0.3185 0.3191 0.0000 -vt 0.3320 0.3191 0.0000 -vt 0.3185 0.3128 0.0000 -vt 0.3320 0.3128 0.0000 -vt 0.3470 0.3128 0.0000 -vt 0.3620 0.3128 0.0000 -vt 0.3770 0.3128 0.0000 -vt 0.3904 0.3128 0.0000 -vt 0.3904 0.3191 0.0000 -vt 0.3770 0.3191 0.0000 -vt 0.3620 0.3191 0.0000 -vt 0.3470 0.3191 0.0000 -vt 0.3185 0.2990 0.0000 -vt 0.3320 0.2990 0.0000 -vt 0.3185 0.2927 0.0000 -vt 0.3320 0.2927 0.0000 -vt 0.3470 0.2927 0.0000 -vt 0.3620 0.2927 0.0000 -vt 0.3770 0.2927 0.0000 -vt 0.3904 0.2927 0.0000 -vt 0.3904 0.2990 0.0000 -vt 0.3770 0.2990 0.0000 -vt 0.3620 0.2990 0.0000 -vt 0.3470 0.2990 0.0000 -vt 0.3780 0.2023 0.0000 -vt 0.3926 0.2023 0.0000 -vt 0.3912 0.2039 0.0000 -vt 0.3780 0.2039 0.0000 -vt 0.3912 0.2095 0.0000 -vt 0.3780 0.2095 0.0000 -vt 0.3634 0.2095 0.0000 -vt 0.3488 0.2095 0.0000 -vt 0.3341 0.2095 0.0000 -vt 0.3210 0.2095 0.0000 -vt 0.3195 0.2023 0.0000 -vt 0.3210 0.2039 0.0000 -vt 0.3341 0.2023 0.0000 -vt 0.3341 0.2039 0.0000 -vt 0.3488 0.2023 0.0000 -vt 0.3488 0.2039 0.0000 -vt 0.3634 0.2023 0.0000 -vt 0.3634 0.2039 0.0000 -vt 0.3912 0.2228 0.0000 -vt 0.3780 0.2228 0.0000 -vt 0.3912 0.2292 0.0000 -vt 0.3780 0.2292 0.0000 -vt 0.3634 0.2292 0.0000 -vt 0.3488 0.2292 0.0000 -vt 0.3341 0.2292 0.0000 -vt 0.3210 0.2292 0.0000 -vt 0.3210 0.2228 0.0000 -vt 0.3341 0.2228 0.0000 -vt 0.3488 0.2228 0.0000 -vt 0.3634 0.2228 0.0000 -vt 0.2256 0.4406 0.0000 -vt 0.2106 0.4406 0.0000 -vt 0.2121 0.4392 0.0000 -vt 0.2256 0.4392 0.0000 -vt 0.2121 0.4341 0.0000 -vt 0.2256 0.4341 0.0000 -vt 0.2405 0.4341 0.0000 -vt 0.2555 0.4341 0.0000 -vt 0.2705 0.4341 0.0000 -vt 0.2840 0.4341 0.0000 -vt 0.2855 0.4406 0.0000 -vt 0.2840 0.4392 0.0000 -vt 0.2705 0.4406 0.0000 -vt 0.2705 0.4392 0.0000 -vt 0.2555 0.4406 0.0000 -vt 0.2555 0.4392 0.0000 -vt 0.2405 0.4406 0.0000 -vt 0.2405 0.4392 0.0000 -vt 0.2121 0.4211 0.0000 -vt 0.2256 0.4211 0.0000 -vt 0.2121 0.4144 0.0000 -vt 0.2256 0.4144 0.0000 -vt 0.2405 0.4144 0.0000 -vt 0.2555 0.4144 0.0000 -vt 0.2705 0.4144 0.0000 -vt 0.2840 0.4144 0.0000 -vt 0.2840 0.4211 0.0000 -vt 0.2705 0.4211 0.0000 -vt 0.2555 0.4211 0.0000 -vt 0.2405 0.4211 0.0000 -vt 0.2121 0.4014 0.0000 -vt 0.2256 0.4014 0.0000 -vt 0.2106 0.3949 0.0000 -vt 0.2121 0.3963 0.0000 -vt 0.2256 0.3949 0.0000 -vt 0.2256 0.3963 0.0000 -vt 0.2405 0.3949 0.0000 -vt 0.2405 0.3963 0.0000 -vt 0.2555 0.3949 0.0000 -vt 0.2555 0.3963 0.0000 -vt 0.2705 0.3949 0.0000 -vt 0.2705 0.3963 0.0000 -vt 0.2855 0.3949 0.0000 -vt 0.2840 0.3963 0.0000 -vt 0.2840 0.4014 0.0000 -vt 0.2705 0.4014 0.0000 -vt 0.2555 0.4014 0.0000 -vt 0.2405 0.4014 0.0000 -vt 0.5023 0.1525 0.0000 -vt 0.4892 0.1525 0.0000 -vt 0.5170 0.1525 0.0000 -vt 0.5316 0.1525 0.0000 -vt 0.5462 0.1525 0.0000 -vt 0.5594 0.1525 0.0000 -vt 0.5594 0.1589 0.0000 -vt 0.5462 0.1589 0.0000 -vt 0.5316 0.1589 0.0000 -vt 0.5170 0.1589 0.0000 -vt 0.5023 0.1589 0.0000 -vt 0.4892 0.1589 0.0000 -vt 0.0683 0.1944 0.0000 -vt 0.0547 0.1944 0.0000 -vt 0.0547 0.1911 0.0000 -vt 0.0683 0.1911 0.0000 -vt 0.4874 0.4351 0.0000 -vt 0.4936 0.4348 0.0000 -vt 0.4937 0.4383 0.0000 -vt 0.4875 0.4385 0.0000 -vt 0.0472 0.1660 0.0000 -vt 0.0608 0.1660 0.0000 -vt 0.0608 0.1693 0.0000 -vt 0.0472 0.1693 0.0000 -vt 0.0759 0.1660 0.0000 -vt 0.0759 0.1693 0.0000 -vt 0.0910 0.1660 0.0000 -vt 0.0910 0.1693 0.0000 -vt 0.1062 0.1660 0.0000 -vt 0.1062 0.1693 0.0000 -vt 0.1198 0.1660 0.0000 -vt 0.1198 0.1693 0.0000 -vt 0.5167 0.2713 0.0000 -vt 0.5150 0.2653 0.0000 -vt 0.5183 0.2643 0.0000 -vt 0.5201 0.2704 0.0000 -vt 0.1273 0.1944 0.0000 -vt 0.1137 0.1944 0.0000 -vt 0.1137 0.1911 0.0000 -vt 0.1273 0.1911 0.0000 -vt 0.0986 0.1944 0.0000 -vt 0.0986 0.1911 0.0000 -vt 0.0835 0.1944 0.0000 -vt 0.0835 0.1911 0.0000 -vt 0.3253 0.0983 0.0000 -vt 0.3123 0.0983 0.0000 -vt 0.3123 0.0949 0.0000 -vt 0.3253 0.0949 0.0000 -vt 0.5000 0.2643 0.0000 -vt 0.5059 0.2665 0.0000 -vt 0.5047 0.2697 0.0000 -vt 0.4988 0.2676 0.0000 -vt 0.1089 0.2814 0.0000 -vt 0.0958 0.2814 0.0000 -vt 0.0958 0.2780 0.0000 -vt 0.1089 0.2780 0.0000 -vt 0.0813 0.2814 0.0000 -vt 0.0813 0.2780 0.0000 -vt 0.0668 0.2814 0.0000 -vt 0.0668 0.2780 0.0000 -vt 0.0523 0.2814 0.0000 -vt 0.0523 0.2780 0.0000 -vt 0.0392 0.2814 0.0000 -vt 0.0392 0.2780 0.0000 -vt 0.5539 0.4747 0.0000 -vt 0.5602 0.4745 0.0000 -vt 0.5603 0.4780 0.0000 -vt 0.5541 0.4782 0.0000 -vt 0.3819 0.0983 0.0000 -vt 0.3689 0.0983 0.0000 -vt 0.3689 0.0949 0.0000 -vt 0.3819 0.0949 0.0000 -vt 0.3543 0.0983 0.0000 -vt 0.3543 0.0949 0.0000 -vt 0.3398 0.0983 0.0000 -vt 0.3398 0.0949 0.0000 -vt 0.4132 0.0983 0.0000 -vt 0.4001 0.0983 0.0000 -vt 0.4001 0.0949 0.0000 -vt 0.4132 0.0949 0.0000 -vt 0.5440 0.5357 0.0000 -vt 0.5502 0.5355 0.0000 -vt 0.5503 0.5390 0.0000 -vt 0.5441 0.5392 0.0000 -vt 0.1259 0.2162 0.0000 -vt 0.1128 0.2162 0.0000 -vt 0.1128 0.2128 0.0000 -vt 0.1259 0.2128 0.0000 -vt 0.0983 0.2162 0.0000 -vt 0.0983 0.2128 0.0000 -vt 0.0838 0.2162 0.0000 -vt 0.0838 0.2128 0.0000 -vt 0.0692 0.2162 0.0000 -vt 0.0692 0.2128 0.0000 -vt 0.0562 0.2162 0.0000 -vt 0.0562 0.2128 0.0000 -vt 0.5410 0.2643 0.0000 -vt 0.5469 0.2665 0.0000 -vt 0.5457 0.2697 0.0000 -vt 0.5398 0.2676 0.0000 -vt 0.4698 0.0983 0.0000 -vt 0.4567 0.0983 0.0000 -vt 0.4567 0.0949 0.0000 -vt 0.4698 0.0949 0.0000 -vt 0.4422 0.0983 0.0000 -vt 0.4422 0.0949 0.0000 -vt 0.4277 0.0983 0.0000 -vt 0.4277 0.0949 0.0000 -vt 0.2365 0.0984 0.0000 -vt 0.2229 0.0984 0.0000 -vt 0.2229 0.0951 0.0000 -vt 0.2365 0.0951 0.0000 -vt 0.3386 0.4897 0.0000 -vt 0.3446 0.4880 0.0000 -vt 0.3456 0.4914 0.0000 -vt 0.3395 0.4931 0.0000 -vt 0.2229 0.0735 0.0000 -vt 0.2365 0.0735 0.0000 -vt 0.2365 0.0768 0.0000 -vt 0.2229 0.0768 0.0000 -vt 0.2517 0.0735 0.0000 -vt 0.2517 0.0768 0.0000 -vt 0.2668 0.0735 0.0000 -vt 0.2668 0.0768 0.0000 -vt 0.2819 0.0735 0.0000 -vt 0.2819 0.0768 0.0000 -vt 0.2955 0.0735 0.0000 -vt 0.2955 0.0768 0.0000 -vt 0.5332 0.4646 0.0000 -vt 0.5334 0.4708 0.0000 -vt 0.5299 0.4710 0.0000 -vt 0.5297 0.4647 0.0000 -vt 0.2955 0.0984 0.0000 -vt 0.2819 0.0984 0.0000 -vt 0.2819 0.0951 0.0000 -vt 0.2955 0.0951 0.0000 -vt 0.2668 0.0984 0.0000 -vt 0.2668 0.0951 0.0000 -vt 0.2517 0.0984 0.0000 -vt 0.2517 0.0951 0.0000 -vt 0.0528 0.3034 0.0000 -vt 0.0400 0.3034 0.0000 -vt 0.0400 0.2999 0.0000 -vt 0.0528 0.2999 0.0000 -vt 0.5064 0.5502 0.0000 -vt 0.5002 0.5504 0.0000 -vt 0.5001 0.5469 0.0000 -vt 0.5063 0.5467 0.0000 -vt 0.1247 0.3653 0.0000 -vt 0.1374 0.3653 0.0000 -vt 0.1374 0.3688 0.0000 -vt 0.1247 0.3688 0.0000 -vt 0.1516 0.3653 0.0000 -vt 0.1516 0.3688 0.0000 -vt 0.1658 0.3653 0.0000 -vt 0.1658 0.3688 0.0000 -vt 0.1800 0.3653 0.0000 -vt 0.1800 0.3688 0.0000 -vt 0.1927 0.3653 0.0000 -vt 0.1927 0.3688 0.0000 -vt 0.5603 0.3533 0.0000 -vt 0.5593 0.3595 0.0000 -vt 0.5558 0.3589 0.0000 -vt 0.5569 0.3527 0.0000 -vt 0.1081 0.3034 0.0000 -vt 0.0953 0.3034 0.0000 -vt 0.0953 0.2999 0.0000 -vt 0.1081 0.2999 0.0000 -vt 0.0811 0.3034 0.0000 -vt 0.0811 0.2999 0.0000 -vt 0.0669 0.3034 0.0000 -vt 0.0669 0.2999 0.0000 -vt 0.0951 0.3244 0.0000 -vt 0.1078 0.3244 0.0000 -vt 0.1078 0.3279 0.0000 -vt 0.0951 0.3279 0.0000 -vt 0.5461 0.4303 0.0000 -vt 0.5454 0.4240 0.0000 -vt 0.5489 0.4237 0.0000 -vt 0.5495 0.4299 0.0000 -vt 0.1249 0.3874 0.0000 -vt 0.1376 0.3874 0.0000 -vt 0.1376 0.3909 0.0000 -vt 0.1249 0.3909 0.0000 -vt 0.1517 0.3874 0.0000 -vt 0.1517 0.3909 0.0000 -vt 0.1657 0.3874 0.0000 -vt 0.1657 0.3909 0.0000 -vt 0.1798 0.3874 0.0000 -vt 0.1798 0.3909 0.0000 -vt 0.1925 0.3874 0.0000 -vt 0.1925 0.3909 0.0000 -vt 0.4937 0.3562 0.0000 -vt 0.4875 0.3564 0.0000 -vt 0.4874 0.3529 0.0000 -vt 0.4936 0.3527 0.0000 -vt 0.0403 0.3244 0.0000 -vt 0.0529 0.3244 0.0000 -vt 0.0529 0.3279 0.0000 -vt 0.0403 0.3279 0.0000 -vt 0.0670 0.3244 0.0000 -vt 0.0670 0.3279 0.0000 -vt 0.0811 0.3244 0.0000 -vt 0.0811 0.3279 0.0000 -vt 0.3682 0.1409 0.0000 -vt 0.3809 0.1409 0.0000 -vt 0.3809 0.1443 0.0000 -vt 0.3682 0.1443 0.0000 -vt 0.4937 0.4680 0.0000 -vt 0.4875 0.4680 0.0000 -vt 0.4875 0.4645 0.0000 -vt 0.4937 0.4645 0.0000 -vt 0.4012 0.1168 0.0000 -vt 0.4139 0.1168 0.0000 -vt 0.4139 0.1203 0.0000 -vt 0.4012 0.1203 0.0000 -vt 0.4279 0.1168 0.0000 -vt 0.4279 0.1203 0.0000 -vt 0.4420 0.1168 0.0000 -vt 0.4420 0.1203 0.0000 -vt 0.4561 0.1168 0.0000 -vt 0.4561 0.1203 0.0000 -vt 0.4687 0.1168 0.0000 -vt 0.4687 0.1203 0.0000 -vt 0.4937 0.5502 0.0000 -vt 0.4875 0.5502 0.0000 -vt 0.4875 0.5467 0.0000 -vt 0.4937 0.5467 0.0000 -vt 0.3133 0.1409 0.0000 -vt 0.3260 0.1409 0.0000 -vt 0.3260 0.1443 0.0000 -vt 0.3133 0.1443 0.0000 -vt 0.3401 0.1409 0.0000 -vt 0.3401 0.1443 0.0000 -vt 0.3541 0.1409 0.0000 -vt 0.3541 0.1443 0.0000 -vt 0.3712 0.0735 0.0000 -vt 0.3857 0.0735 0.0000 -vt 0.3857 0.0766 0.0000 -vt 0.3712 0.0766 0.0000 -vt 0.5234 0.4680 0.0000 -vt 0.5172 0.4682 0.0000 -vt 0.5170 0.4648 0.0000 -vt 0.5233 0.4645 0.0000 -vt 0.3964 0.0519 0.0000 -vt 0.4108 0.0519 0.0000 -vt 0.4108 0.0549 0.0000 -vt 0.3964 0.0549 0.0000 -vt 0.4269 0.0519 0.0000 -vt 0.4269 0.0549 0.0000 -vt 0.4430 0.0519 0.0000 -vt 0.4430 0.0549 0.0000 -vt 0.4591 0.0519 0.0000 -vt 0.4591 0.0549 0.0000 -vt 0.4735 0.0519 0.0000 -vt 0.4735 0.0549 0.0000 -vt 0.5299 0.4359 0.0000 -vt 0.5293 0.4296 0.0000 -vt 0.5328 0.4293 0.0000 -vt 0.5334 0.4355 0.0000 -vt 0.3085 0.0735 0.0000 -vt 0.3230 0.0735 0.0000 -vt 0.3230 0.0766 0.0000 -vt 0.3085 0.0766 0.0000 -vt 0.3390 0.0735 0.0000 -vt 0.3390 0.0766 0.0000 -vt 0.3551 0.0735 0.0000 -vt 0.3551 0.0766 0.0000 -vt 0.0570 0.2361 0.0000 -vt 0.0697 0.2361 0.0000 -vt 0.0697 0.2395 0.0000 -vt 0.0570 0.2395 0.0000 -vt 0.0839 0.2361 0.0000 -vt 0.0839 0.2395 0.0000 -vt 0.0981 0.2361 0.0000 -vt 0.0981 0.2395 0.0000 -vt 0.1123 0.2361 0.0000 -vt 0.1123 0.2395 0.0000 -vt 0.1250 0.2361 0.0000 -vt 0.1250 0.2395 0.0000 -vt 0.5064 0.4383 0.0000 -vt 0.5002 0.4385 0.0000 -vt 0.5001 0.4351 0.0000 -vt 0.5063 0.4348 0.0000 -vt 0.2129 0.2161 0.0000 -vt 0.2002 0.2161 0.0000 -vt 0.2002 0.2127 0.0000 -vt 0.2129 0.2127 0.0000 -vt 0.1860 0.2161 0.0000 -vt 0.1860 0.2127 0.0000 -vt 0.1718 0.2161 0.0000 -vt 0.1718 0.2127 0.0000 -vt 0.1576 0.2161 0.0000 -vt 0.1576 0.2127 0.0000 -vt 0.1449 0.2161 0.0000 -vt 0.1449 0.2127 0.0000 -vt 0.3734 0.4886 0.0000 -vt 0.3723 0.4948 0.0000 -vt 0.3689 0.4942 0.0000 -vt 0.3699 0.4880 0.0000 -# 1664 texture coords - -g pelleter -usemtl 11___Default -#s 2 -f 1/1/1 2/2/1 3/3/2 -f 3/3/2 4/4/2 1/1/1 -f 2/2/1 5/5/1 6/6/2 -f 6/6/2 3/3/2 2/2/1 -f 5/5/1 7/7/1 8/8/2 -f 8/8/2 6/6/2 5/5/1 -f 7/7/1 9/9/3 10/10/2 -f 10/10/2 8/8/2 7/7/1 -f 9/9/3 11/11/1 12/12/2 -f 12/12/2 10/10/2 9/9/3 -#s 4 -f 11/13/4 13/14/4 14/15/4 -f 14/15/4 12/16/4 11/13/4 -#s 2 -f 13/17/5 15/18/6 16/19/7 -f 16/19/7 14/20/7 13/17/5 -f 15/18/6 17/21/6 18/22/7 -f 18/22/7 16/19/7 15/18/6 -f 17/21/6 19/23/5 20/24/7 -f 20/24/7 18/22/7 17/21/6 -f 19/23/5 21/25/5 22/26/7 -f 22/26/7 20/24/7 19/23/5 -f 21/25/5 23/27/5 24/28/7 -f 24/28/7 22/26/7 21/25/5 -#s 4 -f 23/29/8 1/30/8 4/31/8 -f 4/31/8 24/32/8 23/29/8 -#s 2 -f 4/4/2 3/3/2 25/33/9 -f 25/33/9 26/34/9 4/4/2 -f 3/3/2 6/6/2 27/35/9 -f 27/35/9 25/33/9 3/3/2 -f 6/6/2 8/8/2 28/36/9 -f 28/36/9 27/35/9 6/6/2 -f 8/8/2 10/10/2 29/37/9 -f 29/37/9 28/36/9 8/8/2 -f 10/10/2 12/12/2 30/38/9 -f 30/38/9 29/37/9 10/10/2 -#s 4 -f 12/16/4 14/15/4 31/39/4 -f 31/39/4 30/40/4 12/16/4 -#s 2 -f 14/20/7 16/19/7 32/41/10 -f 32/41/10 31/42/10 14/20/7 -f 16/19/7 18/22/7 33/43/10 -f 33/43/10 32/41/10 16/19/7 -f 18/22/7 20/24/7 34/44/10 -f 34/44/10 33/43/10 18/22/7 -f 20/24/7 22/26/7 35/45/10 -f 35/45/10 34/44/10 20/24/7 -f 22/26/7 24/28/7 36/46/10 -f 36/46/10 35/45/10 22/26/7 -#s 4 -f 24/32/8 4/31/8 26/47/8 -f 26/47/8 36/48/8 24/32/8 -#s 2 -f 26/49/9 25/50/9 37/51/11 -f 37/51/11 38/52/11 26/49/9 -f 25/50/9 27/53/9 39/54/11 -f 39/54/11 37/51/11 25/50/9 -f 27/53/9 28/55/9 40/56/11 -f 40/56/11 39/54/11 27/53/9 -f 28/55/9 29/57/9 41/58/11 -f 41/58/11 40/56/11 28/55/9 -f 29/57/9 30/59/9 42/60/11 -f 42/60/11 41/58/11 29/57/9 -#s 4 -f 30/40/4 31/39/4 43/61/4 -f 43/61/4 42/62/4 30/40/4 -#s 2 -f 31/63/10 32/64/10 44/65/12 -f 44/65/12 43/66/12 31/63/10 -f 32/64/10 33/67/10 45/68/12 -f 45/68/12 44/65/12 32/64/10 -f 33/67/10 34/69/10 46/70/12 -f 46/70/12 45/68/12 33/67/10 -f 34/69/10 35/71/10 47/72/12 -f 47/72/12 46/70/12 34/69/10 -f 35/71/10 36/73/10 48/74/12 -f 48/74/12 47/72/12 35/71/10 -#s 4 -f 36/48/8 26/47/8 38/75/8 -f 38/75/8 48/76/8 36/48/8 -#s 2 -f 38/52/11 37/51/11 49/77/13 -f 49/77/13 50/78/13 38/52/11 -f 37/51/11 39/54/11 51/79/13 -f 51/79/13 49/77/13 37/51/11 -f 39/54/11 40/56/11 52/80/13 -f 52/80/13 51/79/13 39/54/11 -f 40/56/11 41/58/11 53/81/13 -f 53/81/13 52/80/13 40/56/11 -f 41/58/11 42/60/11 54/82/13 -f 54/82/13 53/81/13 41/58/11 -#s 4 -f 42/62/4 43/61/4 55/83/4 -f 55/83/4 54/84/4 42/62/4 -#s 2 -f 43/66/12 44/65/12 56/85/14 -f 56/85/14 55/86/14 43/66/12 -f 44/65/12 45/68/12 57/87/14 -f 57/87/14 56/85/14 44/65/12 -f 45/68/12 46/70/12 58/88/14 -f 58/88/14 57/87/14 45/68/12 -f 46/70/12 47/72/12 59/89/14 -f 59/89/14 58/88/14 46/70/12 -f 47/72/12 48/74/12 60/90/14 -f 60/90/14 59/89/14 47/72/12 -#s 4 -f 48/76/8 38/75/8 50/91/8 -f 50/91/8 60/92/8 48/76/8 -#s 2 -f 50/78/13 49/77/13 61/93/15 -f 61/93/15 62/94/15 50/78/13 -f 49/77/13 51/79/13 63/95/15 -f 63/95/15 61/93/15 49/77/13 -f 51/79/13 52/80/13 64/96/15 -f 64/96/15 63/95/15 51/79/13 -f 52/80/13 53/81/13 65/97/15 -f 65/97/15 64/96/15 52/80/13 -f 53/81/13 54/82/13 66/98/15 -f 66/98/15 65/97/15 53/81/13 -#s 4 -f 54/84/4 55/83/4 67/99/16 -f 67/99/16 66/100/16 54/84/4 -#s 2 -f 55/86/14 56/85/14 68/101/17 -f 68/101/17 67/102/17 55/86/14 -f 56/85/14 57/87/14 69/103/17 -f 69/103/17 68/101/17 56/85/14 -f 57/87/14 58/88/14 70/104/17 -f 70/104/17 69/103/17 57/87/14 -f 58/88/14 59/89/14 71/105/17 -f 71/105/17 70/104/17 58/88/14 -f 59/89/14 60/90/14 72/106/17 -f 72/106/17 71/105/17 59/89/14 -#s 4 -f 60/92/8 50/91/8 62/107/8 -f 62/107/8 72/108/8 60/92/8 -#s 2 -f 62/109/15 61/110/15 73/111/18 -f 73/111/18 74/112/18 62/109/15 -f 61/110/15 63/113/15 75/114/18 -f 75/114/18 73/111/18 61/110/15 -f 63/113/15 64/115/15 76/116/18 -f 76/116/18 75/114/18 63/113/15 -f 64/115/15 65/117/15 77/118/18 -f 77/118/18 76/116/18 64/115/15 -f 65/117/15 66/119/15 78/120/18 -f 78/120/18 77/118/18 65/117/15 -#s 4 -f 66/100/16 67/99/16 79/121/4 -f 79/121/4 78/122/4 66/100/16 -#s 2 -f 67/102/17 68/101/17 80/123/19 -f 80/123/19 79/124/19 67/102/17 -f 68/101/17 69/103/17 81/125/19 -f 81/125/19 80/123/19 68/101/17 -f 69/103/17 70/104/17 82/126/19 -f 82/126/19 81/125/19 69/103/17 -f 70/104/17 71/105/17 83/127/19 -f 83/127/19 82/126/19 70/104/17 -f 71/105/17 72/106/17 84/128/19 -f 84/128/19 83/127/19 71/105/17 -#s 4 -f 72/108/8 62/107/8 74/129/8 -f 74/129/8 84/130/8 72/108/8 -#s 2 -f 74/112/18 73/111/18 85/131/20 -f 85/131/20 86/132/20 74/112/18 -f 73/111/18 75/114/18 87/133/20 -f 87/133/20 85/131/20 73/111/18 -f 75/114/18 76/116/18 88/134/20 -f 88/134/20 87/133/20 75/114/18 -f 76/116/18 77/118/18 89/135/20 -f 89/135/20 88/134/20 76/116/18 -f 77/118/18 78/120/18 90/136/20 -f 90/136/20 89/135/20 77/118/18 -#s 4 -f 78/122/4 79/121/4 91/137/4 -f 91/137/4 90/138/4 78/122/4 -#s 2 -f 79/124/19 80/123/19 92/139/21 -f 92/139/21 91/140/21 79/124/19 -f 80/123/19 81/125/19 93/141/21 -f 93/141/21 92/139/21 80/123/19 -f 81/125/19 82/126/19 94/142/21 -f 94/142/21 93/141/21 81/125/19 -f 82/126/19 83/127/19 95/143/21 -f 95/143/21 94/142/21 82/126/19 -f 83/127/19 84/128/19 96/144/21 -f 96/144/21 95/143/21 83/127/19 -#s 4 -f 84/130/8 74/129/8 86/145/8 -f 86/145/8 96/146/8 84/130/8 -#s 2 -f 86/147/20 85/148/20 97/149/22 -f 97/149/22 98/150/22 86/147/20 -f 85/148/20 87/151/20 99/152/22 -f 99/152/22 97/149/22 85/148/20 -f 87/151/20 88/153/20 100/154/22 -f 100/154/22 99/152/22 87/151/20 -f 88/153/20 89/155/20 101/156/22 -f 101/156/22 100/154/22 88/153/20 -f 89/155/20 90/157/20 102/158/22 -f 102/158/22 101/156/22 89/155/20 -#s 4 -f 90/138/4 91/137/4 103/159/4 -f 103/159/4 102/160/4 90/138/4 -#s 2 -f 91/161/21 92/162/21 104/163/23 -f 104/163/23 103/164/23 91/161/21 -f 92/162/21 93/165/21 105/166/23 -f 105/166/23 104/163/23 92/162/21 -f 93/165/21 94/167/21 106/168/23 -f 106/168/23 105/166/23 93/165/21 -f 94/167/21 95/169/21 107/170/23 -f 107/170/23 106/168/23 94/167/21 -f 95/169/21 96/171/21 108/172/23 -f 108/172/23 107/170/23 95/169/21 -#s 4 -f 96/146/8 86/145/8 98/173/8 -f 98/173/8 108/174/8 96/146/8 -#s 2 -f 98/150/22 97/149/22 109/175/24 -f 109/175/24 110/176/24 98/150/22 -f 97/149/22 99/152/22 111/177/24 -f 111/177/24 109/175/24 97/149/22 -f 99/152/22 100/154/22 112/178/24 -f 112/178/24 111/177/24 99/152/22 -f 100/154/22 101/156/22 113/179/24 -f 113/179/24 112/178/24 100/154/22 -f 101/156/22 102/158/22 114/180/24 -f 114/180/24 113/179/24 101/156/22 -#s 4 -f 102/160/4 103/159/4 115/181/4 -f 115/181/4 114/182/4 102/160/4 -#s 2 -f 103/164/23 104/163/23 116/183/25 -f 116/183/25 115/184/25 103/164/23 -f 104/163/23 105/166/23 117/185/25 -f 117/185/25 116/183/25 104/163/23 -f 105/166/23 106/168/23 118/186/25 -f 118/186/25 117/185/25 105/166/23 -f 106/168/23 107/170/23 119/187/25 -f 119/187/25 118/186/25 106/168/23 -f 107/170/23 108/172/23 120/188/25 -f 120/188/25 119/187/25 107/170/23 -#s 4 -f 108/174/8 98/173/8 110/189/8 -f 110/189/8 120/190/8 108/174/8 -#s 2 -f 110/176/24 109/175/24 121/191/26 -f 121/191/26 122/192/26 110/176/24 -f 109/175/24 111/177/24 123/193/26 -f 123/193/26 121/191/26 109/175/24 -f 111/177/24 112/178/24 124/194/26 -f 124/194/26 123/193/26 111/177/24 -f 112/178/24 113/179/24 125/195/26 -f 125/195/26 124/194/26 112/178/24 -f 113/179/24 114/180/24 126/196/26 -f 126/196/26 125/195/26 113/179/24 -#s 4 -f 114/182/4 115/181/4 127/197/4 -f 127/197/4 126/198/4 114/182/4 -#s 2 -f 115/184/25 116/183/25 128/199/27 -f 128/199/27 127/200/27 115/184/25 -f 116/183/25 117/185/25 129/201/27 -f 129/201/27 128/199/27 116/183/25 -f 117/185/25 118/186/25 130/202/27 -f 130/202/27 129/201/27 117/185/25 -f 118/186/25 119/187/25 131/203/27 -f 131/203/27 130/202/27 118/186/25 -f 119/187/25 120/188/25 132/204/27 -f 132/204/27 131/203/27 119/187/25 -#s 4 -f 120/190/8 110/189/8 122/205/8 -f 122/205/8 132/206/8 120/190/8 -#s 2 -f 122/192/26 121/191/26 133/207/28 -f 133/207/28 134/208/28 122/192/26 -f 121/191/26 123/193/26 135/209/28 -f 135/209/28 133/207/28 121/191/26 -f 123/193/26 124/194/26 136/210/28 -f 136/210/28 135/209/28 123/193/26 -f 124/194/26 125/195/26 137/211/28 -f 137/211/28 136/210/28 124/194/26 -f 125/195/26 126/196/26 138/212/28 -f 138/212/28 137/211/28 125/195/26 -#s 4 -f 126/198/4 127/197/4 139/213/4 -f 139/213/4 138/214/16 126/198/4 -#s 2 -f 127/200/27 128/199/27 140/215/29 -f 140/215/29 139/216/29 127/200/27 -f 128/199/27 129/201/27 141/217/29 -f 141/217/29 140/215/29 128/199/27 -f 129/201/27 130/202/27 142/218/29 -f 142/218/29 141/217/29 129/201/27 -f 130/202/27 131/203/27 143/219/29 -f 143/219/29 142/218/29 130/202/27 -f 131/203/27 132/204/27 144/220/29 -f 144/220/29 143/219/29 131/203/27 -#s 4 -f 132/206/8 122/205/8 134/221/8 -f 134/221/8 144/222/8 132/206/8 -#s 2 -f 134/223/28 133/224/28 145/225/30 -f 145/225/30 146/226/30 134/223/28 -f 133/224/28 135/227/28 147/228/30 -f 147/228/30 145/225/30 133/224/28 -f 135/227/28 136/229/28 148/230/30 -f 148/230/30 147/228/30 135/227/28 -f 136/229/28 137/231/28 149/232/30 -f 149/232/30 148/230/30 136/229/28 -f 137/231/28 138/233/28 150/234/30 -f 150/234/30 149/232/30 137/231/28 -#s 4 -f 138/214/16 139/213/4 151/235/16 -f 151/235/16 150/236/16 138/214/16 -#s 2 -f 139/237/29 140/238/29 152/239/31 -f 152/239/31 151/240/31 139/237/29 -f 140/238/29 141/241/29 153/242/31 -f 153/242/31 152/239/31 140/238/29 -f 141/241/29 142/243/29 154/244/31 -f 154/244/31 153/242/31 141/241/29 -f 142/243/29 143/245/29 155/246/31 -f 155/246/31 154/244/31 142/243/29 -f 143/245/29 144/247/29 156/248/31 -f 156/248/31 155/246/31 143/245/29 -#s 4 -f 144/222/8 134/221/8 146/249/8 -f 146/249/8 156/250/8 144/222/8 -#s 2 -f 146/226/30 145/225/30 157/251/32 -f 157/251/32 158/252/32 146/226/30 -f 145/225/30 147/228/30 159/253/32 -f 159/253/32 157/251/32 145/225/30 -f 147/228/30 148/230/30 160/254/32 -f 160/254/32 159/253/32 147/228/30 -f 148/230/30 149/232/30 161/255/32 -f 161/255/32 160/254/32 148/230/30 -f 149/232/30 150/234/30 162/256/32 -f 162/256/32 161/255/32 149/232/30 -#s 4 -f 150/236/16 151/235/16 163/257/16 -f 163/257/16 162/258/33 150/236/16 -#s 2 -f 151/240/31 152/239/31 164/259/34 -f 164/259/34 163/260/34 151/240/31 -f 152/239/31 153/242/31 165/261/34 -f 165/261/34 164/259/34 152/239/31 -f 153/242/31 154/244/31 166/262/34 -f 166/262/34 165/261/34 153/242/31 -f 154/244/31 155/246/31 167/263/34 -f 167/263/34 166/262/34 154/244/31 -f 155/246/31 156/248/31 168/264/34 -f 168/264/34 167/263/34 155/246/31 -#s 4 -f 156/250/8 146/249/8 158/265/8 -f 158/265/8 168/266/8 156/250/8 -#s 2 -f 158/252/32 157/251/32 169/267/35 -f 169/267/35 170/268/35 158/252/32 -f 157/251/32 159/253/32 171/269/35 -f 171/269/35 169/267/35 157/251/32 -f 159/253/32 160/254/32 172/270/35 -f 172/270/35 171/269/35 159/253/32 -f 160/254/32 161/255/32 173/271/35 -f 173/271/35 172/270/35 160/254/32 -f 161/255/32 162/256/32 174/272/35 -f 174/272/35 173/271/35 161/255/32 -#s 4 -f 162/258/33 163/257/16 175/273/33 -f 175/273/33 174/274/33 162/258/33 -#s 2 -f 163/260/34 164/259/34 176/275/36 -f 176/275/36 175/276/36 163/260/34 -f 164/259/34 165/261/34 177/277/36 -f 177/277/36 176/275/36 164/259/34 -f 165/261/34 166/262/34 178/278/36 -f 178/278/36 177/277/36 165/261/34 -f 166/262/34 167/263/34 179/279/36 -f 179/279/36 178/278/36 166/262/34 -f 167/263/34 168/264/34 180/280/36 -f 180/280/36 179/279/36 167/263/34 -#s 4 -f 168/266/8 158/265/8 170/281/8 -f 170/281/8 180/282/8 168/266/8 -#s 2 -f 170/283/35 169/284/35 181/285/37 -f 181/285/37 182/286/37 170/283/35 -f 169/284/35 171/287/35 183/288/37 -f 183/288/37 181/285/37 169/284/35 -f 171/287/35 172/289/35 184/290/37 -f 184/290/37 183/288/37 171/287/35 -f 172/289/35 173/291/35 185/292/37 -f 185/292/37 184/290/37 172/289/35 -f 173/291/35 174/293/35 186/294/37 -f 186/294/37 185/292/37 173/291/35 -#s 4 -f 174/274/33 175/273/33 187/295/33 -f 187/295/33 186/296/4 174/274/33 -#s 2 -f 175/276/36 176/275/36 188/297/38 -f 188/297/38 187/298/38 175/276/36 -f 176/275/36 177/277/36 189/299/38 -f 189/299/38 188/297/38 176/275/36 -f 177/277/36 178/278/36 190/300/38 -f 190/300/38 189/299/38 177/277/36 -f 178/278/36 179/279/36 191/301/38 -f 191/301/38 190/300/38 178/278/36 -f 179/279/36 180/280/36 192/302/38 -f 192/302/38 191/301/38 179/279/36 -#s 4 -f 180/282/8 170/281/8 182/303/8 -f 182/303/8 192/304/8 180/282/8 -#s 2 -f 182/286/37 181/285/37 193/305/39 -f 193/305/39 194/306/39 182/286/37 -f 181/285/37 183/288/37 195/307/39 -f 195/307/39 193/305/39 181/285/37 -f 183/288/37 184/290/37 196/308/39 -f 196/308/39 195/307/39 183/288/37 -f 184/290/37 185/292/37 197/309/39 -f 197/309/39 196/308/39 184/290/37 -f 185/292/37 186/294/37 198/310/39 -f 198/310/39 197/309/39 185/292/37 -#s 4 -f 186/296/4 187/295/33 199/311/4 -f 199/311/4 198/312/4 186/296/4 -#s 2 -f 187/298/38 188/297/38 200/313/40 -f 200/313/40 199/314/40 187/298/38 -f 188/297/38 189/299/38 201/315/40 -f 201/315/40 200/313/40 188/297/38 -f 189/299/38 190/300/38 202/316/40 -f 202/316/40 201/315/40 189/299/38 -f 190/300/38 191/301/38 203/317/40 -f 203/317/40 202/316/40 190/300/38 -f 191/301/38 192/302/38 204/318/40 -f 204/318/40 203/317/40 191/301/38 -#s 4 -f 192/304/8 182/303/8 194/319/8 -f 194/319/8 204/320/8 192/304/8 -#s 2 -f 194/321/39 193/322/39 205/323/41 -f 205/323/41 206/324/41 194/321/39 -f 193/322/39 195/325/39 207/326/41 -f 207/326/41 205/323/41 193/322/39 -f 195/325/39 196/327/39 208/328/41 -f 208/328/41 207/326/41 195/325/39 -f 196/327/39 197/329/39 209/330/41 -f 209/330/41 208/328/41 196/327/39 -f 197/329/39 198/331/39 210/332/41 -f 210/332/41 209/330/41 197/329/39 -#s 4 -f 198/312/4 199/311/4 211/333/4 -f 211/333/4 210/334/4 198/312/4 -#s 2 -f 199/335/40 200/336/40 212/337/42 -f 212/337/42 211/338/42 199/335/40 -f 200/336/40 201/339/40 213/340/42 -f 213/340/42 212/337/42 200/336/40 -f 201/339/40 202/341/40 214/342/42 -f 214/342/42 213/340/42 201/339/40 -f 202/341/40 203/343/40 215/344/42 -f 215/344/42 214/342/42 202/341/40 -f 203/343/40 204/345/40 216/346/42 -f 216/346/42 215/344/42 203/343/40 -#s 4 -f 204/320/8 194/319/8 206/347/8 -f 206/347/8 216/348/8 204/320/8 -#s 2 -f 206/324/41 205/323/41 2/2/1 -f 2/2/1 1/1/1 206/324/41 -f 205/323/41 207/326/41 5/5/1 -f 5/5/1 2/2/1 205/323/41 -f 207/326/41 208/328/41 7/7/1 -f 7/7/1 5/5/1 207/326/41 -f 208/328/41 209/330/41 9/9/3 -f 9/9/3 7/7/1 208/328/41 -f 209/330/41 210/332/41 11/11/1 -f 11/11/1 9/9/3 209/330/41 -#s 4 -f 210/334/4 211/333/4 13/14/4 -f 13/14/4 11/13/4 210/334/4 -#s 2 -f 211/338/42 212/337/42 15/18/6 -f 15/18/6 13/17/5 211/338/42 -f 212/337/42 213/340/42 17/21/6 -f 17/21/6 15/18/6 212/337/42 -f 213/340/42 214/342/42 19/23/5 -f 19/23/5 17/21/6 213/340/42 -f 214/342/42 215/344/42 21/25/5 -f 21/25/5 19/23/5 214/342/42 -f 215/344/42 216/346/42 23/27/5 -f 23/27/5 21/25/5 215/344/42 -#s 4 -f 216/348/8 206/347/8 1/30/8 -f 1/30/8 23/29/8 216/348/8 -#s 8 -f 217/349/43 218/350/43 219/351/43 -f 219/351/43 220/352/43 217/349/43 -#s 16 -f 221/353/44 222/354/44 223/355/44 -f 223/355/44 224/356/44 221/353/44 -#s 64 -f 225/357/45 226/358/45 227/359/45 -f 227/359/45 228/360/45 225/357/45 -#s off -f 229/361/46 228/362/46 225/363/46 -f 225/364/46 230/365/46 229/366/46 -f 230/367/43 225/368/43 226/369/43 -f 226/370/43 231/371/43 230/372/43 -f 231/373/47 226/374/47 227/375/47 -f 227/376/47 232/377/47 231/378/47 -f 232/379/48 227/380/48 228/381/48 -f 228/382/48 229/383/48 232/384/48 -f 221/385/46 218/386/46 217/387/46 -f 217/387/46 229/388/46 221/385/46 -f 229/389/45 217/390/45 220/391/45 -f 220/391/45 232/392/45 229/389/45 -f 232/393/47 220/394/47 219/395/47 -f 219/395/47 222/396/47 232/393/47 -f 222/397/44 219/398/44 218/399/44 -f 218/399/44 221/400/44 222/397/44 -f 224/401/46 233/402/46 234/403/46 -f 234/403/46 221/404/46 224/401/46 -f 221/405/48 234/406/48 235/407/48 -f 235/407/48 222/408/48 221/405/48 -f 222/409/47 235/410/47 236/411/47 -f 236/411/47 223/412/47 222/409/47 -f 223/413/43 236/414/43 233/415/43 -f 233/415/43 224/416/43 223/413/43 -f 233/417/46 234/418/46 221/419/46 -f 221/420/46 224/421/46 233/422/46 -f 234/423/48 235/424/48 222/425/48 -f 222/426/48 221/427/48 234/428/48 -f 235/429/47 236/430/47 223/431/47 -f 223/432/47 222/433/47 235/434/47 -f 236/435/43 233/436/43 224/437/43 -f 224/438/43 223/439/43 236/440/43 -#s 2 -f 237/441/49 238/442/49 239/443/49 -f 239/443/49 240/444/49 237/441/49 -#s 4 -f 241/445/45 242/446/45 243/447/45 -f 243/447/45 244/448/45 241/445/45 -#s 8 -f 237/449/50 241/450/50 244/451/50 -f 244/451/50 238/452/50 237/449/50 -#s 16 -f 245/453/51 246/454/47 247/455/51 -f 247/455/51 248/456/51 245/453/51 -#s 32 -f 239/457/16 243/458/16 242/459/16 -f 242/459/16 240/460/16 239/457/16 -#s 64 -f 240/461/46 242/462/46 241/463/46 -f 241/463/46 237/464/46 240/461/46 -#s off -f 239/465/52 238/466/52 249/467/52 -f 249/467/51 250/468/51 239/465/51 -f 238/466/51 244/469/51 251/470/51 -f 251/470/51 249/467/51 238/466/51 -f 244/469/51 243/471/51 252/472/51 -f 252/472/53 251/470/53 244/469/53 -f 243/471/51 239/465/51 250/468/51 -f 250/468/51 252/472/51 243/471/51 -f 250/473/54 249/474/54 245/475/54 -f 245/475/54 248/476/54 250/473/54 -f 249/477/4 251/478/4 246/479/4 -f 246/479/4 245/480/4 249/477/4 -f 251/481/44 252/482/44 247/483/44 -f 247/483/44 246/484/44 251/481/44 -f 252/485/55 250/486/55 248/487/55 -f 248/487/55 247/488/55 252/485/55 -#s 8 -f 253/489/56 254/490/56 255/491/56 -f 255/491/56 256/492/56 253/489/56 -f 257/493/57 258/494/57 259/495/57 -f 259/495/57 260/496/57 257/493/57 -f 261/497/58 262/498/58 263/499/58 -f 263/499/58 264/500/58 261/497/58 -f 265/501/59 266/502/59 267/503/59 -f 267/503/59 268/504/59 265/501/59 -f 269/505/50 270/506/50 271/507/8 -f 271/507/8 272/508/8 269/505/50 -f 273/509/60 274/510/60 275/511/60 -f 275/511/60 276/512/61 273/509/60 -f 277/513/62 278/514/62 279/515/62 -f 279/515/62 280/516/62 277/513/62 -f 281/517/63 282/518/63 283/519/63 -f 283/519/63 284/520/63 281/517/63 -f 285/521/64 286/522/64 287/523/64 -f 287/523/64 288/524/64 285/521/64 -f 289/525/65 290/526/65 291/527/65 -f 291/527/65 292/528/65 289/525/65 -f 293/529/66 294/530/66 295/531/66 -f 295/531/66 296/532/66 293/529/66 -f 297/533/67 298/534/67 299/535/68 -f 299/535/68 300/536/68 297/533/67 -f 301/537/69 302/538/69 303/539/70 -f 303/539/70 304/540/70 301/537/69 -f 305/541/71 306/542/71 307/543/4 -f 307/543/4 308/544/4 305/541/71 -f 309/545/72 310/546/72 311/547/72 -f 311/547/72 312/548/72 309/545/72 -f 313/549/73 314/550/73 315/551/73 -f 315/551/73 316/552/73 313/549/73 -f 317/553/74 318/554/74 319/555/74 -f 319/555/74 320/556/74 317/553/74 -f 321/557/75 322/558/75 323/559/75 -f 323/559/75 324/560/75 321/557/75 -f 256/492/56 255/491/56 325/561/56 -f 325/561/56 326/562/56 256/492/56 -f 260/496/57 259/495/57 327/563/57 -f 327/563/57 328/564/57 260/496/57 -f 264/500/58 263/499/58 329/565/58 -f 329/565/58 330/566/58 264/500/58 -f 268/504/59 267/503/59 331/567/76 -f 331/567/76 332/568/76 268/504/59 -f 272/508/8 271/507/8 333/569/50 -f 333/569/50 334/570/50 272/508/8 -f 276/512/61 275/511/60 335/571/60 -f 335/571/60 336/572/60 276/512/61 -f 280/516/62 279/515/62 337/573/62 -f 337/573/62 338/574/62 280/516/62 -f 284/520/63 283/519/63 339/575/63 -f 339/575/63 340/576/63 284/520/63 -f 288/524/64 287/523/64 341/577/64 -f 341/577/64 342/578/64 288/524/64 -f 292/528/65 291/527/65 343/579/65 -f 343/579/65 344/580/65 292/528/65 -f 296/532/66 295/531/66 345/581/66 -f 345/581/66 346/582/66 296/532/66 -f 300/536/68 299/535/68 347/583/67 -f 347/583/67 348/584/67 300/536/68 -f 304/540/70 303/539/70 349/585/70 -f 349/585/70 350/586/70 304/540/70 -f 308/544/4 307/543/4 351/587/4 -f 351/587/4 352/588/4 308/544/4 -f 312/548/72 311/547/72 353/589/72 -f 353/589/72 354/590/72 312/548/72 -f 316/552/73 315/551/73 355/591/73 -f 355/591/73 356/592/73 316/552/73 -f 320/556/74 319/555/74 357/593/74 -f 357/593/74 358/594/74 320/556/74 -f 324/560/75 323/559/75 359/595/75 -f 359/595/75 360/596/75 324/560/75 -f 326/562/56 325/561/56 361/597/77 -f 361/597/77 362/598/77 326/562/56 -f 328/564/57 327/563/57 363/599/57 -f 363/599/57 364/600/78 328/564/57 -f 330/566/58 329/565/58 365/601/58 -f 365/601/58 366/602/58 330/566/58 -f 332/568/76 331/567/76 367/603/59 -f 367/603/59 368/604/59 332/568/76 -f 334/570/50 333/569/50 369/605/50 -f 369/605/50 370/606/55 334/570/50 -f 336/572/60 335/571/60 371/607/60 -f 371/607/60 372/608/60 336/572/60 -f 338/574/62 337/573/62 373/609/62 -f 373/609/62 374/610/62 338/574/62 -f 340/576/63 339/575/63 375/611/63 -f 375/611/63 376/612/63 340/576/63 -f 342/578/64 341/577/64 377/613/64 -f 377/613/64 378/614/64 342/578/64 -f 344/580/65 343/579/65 379/615/65 -f 379/615/65 380/616/65 344/580/65 -f 346/582/66 345/581/66 381/617/66 -f 381/617/66 382/618/66 346/582/66 -f 348/584/67 347/583/67 383/619/67 -f 383/619/67 384/620/67 348/584/67 -f 350/586/70 349/585/70 385/621/69 -f 385/621/69 386/622/69 350/586/70 -f 352/588/4 351/587/4 387/623/71 -f 387/623/71 388/624/71 352/588/4 -f 354/590/72 353/589/72 389/625/72 -f 389/625/72 390/626/72 354/590/72 -f 356/592/73 355/591/73 391/627/73 -f 391/627/73 392/628/73 356/592/73 -f 358/594/74 357/593/74 393/629/74 -f 393/629/74 394/630/74 358/594/74 -f 360/596/75 359/595/75 395/631/75 -f 395/631/75 396/632/75 360/596/75 -f 362/598/77 361/597/77 397/633/56 -f 397/633/56 398/634/56 362/598/77 -f 364/600/78 363/599/57 399/635/57 -f 399/635/57 400/636/57 364/600/78 -f 366/602/58 365/601/58 401/637/79 -f 401/637/79 402/638/79 366/602/58 -f 368/604/59 367/603/59 403/639/59 -f 403/639/59 404/640/59 368/604/59 -f 370/606/55 369/605/50 405/641/8 -f 405/641/8 406/642/8 370/606/55 -f 372/608/60 371/607/60 407/643/60 -f 407/643/60 408/644/60 372/608/60 -f 374/610/62 373/609/62 409/645/62 -f 409/645/62 410/646/62 374/610/62 -f 376/612/63 375/611/63 411/647/63 -f 411/647/63 412/648/63 376/612/63 -f 378/614/64 377/613/64 413/649/64 -f 413/649/64 414/650/64 378/614/64 -f 380/616/65 379/615/65 415/651/65 -f 415/651/65 416/652/65 380/616/65 -f 382/618/66 381/617/66 417/653/66 -f 417/653/66 418/654/66 382/618/66 -f 384/620/67 383/619/67 419/655/67 -f 419/655/67 420/656/67 384/620/67 -f 386/622/69 385/621/69 421/657/69 -f 421/657/69 422/658/69 386/622/69 -f 388/624/71 387/623/71 423/659/71 -f 423/659/71 424/660/71 388/624/71 -f 390/626/72 389/625/72 425/661/72 -f 425/661/72 426/662/72 390/626/72 -f 392/628/73 391/627/73 427/663/73 -f 427/663/73 428/664/73 392/628/73 -f 394/630/74 393/629/74 429/665/74 -f 429/665/74 430/666/74 394/630/74 -f 396/632/75 395/631/75 431/667/75 -f 431/667/75 432/668/75 396/632/75 -f 398/634/56 397/633/56 433/669/56 -f 433/669/56 434/670/56 398/634/56 -f 400/636/57 399/635/57 435/671/57 -f 435/671/57 436/672/57 400/636/57 -f 402/638/79 401/637/79 437/673/58 -f 437/673/58 438/674/58 402/638/79 -f 404/640/59 403/639/59 439/675/59 -f 439/675/59 440/676/59 404/640/59 -f 406/642/8 405/641/8 441/677/8 -f 441/677/8 442/678/8 406/642/8 -f 408/644/60 407/643/60 443/679/60 -f 443/679/60 444/680/60 408/644/60 -f 410/646/62 409/645/62 445/681/62 -f 445/681/62 446/682/62 410/646/62 -f 412/648/63 411/647/63 447/683/63 -f 447/683/63 448/684/63 412/648/63 -f 414/650/64 413/649/64 449/685/64 -f 449/685/64 450/686/64 414/650/64 -f 416/652/65 415/651/65 451/687/65 -f 451/687/65 452/688/65 416/652/65 -f 418/654/66 417/653/66 453/689/66 -f 453/689/66 454/690/66 418/654/66 -f 420/656/67 419/655/67 455/691/67 -f 455/691/67 456/692/67 420/656/67 -f 422/658/69 421/657/69 457/693/69 -f 457/693/69 458/694/69 422/658/69 -f 424/660/71 423/659/71 459/695/71 -f 459/695/71 460/696/71 424/660/71 -f 426/662/72 425/661/72 461/697/72 -f 461/697/72 462/698/72 426/662/72 -f 428/664/73 427/663/73 463/699/73 -f 463/699/73 464/700/73 428/664/73 -f 430/666/74 429/665/74 465/701/74 -f 465/701/74 466/702/74 430/666/74 -f 432/668/75 431/667/75 467/703/75 -f 467/703/75 468/704/75 432/668/75 -#s 1 -f 469/705/44 470/706/44 471/707/44 -f 471/707/44 472/708/44 473/709/44 -f 473/709/44 474/710/44 475/711/44 -f 471/707/44 473/709/44 475/711/44 -f 475/711/44 476/712/44 477/713/44 -f 477/713/44 478/714/44 479/715/44 -f 475/711/44 477/713/44 479/715/44 -f 479/715/44 480/716/44 481/717/44 -f 481/717/44 482/718/44 483/719/44 -f 479/715/44 481/717/44 483/719/44 -f 475/711/44 479/715/44 483/719/44 -f 471/707/44 475/711/44 483/719/44 -f 483/719/44 484/720/44 485/721/44 -f 471/707/44 483/719/44 485/721/44 -f 469/705/44 471/707/44 485/721/44 -f 486/722/44 469/705/44 485/721/44 -f 487/723/80 488/724/45 489/725/54 -f 489/725/54 490/726/45 491/727/54 -f 491/727/54 492/728/81 493/729/54 -f 489/725/54 491/727/54 493/729/54 -f 493/729/54 494/730/45 495/731/45 -f 495/731/45 496/732/80 497/733/80 -f 493/729/54 495/731/45 497/733/80 -f 497/733/80 498/734/45 499/735/45 -f 499/735/45 500/736/45 501/737/45 -f 497/733/80 499/735/45 501/737/45 -f 493/729/54 497/733/80 501/737/45 -f 489/725/54 493/729/54 501/737/45 -f 501/737/45 502/738/45 503/739/45 -f 489/725/54 501/737/45 503/739/45 -f 487/723/80 489/725/54 503/739/45 -f 504/740/45 487/723/80 503/739/45 -#s off -f 485/741/77 484/742/77 505/743/77 -f 505/743/56 506/744/56 485/741/56 -f 484/742/56 507/745/56 508/746/56 -f 508/746/56 505/743/56 484/742/56 -f 507/745/56 509/747/56 510/748/56 -f 510/748/56 508/746/56 507/745/56 -f 509/747/56 511/749/56 512/750/56 -f 512/750/56 510/748/56 509/747/56 -f 511/749/56 513/751/56 514/752/56 -f 514/752/56 512/750/56 511/749/56 -f 513/751/56 487/753/56 515/754/56 -f 515/754/56 514/752/56 513/751/56 -f 487/753/56 504/755/56 516/756/56 -f 516/756/56 515/754/56 487/753/56 -f 504/755/56 517/757/56 518/758/56 -f 518/758/56 516/756/56 504/755/56 -f 517/757/56 519/759/56 520/760/56 -f 520/760/56 518/758/56 517/757/56 -f 519/759/56 521/761/56 522/762/56 -f 522/762/56 520/760/56 519/759/56 -f 521/761/56 523/763/56 524/764/56 -f 524/764/56 522/762/56 521/761/56 -f 523/763/56 485/741/56 506/744/56 -f 506/744/56 524/764/56 523/763/56 -f 525/765/58 483/766/58 526/767/58 -f 526/767/58 527/768/58 525/765/58 -f 483/766/58 482/769/58 528/770/58 -f 528/770/79 526/767/79 483/766/79 -f 482/769/58 529/771/58 530/772/58 -f 530/772/58 528/770/58 482/769/58 -f 529/771/58 531/773/58 532/774/58 -f 532/774/58 530/772/58 529/771/58 -f 531/773/58 533/775/58 534/776/58 -f 534/776/58 532/774/58 531/773/58 -f 533/775/58 535/777/58 536/778/58 -f 536/778/58 534/776/58 533/775/58 -f 535/777/58 489/779/58 537/780/58 -f 537/780/58 536/778/58 535/777/58 -f 489/779/58 488/781/58 538/782/58 -f 538/782/79 537/780/79 489/779/79 -f 488/781/58 539/783/58 540/784/58 -f 540/784/58 538/782/58 488/781/58 -f 539/783/79 541/785/79 542/786/79 -f 542/786/58 540/784/58 539/783/58 -f 541/785/58 543/787/58 544/788/58 -f 544/788/58 542/786/58 541/785/58 -f 543/787/58 525/765/58 527/768/58 -f 527/768/58 544/788/58 543/787/58 -f 545/789/8 481/790/8 546/791/8 -f 546/791/8 547/792/8 545/789/8 -f 481/790/8 480/793/8 548/794/8 -f 548/794/8 546/791/8 481/790/8 -f 480/793/8 549/795/8 550/796/8 -f 550/796/8 548/794/8 480/793/8 -f 549/795/8 551/797/8 552/798/8 -f 552/798/8 550/796/8 549/795/8 -f 551/797/8 553/799/8 554/800/8 -f 554/800/8 552/798/8 551/797/8 -f 553/799/8 555/801/8 556/802/8 -f 556/802/8 554/800/8 553/799/8 -f 555/801/8 491/803/8 557/804/8 -f 557/804/8 556/802/8 555/801/8 -f 491/803/8 490/805/8 558/806/8 -f 558/806/8 557/804/8 491/803/8 -f 490/805/8 559/807/8 560/808/8 -f 560/808/8 558/806/8 490/805/8 -f 559/807/8 561/809/8 562/810/8 -f 562/810/8 560/808/8 559/807/8 -f 561/809/55 563/811/55 564/812/55 -f 564/812/55 562/810/55 561/809/55 -f 563/811/8 545/789/8 547/792/8 -f 547/792/8 564/812/8 563/811/8 -f 565/813/62 479/814/62 566/815/62 -f 566/815/62 567/816/62 565/813/62 -f 479/814/62 478/817/62 568/818/62 -f 568/818/82 566/815/82 479/814/82 -f 478/817/62 569/819/62 570/820/62 -f 570/820/62 568/818/62 478/817/62 -f 569/819/62 571/821/62 572/822/62 -f 572/822/62 570/820/62 569/819/62 -f 571/821/62 573/823/62 574/824/62 -f 574/824/62 572/822/62 571/821/62 -f 573/823/62 575/825/62 576/826/62 -f 576/826/62 574/824/62 573/823/62 -f 575/825/62 493/827/62 577/828/62 -f 577/828/62 576/826/62 575/825/62 -f 493/827/62 492/829/62 578/830/62 -f 578/830/62 577/828/62 493/827/62 -f 492/829/62 579/831/62 580/832/62 -f 580/832/62 578/830/62 492/829/62 -f 579/831/62 581/833/62 582/834/62 -f 582/834/62 580/832/62 579/831/62 -f 581/833/62 583/835/62 584/836/62 -f 584/836/62 582/834/62 581/833/62 -f 583/835/62 565/813/62 567/816/62 -f 567/816/62 584/836/62 583/835/62 -f 585/837/64 477/838/64 586/839/64 -f 586/839/64 587/840/64 585/837/64 -f 477/838/83 476/841/83 588/842/83 -f 588/842/64 586/839/64 477/838/64 -f 476/841/64 589/843/64 590/844/64 -f 590/844/64 588/842/64 476/841/64 -f 589/843/64 591/845/64 592/846/64 -f 592/846/64 590/844/64 589/843/64 -f 591/845/64 593/847/64 594/848/64 -f 594/848/64 592/846/64 591/845/64 -f 593/847/64 595/849/64 596/850/64 -f 596/850/64 594/848/64 593/847/64 -f 595/849/64 495/851/64 597/852/64 -f 597/852/64 596/850/64 595/849/64 -f 495/851/83 494/853/83 598/854/83 -f 598/854/64 597/852/64 495/851/64 -f 494/853/64 599/855/64 600/856/64 -f 600/856/64 598/854/64 494/853/64 -f 599/855/64 601/857/64 602/858/64 -f 602/858/64 600/856/64 599/855/64 -f 601/857/64 603/859/64 604/860/64 -f 604/860/64 602/858/64 601/857/64 -f 603/859/64 585/837/64 587/840/64 -f 587/840/83 604/860/83 603/859/83 -f 605/861/66 475/862/66 606/863/66 -f 606/863/66 607/864/66 605/861/66 -f 475/862/66 474/865/66 608/866/66 -f 608/866/84 606/863/84 475/862/84 -f 474/865/66 609/867/66 610/868/66 -f 610/868/66 608/866/66 474/865/66 -f 609/867/84 611/869/84 612/870/84 -f 612/870/84 610/868/84 609/867/84 -f 611/869/66 613/871/66 614/872/66 -f 614/872/66 612/870/66 611/869/66 -f 613/871/66 615/873/66 616/874/66 -f 616/874/66 614/872/66 613/871/66 -f 615/873/66 497/875/66 617/876/66 -f 617/876/66 616/874/66 615/873/66 -f 497/875/66 496/877/66 618/878/66 -f 618/878/84 617/876/84 497/875/84 -f 496/877/66 619/879/66 620/880/66 -f 620/880/66 618/878/66 496/877/66 -f 619/879/66 621/881/66 622/882/66 -f 622/882/66 620/880/66 619/879/66 -f 621/881/66 623/883/66 624/884/66 -f 624/884/66 622/882/66 621/881/66 -f 623/883/84 605/861/84 607/864/84 -f 607/864/84 624/884/84 623/883/84 -f 625/885/69 473/886/69 626/887/69 -f 626/887/69 627/888/69 625/885/69 -f 473/886/70 472/889/70 628/890/70 -f 628/890/69 626/887/69 473/886/69 -f 472/889/69 629/891/69 630/892/69 -f 630/892/69 628/890/69 472/889/69 -f 629/891/70 631/893/70 632/894/70 -f 632/894/70 630/892/70 629/891/70 -f 631/893/69 633/895/69 634/896/69 -f 634/896/69 632/894/69 631/893/69 -f 633/895/69 635/897/69 636/898/69 -f 636/898/70 634/896/70 633/895/70 -f 635/897/69 499/899/69 637/900/69 -f 637/900/69 636/898/69 635/897/69 -f 499/899/70 498/901/70 638/902/70 -f 638/902/69 637/900/69 499/899/69 -f 498/901/69 639/903/69 640/904/69 -f 640/904/69 638/902/69 498/901/69 -f 639/903/70 641/905/70 642/906/70 -f 642/906/70 640/904/70 639/903/70 -f 641/905/69 643/907/69 644/908/69 -f 644/908/69 642/906/69 641/905/69 -f 643/907/70 625/885/70 627/888/70 -f 627/888/70 644/908/70 643/907/70 -f 645/909/72 471/910/72 646/911/72 -f 646/911/72 647/912/72 645/909/72 -f 471/910/72 470/913/72 648/914/72 -f 648/914/85 646/911/85 471/910/85 -f 470/913/72 649/915/72 650/916/72 -f 650/916/72 648/914/72 470/913/72 -f 649/915/72 651/917/72 652/918/72 -f 652/918/72 650/916/72 649/915/72 -f 651/917/85 653/919/85 654/920/85 -f 654/920/85 652/918/85 651/917/85 -f 653/919/72 655/921/72 656/922/72 -f 656/922/72 654/920/72 653/919/72 -f 655/921/72 501/923/72 657/924/72 -f 657/924/72 656/922/72 655/921/72 -f 501/923/72 500/925/72 658/926/72 -f 658/926/85 657/924/85 501/923/85 -f 500/925/72 659/927/72 660/928/72 -f 660/928/72 658/926/72 500/925/72 -f 659/927/72 661/929/72 662/930/72 -f 662/930/72 660/928/72 659/927/72 -f 661/929/72 663/931/72 664/932/72 -f 664/932/85 662/930/85 661/929/85 -f 663/931/72 645/909/72 647/912/72 -f 647/912/72 664/932/72 663/931/72 -f 665/933/74 469/934/74 666/935/74 -f 666/935/74 667/936/74 665/933/74 -f 469/934/86 486/937/86 668/938/86 -f 668/938/74 666/935/74 469/934/74 -f 486/937/74 669/939/74 670/940/74 -f 670/940/74 668/938/74 486/937/74 -f 669/939/74 671/941/74 672/942/74 -f 672/942/74 670/940/74 669/939/74 -f 671/941/74 673/943/74 674/944/74 -f 674/944/74 672/942/74 671/941/74 -f 673/943/74 675/945/74 676/946/74 -f 676/946/74 674/944/74 673/943/74 -f 675/945/74 503/947/74 677/948/74 -f 677/948/74 676/946/74 675/945/74 -f 503/947/74 502/949/74 678/950/74 -f 678/950/74 677/948/74 503/947/74 -f 502/949/74 679/951/74 680/952/74 -f 680/952/74 678/950/74 502/949/74 -f 679/951/74 681/953/74 682/954/74 -f 682/954/74 680/952/74 679/951/74 -f 681/953/74 683/955/74 684/956/74 -f 684/956/74 682/954/74 681/953/74 -f 683/955/74 665/933/74 667/936/74 -f 667/936/74 684/956/74 683/955/74 -f 506/957/44 505/958/44 254/959/44 -f 254/959/49 253/960/49 506/957/49 -f 505/961/87 508/962/87 255/963/87 -f 255/963/87 254/964/87 505/961/87 -f 508/962/87 510/965/87 325/966/87 -f 325/966/87 255/963/87 508/962/87 -f 510/965/87 512/967/87 361/968/87 -f 361/968/87 325/966/87 510/965/87 -f 512/967/87 514/969/87 397/970/87 -f 397/970/87 361/968/87 512/967/87 -f 514/969/87 515/971/87 433/972/87 -f 433/972/87 397/970/87 514/969/87 -f 515/973/45 516/974/45 434/975/45 -f 434/975/54 433/976/54 515/973/54 -f 516/977/88 518/978/88 398/979/88 -f 398/979/88 434/980/88 516/977/88 -f 518/978/88 520/981/88 362/982/88 -f 362/982/88 398/979/88 518/978/88 -f 520/981/88 522/983/88 326/984/88 -f 326/984/88 362/982/88 520/981/88 -f 522/983/88 524/985/88 256/986/88 -f 256/986/88 326/984/88 522/983/88 -f 524/985/88 506/987/88 253/988/88 -f 253/988/88 256/986/88 524/985/88 -f 527/989/89 526/990/89 261/991/89 -f 261/991/89 264/992/89 527/989/89 -f 526/993/44 528/994/44 262/995/44 -f 262/995/44 261/996/44 526/993/44 -f 528/997/90 530/998/90 263/999/90 -f 263/999/90 262/1000/90 528/997/90 -f 530/998/90 532/1001/90 329/1002/90 -f 329/1002/91 263/999/91 530/998/91 -f 532/1001/90 534/1003/90 365/1004/90 -f 365/1004/90 329/1002/90 532/1001/90 -f 534/1003/90 536/1005/90 401/1006/90 -f 401/1006/90 365/1004/90 534/1003/90 -f 536/1005/90 537/1007/90 437/1008/90 -f 437/1008/90 401/1006/90 536/1005/90 -f 537/1009/45 538/1010/45 438/1011/45 -f 438/1011/45 437/1012/45 537/1009/45 -f 538/1013/89 540/1014/89 402/1015/89 -f 402/1015/89 438/1016/89 538/1013/89 -f 540/1014/89 542/1017/89 366/1018/89 -f 366/1018/89 402/1015/89 540/1014/89 -f 542/1017/89 544/1019/89 330/1020/89 -f 330/1020/89 366/1018/89 542/1017/89 -f 544/1019/89 527/989/89 264/992/89 -f 264/992/89 330/1020/89 544/1019/89 -f 547/1021/51 546/1022/51 269/1023/51 -f 269/1023/51 272/1024/51 547/1021/51 -f 546/1025/44 548/1026/44 270/1027/44 -f 270/1027/44 269/1028/44 546/1025/44 -f 548/1029/46 550/1030/46 271/1031/46 -f 271/1031/46 270/1032/46 548/1029/46 -f 550/1030/46 552/1033/46 333/1034/46 -f 333/1034/46 271/1031/46 550/1030/46 -f 552/1033/46 554/1035/46 369/1036/46 -f 369/1036/46 333/1034/46 552/1033/46 -f 554/1035/46 556/1037/46 405/1038/46 -f 405/1038/46 369/1036/46 554/1035/46 -f 556/1037/46 557/1039/46 441/1040/46 -f 441/1040/46 405/1038/46 556/1037/46 -f 557/1041/45 558/1042/45 442/1043/45 -f 442/1043/45 441/1044/45 557/1041/45 -f 558/1045/51 560/1046/51 406/1047/51 -f 406/1047/51 442/1048/51 558/1045/51 -f 560/1046/51 562/1049/51 370/1050/51 -f 370/1050/51 406/1047/51 560/1046/51 -f 562/1049/51 564/1051/51 334/1052/51 -f 334/1052/51 370/1050/51 562/1049/51 -f 564/1051/51 547/1021/51 272/1024/51 -f 272/1024/51 334/1052/51 564/1051/51 -f 567/1053/92 566/1054/92 277/1055/92 -f 277/1055/92 280/1056/92 567/1053/92 -f 566/1057/44 568/1058/44 278/1059/44 -f 278/1059/44 277/1060/44 566/1057/44 -f 568/1061/93 570/1062/93 279/1063/93 -f 279/1063/93 278/1064/93 568/1061/93 -f 570/1062/93 572/1065/93 337/1066/93 -f 337/1066/94 279/1063/94 570/1062/94 -f 572/1065/93 574/1067/93 373/1068/93 -f 373/1068/93 337/1066/93 572/1065/93 -f 574/1067/93 576/1069/93 409/1070/93 -f 409/1070/93 373/1068/93 574/1067/93 -f 576/1069/93 577/1071/93 445/1072/93 -f 445/1072/93 409/1070/93 576/1069/93 -f 577/1073/54 578/1074/54 446/1075/54 -f 446/1075/54 445/1076/54 577/1073/54 -f 578/1077/92 580/1078/92 410/1079/92 -f 410/1079/92 446/1080/92 578/1077/92 -f 580/1078/95 582/1081/95 374/1082/95 -f 374/1082/92 410/1079/92 580/1078/92 -f 582/1081/92 584/1083/92 338/1084/92 -f 338/1084/92 374/1082/92 582/1081/92 -f 584/1083/92 567/1053/92 280/1056/92 -f 280/1056/92 338/1084/92 584/1083/92 -f 587/1085/96 586/1086/96 285/1087/96 -f 285/1087/96 288/1088/96 587/1085/96 -f 586/1089/44 588/1090/44 286/1091/44 -f 286/1091/44 285/1092/44 586/1089/44 -f 588/1093/97 590/1094/97 287/1095/97 -f 287/1095/98 286/1096/98 588/1093/98 -f 590/1094/98 592/1097/98 341/1098/98 -f 341/1098/97 287/1095/97 590/1094/97 -f 592/1097/98 594/1099/98 377/1100/98 -f 377/1100/97 341/1098/97 592/1097/97 -f 594/1099/98 596/1101/98 413/1102/98 -f 413/1102/98 377/1100/98 594/1099/98 -f 596/1101/98 597/1103/98 449/1104/98 -f 449/1104/98 413/1102/98 596/1101/98 -f 597/1105/45 598/1106/45 450/1107/45 -f 450/1107/45 449/1108/45 597/1105/45 -f 598/1109/96 600/1110/96 414/1111/96 -f 414/1111/99 450/1112/99 598/1109/99 -f 600/1110/96 602/1113/96 378/1114/96 -f 378/1114/96 414/1111/96 600/1110/96 -f 602/1113/99 604/1115/99 342/1116/99 -f 342/1116/96 378/1114/96 602/1113/96 -f 604/1115/99 587/1085/99 288/1088/99 -f 288/1088/99 342/1116/99 604/1115/99 -f 607/1117/100 606/1118/100 293/1119/100 -f 293/1119/100 296/1120/100 607/1117/100 -f 606/1121/44 608/1122/44 294/1123/44 -f 294/1123/44 293/1124/44 606/1121/44 -f 608/1125/101 610/1126/101 295/1127/101 -f 295/1127/101 294/1128/101 608/1125/101 -f 610/1126/101 612/1129/101 345/1130/101 -f 345/1130/101 295/1127/101 610/1126/101 -f 612/1129/101 614/1131/101 381/1132/101 -f 381/1132/102 345/1130/102 612/1129/102 -f 614/1131/101 616/1133/101 417/1134/101 -f 417/1134/101 381/1132/101 614/1131/101 -f 616/1133/101 617/1135/101 453/1136/101 -f 453/1136/101 417/1134/101 616/1133/101 -f 617/1137/54 618/1138/54 454/1139/54 -f 454/1139/45 453/1140/45 617/1137/45 -f 618/1141/100 620/1142/100 418/1143/100 -f 418/1143/100 454/1144/100 618/1141/100 -f 620/1142/100 622/1145/100 382/1146/100 -f 382/1146/100 418/1143/100 620/1142/100 -f 622/1145/100 624/1147/100 346/1148/100 -f 346/1148/100 382/1146/100 622/1145/100 -f 624/1147/103 607/1117/103 296/1120/103 -f 296/1120/100 346/1148/100 624/1147/100 -f 627/1149/104 626/1150/104 301/1151/104 -f 301/1151/104 304/1152/104 627/1149/104 -f 626/1153/44 628/1154/44 302/1155/44 -f 302/1155/44 301/1156/44 626/1153/44 -f 628/1157/105 630/1158/105 303/1159/105 -f 303/1159/105 302/1160/105 628/1157/105 -f 630/1158/105 632/1161/105 349/1162/105 -f 349/1162/105 303/1159/105 630/1158/105 -f 632/1161/105 634/1163/105 385/1164/105 -f 385/1164/105 349/1162/105 632/1161/105 -f 634/1163/105 636/1165/105 421/1166/105 -f 421/1166/105 385/1164/105 634/1163/105 -f 636/1165/105 637/1167/105 457/1168/105 -f 457/1168/105 421/1166/105 636/1165/105 -f 637/1169/45 638/1170/45 458/1171/45 -f 458/1171/45 457/1172/45 637/1169/45 -f 638/1173/104 640/1174/104 422/1175/104 -f 422/1175/104 458/1176/104 638/1173/104 -f 640/1174/104 642/1177/104 386/1178/104 -f 386/1178/104 422/1175/104 640/1174/104 -f 642/1177/104 644/1179/104 350/1180/104 -f 350/1180/104 386/1178/104 642/1177/104 -f 644/1179/104 627/1149/104 304/1152/104 -f 304/1152/104 350/1180/104 644/1179/104 -f 647/1181/106 646/1182/106 309/1183/106 -f 309/1183/106 312/1184/106 647/1181/106 -f 646/1185/44 648/1186/44 310/1187/44 -f 310/1187/44 309/1188/44 646/1185/44 -f 648/1189/107 650/1190/107 311/1191/107 -f 311/1191/107 310/1192/107 648/1189/107 -f 650/1190/107 652/1193/107 353/1194/107 -f 353/1194/107 311/1191/107 650/1190/107 -f 652/1193/107 654/1195/107 389/1196/107 -f 389/1196/107 353/1194/107 652/1193/107 -f 654/1195/107 656/1197/107 425/1198/107 -f 425/1198/107 389/1196/107 654/1195/107 -f 656/1197/107 657/1199/107 461/1200/107 -f 461/1200/107 425/1198/107 656/1197/107 -f 657/1201/45 658/1202/45 462/1203/45 -f 462/1203/45 461/1204/45 657/1201/45 -f 658/1205/106 660/1206/106 426/1207/106 -f 426/1207/106 462/1208/106 658/1205/106 -f 660/1206/106 662/1209/106 390/1210/106 -f 390/1210/106 426/1207/106 660/1206/106 -f 662/1209/106 664/1211/106 354/1212/106 -f 354/1212/106 390/1210/106 662/1209/106 -f 664/1211/106 647/1181/106 312/1184/106 -f 312/1184/106 354/1212/106 664/1211/106 -f 667/1213/108 666/1214/108 317/1215/108 -f 317/1215/108 320/1216/108 667/1213/108 -f 666/1217/49 668/1218/49 318/1219/49 -f 318/1219/49 317/1220/49 666/1217/49 -f 668/1221/109 670/1222/109 319/1223/109 -f 319/1223/109 318/1224/109 668/1221/109 -f 670/1222/110 672/1225/110 357/1226/110 -f 357/1226/109 319/1223/109 670/1222/109 -f 672/1225/109 674/1227/109 393/1228/109 -f 393/1228/109 357/1226/109 672/1225/109 -f 674/1227/109 676/1229/109 429/1230/109 -f 429/1230/110 393/1228/110 674/1227/110 -f 676/1229/109 677/1231/109 465/1232/109 -f 465/1232/109 429/1230/109 676/1229/109 -f 677/1233/45 678/1234/45 466/1235/45 -f 466/1235/45 465/1236/45 677/1233/45 -f 678/1237/108 680/1238/108 430/1239/108 -f 430/1239/108 466/1240/108 678/1237/108 -f 680/1238/108 682/1241/108 394/1242/108 -f 394/1242/108 430/1239/108 680/1238/108 -f 682/1241/108 684/1243/108 358/1244/108 -f 358/1244/108 394/1242/108 682/1241/108 -f 684/1243/111 667/1213/111 320/1216/111 -f 320/1216/111 358/1244/111 684/1243/111 -f 507/745/57 484/742/57 685/1245/57 -f 685/1245/57 686/1246/57 507/745/57 -f 484/742/78 483/1247/78 687/1248/78 -f 687/1248/57 685/1245/57 484/742/57 -f 483/1247/57 525/1249/57 688/1250/57 -f 688/1250/57 687/1248/57 483/1247/57 -f 525/1249/57 543/1251/57 689/1252/57 -f 689/1252/57 688/1250/57 525/1249/57 -f 543/1251/57 541/1253/57 690/1254/57 -f 690/1254/57 689/1252/57 543/1251/57 -f 541/1253/57 539/1255/57 691/1256/57 -f 691/1256/57 690/1254/57 541/1253/57 -f 539/1255/57 488/1257/57 692/1258/57 -f 692/1258/57 691/1256/57 539/1255/57 -f 488/1257/57 487/753/57 693/1259/57 -f 693/1259/57 692/1258/57 488/1257/57 -f 487/753/57 513/751/57 694/1260/57 -f 694/1260/57 693/1259/57 487/753/57 -f 513/751/57 511/749/57 695/1261/57 -f 695/1261/57 694/1260/57 513/751/57 -f 511/749/57 509/747/57 696/1262/57 -f 696/1262/57 695/1261/57 511/749/57 -f 509/747/57 507/745/57 686/1246/57 -f 686/1246/57 696/1262/57 509/747/57 -f 529/771/59 482/769/59 697/1263/59 -f 697/1263/59 698/1264/59 529/771/59 -f 482/769/59 481/790/59 699/1265/59 -f 699/1265/76 697/1263/76 482/769/76 -f 481/790/59 545/789/59 700/1266/59 -f 700/1266/59 699/1265/59 481/790/59 -f 545/789/59 563/811/59 701/1267/59 -f 701/1267/59 700/1266/59 545/789/59 -f 563/811/76 561/809/76 702/1268/76 -f 702/1268/76 701/1267/76 563/811/76 -f 561/809/59 559/807/59 703/1269/59 -f 703/1269/59 702/1268/59 561/809/59 -f 559/807/59 490/805/59 704/1270/59 -f 704/1270/59 703/1269/59 559/807/59 -f 490/805/59 489/779/59 705/1271/59 -f 705/1271/76 704/1270/76 490/805/76 -f 489/779/59 535/777/59 706/1272/59 -f 706/1272/59 705/1271/59 489/779/59 -f 535/777/59 533/775/59 707/1273/59 -f 707/1273/59 706/1272/59 535/777/59 -f 533/775/59 531/773/59 708/1274/59 -f 708/1274/76 707/1273/76 533/775/76 -f 531/773/59 529/771/59 698/1264/59 -f 698/1264/59 708/1274/59 531/773/59 -f 549/795/60 480/793/60 709/1275/60 -f 709/1275/60 710/1276/60 549/795/60 -f 480/793/60 479/814/60 711/1277/60 -f 711/1277/61 709/1275/61 480/793/61 -f 479/814/60 565/813/60 712/1278/60 -f 712/1278/60 711/1277/60 479/814/60 -f 565/813/60 583/835/60 713/1279/60 -f 713/1279/60 712/1278/60 565/813/60 -f 583/835/60 581/833/60 714/1280/60 -f 714/1280/60 713/1279/60 583/835/60 -f 581/833/60 579/831/60 715/1281/60 -f 715/1281/60 714/1280/60 581/833/60 -f 579/831/60 492/829/60 716/1282/60 -f 716/1282/60 715/1281/60 579/831/60 -f 492/829/61 491/803/61 717/1283/61 -f 717/1283/60 716/1282/60 492/829/60 -f 491/803/60 555/801/60 718/1284/60 -f 718/1284/60 717/1283/60 491/803/60 -f 555/801/60 553/799/60 719/1285/60 -f 719/1285/60 718/1284/60 555/801/60 -f 553/799/60 551/797/60 720/1286/60 -f 720/1286/60 719/1285/60 553/799/60 -f 551/797/60 549/795/60 710/1276/60 -f 710/1276/60 720/1286/60 551/797/60 -f 569/1287/63 478/1288/63 721/1289/63 -f 721/1289/63 722/1290/63 569/1287/63 -f 478/1288/112 477/838/112 723/1291/112 -f 723/1291/63 721/1289/63 478/1288/63 -f 477/838/63 585/837/63 724/1292/63 -f 724/1292/63 723/1291/63 477/838/63 -f 585/837/63 603/859/63 725/1293/63 -f 725/1293/63 724/1292/63 585/837/63 -f 603/859/63 601/857/63 726/1294/63 -f 726/1294/63 725/1293/63 603/859/63 -f 601/857/63 599/855/63 727/1295/63 -f 727/1295/63 726/1294/63 601/857/63 -f 599/855/63 494/853/63 728/1296/63 -f 728/1296/63 727/1295/63 599/855/63 -f 494/853/63 493/1297/63 729/1298/63 -f 729/1298/63 728/1296/63 494/853/63 -f 493/1297/63 575/1299/63 730/1300/63 -f 730/1300/63 729/1298/63 493/1297/63 -f 575/1299/63 573/1301/63 731/1302/63 -f 731/1302/63 730/1300/63 575/1299/63 -f 573/1301/63 571/1303/63 732/1304/63 -f 732/1304/63 731/1302/63 573/1301/63 -f 571/1303/63 569/1287/63 722/1290/63 -f 722/1290/63 732/1304/63 571/1303/63 -f 589/843/65 476/841/65 733/1305/65 -f 733/1305/65 734/1306/65 589/843/65 -f 476/841/65 475/862/65 735/1307/65 -f 735/1307/65 733/1305/65 476/841/65 -f 475/862/65 605/861/65 736/1308/65 -f 736/1308/65 735/1307/65 475/862/65 -f 605/861/113 623/883/113 737/1309/113 -f 737/1309/65 736/1308/65 605/861/65 -f 623/883/65 621/881/65 738/1310/65 -f 738/1310/65 737/1309/65 623/883/65 -f 621/881/65 619/879/65 739/1311/65 -f 739/1311/65 738/1310/65 621/881/65 -f 619/879/65 496/877/65 740/1312/65 -f 740/1312/65 739/1311/65 619/879/65 -f 496/877/65 495/851/65 741/1313/65 -f 741/1313/65 740/1312/65 496/877/65 -f 495/851/65 595/849/65 742/1314/65 -f 742/1314/65 741/1313/65 495/851/65 -f 595/849/65 593/847/65 743/1315/65 -f 743/1315/65 742/1314/65 595/849/65 -f 593/847/65 591/845/65 744/1316/65 -f 744/1316/65 743/1315/65 593/847/65 -f 591/845/65 589/843/65 734/1306/65 -f 734/1306/65 744/1316/65 591/845/65 -f 609/1317/67 474/1318/67 745/1319/67 -f 745/1319/67 746/1320/67 609/1317/67 -f 474/1318/67 473/886/67 747/1321/67 -f 747/1321/67 745/1319/67 474/1318/67 -f 473/886/67 625/885/67 748/1322/67 -f 748/1322/67 747/1321/67 473/886/67 -f 625/885/68 643/907/68 749/1323/68 -f 749/1323/68 748/1322/68 625/885/68 -f 643/907/67 641/905/67 750/1324/67 -f 750/1324/67 749/1323/67 643/907/67 -f 641/905/67 639/903/67 751/1325/67 -f 751/1325/67 750/1324/67 641/905/67 -f 639/903/67 498/901/67 752/1326/67 -f 752/1326/67 751/1325/67 639/903/67 -f 498/901/67 497/1327/67 753/1328/67 -f 753/1328/67 752/1326/67 498/901/67 -f 497/1327/67 615/1329/67 754/1330/67 -f 754/1330/67 753/1328/67 497/1327/67 -f 615/1329/67 613/1331/67 755/1332/67 -f 755/1332/67 754/1330/67 615/1329/67 -f 613/1331/67 611/1333/67 756/1334/67 -f 756/1334/67 755/1332/67 613/1331/67 -f 611/1333/68 609/1317/68 746/1320/68 -f 746/1320/68 756/1334/68 611/1333/68 -f 629/891/4 472/889/4 757/1335/4 -f 757/1335/4 758/1336/4 629/891/4 -f 472/889/4 471/910/4 759/1337/4 -f 759/1337/71 757/1335/71 472/889/71 -f 471/910/4 645/909/4 760/1338/4 -f 760/1338/4 759/1337/4 471/910/4 -f 645/909/4 663/931/4 761/1339/4 -f 761/1339/4 760/1338/4 645/909/4 -f 663/931/4 661/929/4 762/1340/4 -f 762/1340/4 761/1339/4 663/931/4 -f 661/929/4 659/927/4 763/1341/4 -f 763/1341/4 762/1340/4 661/929/4 -f 659/927/4 500/925/4 764/1342/4 -f 764/1342/4 763/1341/4 659/927/4 -f 500/925/4 499/899/4 765/1343/4 -f 765/1343/71 764/1342/71 500/925/71 -f 499/899/4 635/897/4 766/1344/4 -f 766/1344/4 765/1343/4 499/899/4 -f 635/897/4 633/895/4 767/1345/4 -f 767/1345/4 766/1344/4 635/897/4 -f 633/895/4 631/893/4 768/1346/4 -f 768/1346/4 767/1345/4 633/895/4 -f 631/893/4 629/891/4 758/1336/4 -f 758/1336/4 768/1346/4 631/893/4 -f 649/915/73 470/913/73 769/1347/73 -f 769/1347/73 770/1348/73 649/915/73 -f 470/913/73 469/1349/73 771/1350/73 -f 771/1350/73 769/1347/73 470/913/73 -f 469/1349/73 665/1351/73 772/1352/73 -f 772/1352/73 771/1350/73 469/1349/73 -f 665/1351/73 683/1353/73 773/1354/73 -f 773/1354/73 772/1352/73 665/1351/73 -f 683/1353/73 681/1355/73 774/1356/73 -f 774/1356/73 773/1354/73 683/1353/73 -f 681/1355/73 679/1357/73 775/1358/73 -f 775/1358/73 774/1356/73 681/1355/73 -f 679/1357/73 502/1359/73 776/1360/73 -f 776/1360/73 775/1358/73 679/1357/73 -f 502/1359/73 501/923/73 777/1361/73 -f 777/1361/73 776/1360/73 502/1359/73 -f 501/923/73 655/921/73 778/1362/73 -f 778/1362/73 777/1361/73 501/923/73 -f 655/921/73 653/919/73 779/1363/73 -f 779/1363/73 778/1362/73 655/921/73 -f 653/919/114 651/917/114 780/1364/114 -f 780/1364/73 779/1363/73 653/919/73 -f 651/917/73 649/915/73 770/1348/73 -f 770/1348/73 780/1364/73 651/917/73 -f 485/741/115 523/763/115 781/1365/115 -f 781/1365/115 782/1366/115 485/741/115 -f 523/763/75 521/761/75 783/1367/75 -f 783/1367/115 781/1365/115 523/763/115 -f 521/761/115 519/759/115 784/1368/115 -f 784/1368/75 783/1367/75 521/761/75 -f 519/759/115 517/757/115 785/1369/115 -f 785/1369/115 784/1368/115 519/759/115 -f 517/757/75 504/755/75 786/1370/75 -f 786/1370/115 785/1369/115 517/757/115 -f 504/755/116 503/947/116 787/1371/116 -f 787/1371/75 786/1370/75 504/755/75 -f 503/947/75 675/945/75 788/1372/75 -f 788/1372/75 787/1371/75 503/947/75 -f 675/945/75 673/943/75 789/1373/75 -f 789/1373/75 788/1372/75 675/945/75 -f 673/943/75 671/941/75 790/1374/75 -f 790/1374/75 789/1373/75 673/943/75 -f 671/941/75 669/939/75 791/1375/75 -f 791/1375/75 790/1374/75 671/941/75 -f 669/939/75 486/937/75 792/1376/75 -f 792/1376/75 791/1375/75 669/939/75 -f 486/937/116 485/741/116 782/1366/116 -f 782/1366/75 792/1376/75 486/937/75 -f 686/1377/101 685/1378/101 257/1379/101 -f 257/1379/101 260/1380/101 686/1377/101 -f 685/1381/44 687/1382/44 258/1383/44 -f 258/1383/44 257/1384/44 685/1381/44 -f 687/1385/100 688/1386/100 259/1387/100 -f 259/1387/100 258/1388/100 687/1385/100 -f 688/1386/100 689/1389/100 327/1390/100 -f 327/1390/100 259/1387/100 688/1386/100 -f 689/1389/100 690/1391/100 363/1392/100 -f 363/1392/100 327/1390/100 689/1389/100 -f 690/1391/100 691/1393/100 399/1394/100 -f 399/1394/100 363/1392/100 690/1391/100 -f 691/1393/100 692/1395/100 435/1396/100 -f 435/1396/100 399/1394/100 691/1393/100 -f 692/1397/54 693/1398/54 436/1399/54 -f 436/1399/45 435/1400/45 692/1397/45 -f 693/1401/101 694/1402/101 400/1403/101 -f 400/1403/101 436/1404/101 693/1401/101 -f 694/1402/101 695/1405/101 364/1406/101 -f 364/1406/101 400/1403/101 694/1402/101 -f 695/1405/101 696/1407/101 328/1408/101 -f 328/1408/101 364/1406/101 695/1405/101 -f 696/1407/101 686/1377/101 260/1380/101 -f 260/1380/101 328/1408/101 696/1407/101 -f 698/1409/105 697/1410/105 265/1411/105 -f 265/1411/105 268/1412/105 698/1409/105 -f 697/1413/44 699/1414/44 266/1415/44 -f 266/1415/44 265/1416/44 697/1413/44 -f 699/1417/104 700/1418/104 267/1419/104 -f 267/1419/104 266/1420/104 699/1417/104 -f 700/1418/104 701/1421/104 331/1422/104 -f 331/1422/104 267/1419/104 700/1418/104 -f 701/1421/104 702/1423/104 367/1424/104 -f 367/1424/104 331/1422/104 701/1421/104 -f 702/1423/104 703/1425/104 403/1426/104 -f 403/1426/104 367/1424/104 702/1423/104 -f 703/1425/104 704/1427/104 439/1428/104 -f 439/1428/104 403/1426/104 703/1425/104 -f 704/1429/45 705/1430/45 440/1431/45 -f 440/1431/45 439/1432/45 704/1429/45 -f 705/1433/105 706/1434/105 404/1435/105 -f 404/1435/105 440/1436/105 705/1433/105 -f 706/1434/105 707/1437/105 368/1438/105 -f 368/1438/105 404/1435/105 706/1434/105 -f 707/1437/105 708/1439/105 332/1440/105 -f 332/1440/105 368/1438/105 707/1437/105 -f 708/1439/105 698/1409/105 268/1412/105 -f 268/1412/105 332/1440/105 708/1439/105 -f 710/1441/107 709/1442/107 273/1443/107 -f 273/1443/107 276/1444/107 710/1441/107 -f 709/1445/44 711/1446/44 274/1447/44 -f 274/1447/44 273/1448/44 709/1445/44 -f 711/1449/106 712/1450/106 275/1451/106 -f 275/1451/106 274/1452/106 711/1449/106 -f 712/1450/106 713/1453/106 335/1454/106 -f 335/1454/106 275/1451/106 712/1450/106 -f 713/1453/106 714/1455/106 371/1456/106 -f 371/1456/106 335/1454/106 713/1453/106 -f 714/1455/106 715/1457/106 407/1458/106 -f 407/1458/106 371/1456/106 714/1455/106 -f 715/1457/106 716/1459/106 443/1460/106 -f 443/1460/106 407/1458/106 715/1457/106 -f 716/1461/45 717/1462/45 444/1463/45 -f 444/1463/45 443/1464/45 716/1461/45 -f 717/1465/107 718/1466/107 408/1467/107 -f 408/1467/107 444/1468/107 717/1465/107 -f 718/1466/107 719/1469/107 372/1470/107 -f 372/1470/107 408/1467/107 718/1466/107 -f 719/1469/107 720/1471/107 336/1472/107 -f 336/1472/107 372/1470/107 719/1469/107 -f 720/1471/107 710/1441/107 276/1444/107 -f 276/1444/107 336/1472/107 720/1471/107 -f 722/1473/109 721/1474/109 281/1475/109 -f 281/1475/109 284/1476/109 722/1473/109 -f 721/1477/44 723/1478/44 282/1479/44 -f 282/1479/44 281/1480/44 721/1477/44 -f 723/1481/108 724/1482/108 283/1483/108 -f 283/1483/108 282/1484/108 723/1481/108 -f 724/1482/108 725/1485/108 339/1486/108 -f 339/1486/108 283/1483/108 724/1482/108 -f 725/1485/108 726/1487/108 375/1488/108 -f 375/1488/108 339/1486/108 725/1485/108 -f 726/1487/111 727/1489/111 411/1490/111 -f 411/1490/108 375/1488/108 726/1487/108 -f 727/1489/108 728/1491/108 447/1492/108 -f 447/1492/108 411/1490/108 727/1489/108 -f 728/1493/45 729/1494/45 448/1495/45 -f 448/1495/45 447/1496/45 728/1493/45 -f 729/1497/109 730/1498/109 412/1499/109 -f 412/1499/109 448/1500/109 729/1497/109 -f 730/1498/109 731/1501/109 376/1502/109 -f 376/1502/110 412/1499/110 730/1498/110 -f 731/1501/109 732/1503/109 340/1504/109 -f 340/1504/109 376/1502/109 731/1501/109 -f 732/1503/109 722/1473/109 284/1476/109 -f 284/1476/110 340/1504/110 732/1503/110 -f 734/1505/87 733/1506/87 289/1507/87 -f 289/1507/87 292/1508/87 734/1505/87 -f 733/1509/44 735/1510/44 290/1511/44 -f 290/1511/44 289/1512/44 733/1509/44 -f 735/1513/88 736/1514/88 291/1515/88 -f 291/1515/88 290/1516/88 735/1513/88 -f 736/1514/88 737/1517/88 343/1518/88 -f 343/1518/88 291/1515/88 736/1514/88 -f 737/1517/88 738/1519/88 379/1520/88 -f 379/1520/88 343/1518/88 737/1517/88 -f 738/1519/88 739/1521/88 415/1522/88 -f 415/1522/88 379/1520/88 738/1519/88 -f 739/1521/88 740/1523/88 451/1524/88 -f 451/1524/88 415/1522/88 739/1521/88 -f 740/1525/45 741/1526/45 452/1527/45 -f 452/1527/54 451/1528/54 740/1525/54 -f 741/1529/87 742/1530/87 416/1531/87 -f 416/1531/87 452/1532/87 741/1529/87 -f 742/1530/87 743/1533/87 380/1534/87 -f 380/1534/87 416/1531/87 742/1530/87 -f 743/1533/87 744/1535/87 344/1536/87 -f 344/1536/87 380/1534/87 743/1533/87 -f 744/1535/87 734/1505/87 292/1508/87 -f 292/1508/117 344/1536/117 744/1535/117 -f 746/1537/90 745/1538/90 297/1539/90 -f 297/1539/90 300/1540/90 746/1537/90 -f 745/1541/44 747/1542/44 298/1543/44 -f 298/1543/44 297/1544/44 745/1541/44 -f 747/1545/89 748/1546/89 299/1547/89 -f 299/1547/89 298/1548/89 747/1545/89 -f 748/1546/89 749/1549/89 347/1550/89 -f 347/1550/89 299/1547/89 748/1546/89 -f 749/1549/89 750/1551/89 383/1552/89 -f 383/1552/89 347/1550/89 749/1549/89 -f 750/1551/89 751/1553/89 419/1554/89 -f 419/1554/89 383/1552/89 750/1551/89 -f 751/1553/89 752/1555/89 455/1556/89 -f 455/1556/89 419/1554/89 751/1553/89 -f 752/1557/45 753/1558/45 456/1559/45 -f 456/1559/45 455/1560/45 752/1557/45 -f 753/1561/90 754/1562/90 420/1563/90 -f 420/1563/90 456/1564/90 753/1561/90 -f 754/1562/90 755/1565/90 384/1566/90 -f 384/1566/90 420/1563/90 754/1562/90 -f 755/1565/90 756/1567/90 348/1568/90 -f 348/1568/90 384/1566/90 755/1565/90 -f 756/1567/90 746/1537/90 300/1540/90 -f 300/1540/90 348/1568/90 756/1567/90 -f 758/1569/118 757/1570/118 305/1571/118 -f 305/1571/118 308/1572/118 758/1569/118 -f 757/1573/44 759/1574/44 306/1575/44 -f 306/1575/44 305/1576/44 757/1573/44 -f 759/1577/47 760/1578/47 307/1579/47 -f 307/1579/47 306/1580/47 759/1577/47 -f 760/1578/47 761/1581/47 351/1582/47 -f 351/1582/47 307/1579/47 760/1578/47 -f 761/1581/47 762/1583/47 387/1584/47 -f 387/1584/47 351/1582/47 761/1581/47 -f 762/1583/47 763/1585/47 423/1586/47 -f 423/1586/47 387/1584/47 762/1583/47 -f 763/1585/47 764/1587/47 459/1588/47 -f 459/1588/47 423/1586/47 763/1585/47 -f 764/1589/45 765/1590/45 460/1591/45 -f 460/1591/45 459/1592/45 764/1589/45 -f 765/1593/118 766/1594/118 424/1595/118 -f 424/1595/118 460/1596/118 765/1593/118 -f 766/1594/118 767/1597/118 388/1598/118 -f 388/1598/118 424/1595/118 766/1594/118 -f 767/1597/118 768/1599/118 352/1600/118 -f 352/1600/118 388/1598/118 767/1597/118 -f 768/1599/118 758/1569/118 308/1572/118 -f 308/1572/118 352/1600/118 768/1599/118 -f 770/1601/93 769/1602/93 313/1603/93 -f 313/1603/93 316/1604/93 770/1601/93 -f 769/1605/44 771/1606/44 314/1607/44 -f 314/1607/44 313/1608/44 769/1605/44 -f 771/1609/92 772/1610/92 315/1611/92 -f 315/1611/92 314/1612/92 771/1609/92 -f 772/1610/92 773/1613/92 355/1614/92 -f 355/1614/92 315/1611/92 772/1610/92 -f 773/1613/92 774/1615/92 391/1616/92 -f 391/1616/92 355/1614/92 773/1613/92 -f 774/1615/92 775/1617/92 427/1618/92 -f 427/1618/92 391/1616/92 774/1615/92 -f 775/1617/92 776/1619/92 463/1620/92 -f 463/1620/92 427/1618/92 775/1617/92 -f 776/1621/54 777/1622/54 464/1623/54 -f 464/1623/54 463/1624/54 776/1621/54 -f 777/1625/93 778/1626/93 428/1627/93 -f 428/1627/93 464/1628/93 777/1625/93 -f 778/1626/93 779/1629/93 392/1630/93 -f 392/1630/93 428/1627/93 778/1626/93 -f 779/1629/93 780/1631/93 356/1632/93 -f 356/1632/93 392/1630/93 779/1629/93 -f 780/1631/94 770/1601/94 316/1604/94 -f 316/1604/94 356/1632/94 780/1631/94 -f 782/1633/99 781/1634/99 323/1635/99 -f 323/1635/96 322/1636/96 782/1633/96 -f 781/1634/96 783/1637/96 359/1638/96 -f 359/1638/99 323/1635/99 781/1634/99 -f 783/1637/96 784/1639/96 395/1640/96 -f 395/1640/96 359/1638/96 783/1637/96 -f 784/1639/96 785/1641/96 431/1642/96 -f 431/1642/96 395/1640/96 784/1639/96 -f 785/1641/96 786/1643/96 467/1644/96 -f 467/1644/96 431/1642/96 785/1641/96 -f 786/1645/45 787/1646/45 468/1647/45 -f 468/1647/45 467/1648/45 786/1645/45 -f 787/1649/97 788/1650/97 432/1651/97 -f 432/1651/98 468/1652/98 787/1649/98 -f 788/1650/98 789/1653/98 396/1654/98 -f 396/1654/98 432/1651/98 788/1650/98 -f 789/1653/98 790/1655/98 360/1656/98 -f 360/1656/98 396/1654/98 789/1653/98 -f 790/1655/97 791/1657/97 324/1658/97 -f 324/1658/97 360/1656/97 790/1655/97 -f 791/1657/98 792/1659/98 321/1660/98 -f 321/1660/98 324/1658/98 791/1657/98 -f 792/1661/49 782/1662/49 322/1663/49 -f 322/1663/49 321/1664/49 792/1661/49 -# 1574 faces - diff --git a/src/main/resources/assets/bbs_mod/models/fluid/beer_flow.json b/src/main/resources/assets/bbs_mod/models/fluid/beer_flow.json deleted file mode 100644 index e1f5e3a..0000000 --- a/src/main/resources/assets/bbs_mod/models/fluid/beer_flow.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "bbs_mod:fluid/beer_flow" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/fluid/beer_still.json b/src/main/resources/assets/bbs_mod/models/fluid/beer_still.json deleted file mode 100644 index ab18b7b..0000000 --- a/src/main/resources/assets/bbs_mod/models/fluid/beer_still.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "bbs_mod:fluid/beer_still" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/fluid/wort_flow.json b/src/main/resources/assets/bbs_mod/models/fluid/wort_flow.json deleted file mode 100644 index 17cf4ab..0000000 --- a/src/main/resources/assets/bbs_mod/models/fluid/wort_flow.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "bbs_mod:fluid/wort_flow" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/fluid/wort_still.json b/src/main/resources/assets/bbs_mod/models/fluid/wort_still.json deleted file mode 100644 index fb513f4..0000000 --- a/src/main/resources/assets/bbs_mod/models/fluid/wort_still.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "bbs_mod:fluid/wort_still" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/admiral.hop.json b/src/main/resources/assets/bbs_mod/models/item/admiral.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/admiral.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/admiral.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/admiral.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/admiral.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/admiral.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/admiral.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ahtanum.hop.json b/src/main/resources/assets/bbs_mod/models/item/ahtanum.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ahtanum.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/ahtanum.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ahtanum.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/ahtanum.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ahtanum.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/ahtanum.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/amarillo.hop.json b/src/main/resources/assets/bbs_mod/models/item/amarillo.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/amarillo.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/amarillo.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/amarillo.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/amarillo.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/amarillo.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/amarillo.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/aquila.hop.json b/src/main/resources/assets/bbs_mod/models/item/aquila.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/aquila.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/aquila.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/aquila.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/aquila.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/aquila.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/aquila.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/aramis.hop.json b/src/main/resources/assets/bbs_mod/models/item/aramis.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/aramis.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/aramis.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/aramis.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/aramis.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/aramis.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/aramis.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/aurora.hop.json b/src/main/resources/assets/bbs_mod/models/item/aurora.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/aurora.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/aurora.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/aurora.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/aurora.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/aurora.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/aurora.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/banner.hop.json b/src/main/resources/assets/bbs_mod/models/item/banner.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/banner.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/banner.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/banner.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/banner.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/banner.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/banner.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bcgolding.hop.json b/src/main/resources/assets/bbs_mod/models/item/bcgolding.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bcgolding.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/bcgolding.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bcgolding.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/bcgolding.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bcgolding.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/bcgolding.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bittergold.hop.json b/src/main/resources/assets/bbs_mod/models/item/bittergold.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bittergold.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/bittergold.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bittergold.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/bittergold.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bittergold.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/bittergold.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/blanc.hop.json b/src/main/resources/assets/bbs_mod/models/item/blanc.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/blanc.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/blanc.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/blanc.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/blanc.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/blanc.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/blanc.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bobek.hop.json b/src/main/resources/assets/bbs_mod/models/item/bobek.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bobek.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/bobek.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bobek.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/bobek.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bobek.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/bobek.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bramlingcross.hop.json b/src/main/resources/assets/bbs_mod/models/item/bramlingcross.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bramlingcross.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/bramlingcross.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bramlingcross.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/bramlingcross.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bramlingcross.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/bramlingcross.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bravo.hop.json b/src/main/resources/assets/bbs_mod/models/item/bravo.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bravo.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/bravo.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bravo.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/bravo.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bravo.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/bravo.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.hop.json b/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/brewersgoldgermany.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.hop.json b/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/brewersgoldusa.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bullion.hop.json b/src/main/resources/assets/bbs_mod/models/item/bullion.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bullion.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/bullion.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/bullion.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/bullion.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/bullion.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/bullion.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/cascade.hop.json b/src/main/resources/assets/bbs_mod/models/item/cascade.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/cascade.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/cascade.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/cascade.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/cascade.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/cascade.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/cascade.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/celeia.hop.json b/src/main/resources/assets/bbs_mod/models/item/celeia.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/celeia.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/celeia.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/celeia.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/celeia.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/celeia.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/celeia.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/centennial.hop.json b/src/main/resources/assets/bbs_mod/models/item/centennial.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/centennial.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/centennial.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/centennial.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/centennial.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/centennial.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/centennial.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/challenger.hop.json b/src/main/resources/assets/bbs_mod/models/item/challenger.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/challenger.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/challenger.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/challenger.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/challenger.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/challenger.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/challenger.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/chelan.hop.json b/src/main/resources/assets/bbs_mod/models/item/chelan.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/chelan.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/chelan.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/chelan.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/chelan.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/chelan.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/chelan.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/chinook.hop.json b/src/main/resources/assets/bbs_mod/models/item/chinook.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/chinook.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/chinook.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/chinook.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/chinook.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/chinook.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/chinook.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/citra.hop.json b/src/main/resources/assets/bbs_mod/models/item/citra.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/citra.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/citra.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/citra.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/citra.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/citra.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/citra.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/cluster.hop.json b/src/main/resources/assets/bbs_mod/models/item/cluster.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/cluster.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/cluster.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/cluster.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/cluster.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/cluster.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/cluster.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/columbus.hop.json b/src/main/resources/assets/bbs_mod/models/item/columbus.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/columbus.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/columbus.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/columbus.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/columbus.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/columbus.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/columbus.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/comet.hop.json b/src/main/resources/assets/bbs_mod/models/item/comet.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/comet.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/comet.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/comet.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/comet.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/comet.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/comet.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/crystal.hop.json b/src/main/resources/assets/bbs_mod/models/item/crystal.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/crystal.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/crystal.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/crystal.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/crystal.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/crystal.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/crystal.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/drrudi.hop.json b/src/main/resources/assets/bbs_mod/models/item/drrudi.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/drrudi.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/drrudi.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/drrudi.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/drrudi.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/drrudi.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/drrudi.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.hop.json b/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/eastkentgolding.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ekuanot.hop.json b/src/main/resources/assets/bbs_mod/models/item/ekuanot.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ekuanot.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/ekuanot.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ekuanot.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/ekuanot.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ekuanot.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/ekuanot.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ella.hop.json b/src/main/resources/assets/bbs_mod/models/item/ella.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ella.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/ella.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ella.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/ella.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ella.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/ella.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/eroica.hop.json b/src/main/resources/assets/bbs_mod/models/item/eroica.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/eroica.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/eroica.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/eroica.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/eroica.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/eroica.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/eroica.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/falconersflight.hop.json b/src/main/resources/assets/bbs_mod/models/item/falconersflight.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/falconersflight.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/falconersflight.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/falconersflight.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/falconersflight.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/falconersflight.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/falconersflight.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/firstgold.hop.json b/src/main/resources/assets/bbs_mod/models/item/firstgold.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/firstgold.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/firstgold.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/firstgold.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/firstgold.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/firstgold.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/firstgold.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/fuggleuk.hop.json b/src/main/resources/assets/bbs_mod/models/item/fuggleuk.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/fuggleuk.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/fuggleuk.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/fuggleuk.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/fuggleuk.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/fuggleuk.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/fuggleuk.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/galaxy.hop.json b/src/main/resources/assets/bbs_mod/models/item/galaxy.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/galaxy.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/galaxy.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/galaxy.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/galaxy.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/galaxy.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/galaxy.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/galena.hop.json b/src/main/resources/assets/bbs_mod/models/item/galena.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/galena.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/galena.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/galena.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/galena.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/galena.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/galena.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/glacier.hop.json b/src/main/resources/assets/bbs_mod/models/item/glacier.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/glacier.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/glacier.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/glacier.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/glacier.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/glacier.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/glacier.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/gold.hop.json b/src/main/resources/assets/bbs_mod/models/item/gold.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/gold.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/gold.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/gold.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/gold.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/gold.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/gold.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/goldinguk.hop.json b/src/main/resources/assets/bbs_mod/models/item/goldinguk.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/goldinguk.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/goldinguk.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/goldinguk.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/goldinguk.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/goldinguk.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/goldinguk.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/goldingusa.hop.json b/src/main/resources/assets/bbs_mod/models/item/goldingusa.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/goldingusa.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/goldingusa.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/goldingusa.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/goldingusa.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/goldingusa.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/goldingusa.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/greenbullet.hop.json b/src/main/resources/assets/bbs_mod/models/item/greenbullet.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/greenbullet.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/greenbullet.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/greenbullet.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/greenbullet.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/greenbullet.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/greenbullet.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json b/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hallertaumittelfruh.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hallertauusa.hop.json b/src/main/resources/assets/bbs_mod/models/item/hallertauusa.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hallertauusa.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hallertauusa.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hallertauusa.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hallertauusa.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hallertauusa.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hallertauusa.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.hop.json b/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc431experimental.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.hop.json b/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc438experimental.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.hop.json b/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc472experimental.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.hop.json b/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hbc682experimental.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/helga.hop.json b/src/main/resources/assets/bbs_mod/models/item/helga.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/helga.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/helga.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/helga.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/helga.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/helga.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/helga.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/herald.hop.json b/src/main/resources/assets/bbs_mod/models/item/herald.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/herald.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/herald.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/herald.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/herald.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/herald.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/herald.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/herkules.hop.json b/src/main/resources/assets/bbs_mod/models/item/herkules.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/herkules.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/herkules.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/herkules.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/herkules.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/herkules.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/herkules.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hersbrucker.hop.json b/src/main/resources/assets/bbs_mod/models/item/hersbrucker.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hersbrucker.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hersbrucker.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hersbrucker.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hersbrucker.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hersbrucker.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hersbrucker.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/horizon.hop.json b/src/main/resources/assets/bbs_mod/models/item/horizon.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/horizon.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/horizon.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/horizon.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/horizon.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/horizon.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/horizon.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/huellmelon.hop.json b/src/main/resources/assets/bbs_mod/models/item/huellmelon.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/huellmelon.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/huellmelon.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/huellmelon.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/huellmelon.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/huellmelon.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/huellmelon.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.hop.json b/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/hullerbitterer.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/kohatu.hop.json b/src/main/resources/assets/bbs_mod/models/item/kohatu.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/kohatu.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/kohatu.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/kohatu.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/kohatu.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/kohatu.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/kohatu.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/liberty.hop.json b/src/main/resources/assets/bbs_mod/models/item/liberty.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/liberty.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/liberty.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/liberty.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/liberty.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/liberty.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/liberty.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_amber.json b/src/main/resources/assets/bbs_mod/models/item/lme_amber.json index 0c4999f..4d78755 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_amber.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_amber.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme" + "layer0": "bbs_mod:item/lme_amber" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_dark.json b/src/main/resources/assets/bbs_mod/models/item/lme_dark.json index 0c4999f..de0d93c 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_dark.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_dark.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme" + "layer0": "bbs_mod:item/lme_dark" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json b/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json index 0c4999f..7e0af03 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_extralight.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme" + "layer0": "bbs_mod:item/lme_extralight" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_light.json b/src/main/resources/assets/bbs_mod/models/item/lme_light.json index 0c4999f..3757c84 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_light.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_light.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme" + "layer0": "bbs_mod:item/lme_light" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_munich.json b/src/main/resources/assets/bbs_mod/models/item/lme_munich.json index 0c4999f..a53b475 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_munich.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_munich.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme" + "layer0": "bbs_mod:item/lme_munich" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json b/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json index 0c4999f..7ac6d90 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_pilsen.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme" + "layer0": "bbs_mod:item/lme_pilsen" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json b/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json index 0c4999f..3bc49c0 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json +++ b/src/main/resources/assets/bbs_mod/models/item/lme_wheat.json @@ -1,6 +1,6 @@ { "parent": "builtin/generated", "textures": { - "layer0": "bbs_mod:item/lme" + "layer0": "bbs_mod:item/lme_wheat" } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/loral.hop.json b/src/main/resources/assets/bbs_mod/models/item/loral.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/loral.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/loral.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/loral.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/loral.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/loral.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/loral.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/lubelska.hop.json b/src/main/resources/assets/bbs_mod/models/item/lubelska.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lubelska.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/lubelska.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/lubelska.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/lubelska.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/lubelska.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/lubelska.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/magnum.hop.json b/src/main/resources/assets/bbs_mod/models/item/magnum.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/magnum.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/magnum.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/magnum.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/magnum.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/magnum.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/magnum.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.hop.json b/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/mandarinabavaria.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/merkur.hop.json b/src/main/resources/assets/bbs_mod/models/item/merkur.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/merkur.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/merkur.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/merkur.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/merkur.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/merkur.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/merkur.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/millenium.hop.json b/src/main/resources/assets/bbs_mod/models/item/millenium.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/millenium.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/millenium.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/millenium.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/millenium.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/millenium.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/millenium.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mosaic.hop.json b/src/main/resources/assets/bbs_mod/models/item/mosaic.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mosaic.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/mosaic.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mosaic.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/mosaic.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mosaic.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/mosaic.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/motueka.hop.json b/src/main/resources/assets/bbs_mod/models/item/motueka.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/motueka.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/motueka.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/motueka.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/motueka.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/motueka.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/motueka.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mounthood.hop.json b/src/main/resources/assets/bbs_mod/models/item/mounthood.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mounthood.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/mounthood.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mounthood.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/mounthood.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mounthood.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/mounthood.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mountrainier.hop.json b/src/main/resources/assets/bbs_mod/models/item/mountrainier.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mountrainier.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/mountrainier.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mountrainier.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/mountrainier.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/mountrainier.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/mountrainier.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.hop.json b/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/nelsonsauvin.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/newport.hop.json b/src/main/resources/assets/bbs_mod/models/item/newport.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/newport.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/newport.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/newport.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/newport.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/newport.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/newport.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/northdown.hop.json b/src/main/resources/assets/bbs_mod/models/item/northdown.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/northdown.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/northdown.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/northdown.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/northdown.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/northdown.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/northdown.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/northernbrewer.hop.json b/src/main/resources/assets/bbs_mod/models/item/northernbrewer.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/northernbrewer.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/northernbrewer.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/northernbrewer.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/northernbrewer.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/northernbrewer.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/northernbrewer.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/nugget.hop.json b/src/main/resources/assets/bbs_mod/models/item/nugget.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/nugget.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/nugget.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/nugget.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/nugget.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/nugget.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/nugget.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/olympic.hop.json b/src/main/resources/assets/bbs_mod/models/item/olympic.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/olympic.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/olympic.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/olympic.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/olympic.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/olympic.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/olympic.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/omega.hop.json b/src/main/resources/assets/bbs_mod/models/item/omega.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/omega.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/omega.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/omega.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/omega.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/omega.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/omega.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/opal.hop.json b/src/main/resources/assets/bbs_mod/models/item/opal.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/opal.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/opal.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/opal.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/opal.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/opal.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/opal.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/orion.hop.json b/src/main/resources/assets/bbs_mod/models/item/orion.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/orion.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/orion.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/orion.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/orion.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/orion.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/orion.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pacifica.hop.json b/src/main/resources/assets/bbs_mod/models/item/pacifica.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pacifica.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/pacifica.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pacifica.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/pacifica.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pacifica.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/pacifica.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pacificgem.hop.json b/src/main/resources/assets/bbs_mod/models/item/pacificgem.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pacificgem.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/pacificgem.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pacificgem.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/pacificgem.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pacificgem.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/pacificgem.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pacificjade.hop.json b/src/main/resources/assets/bbs_mod/models/item/pacificjade.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pacificjade.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/pacificjade.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pacificjade.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/pacificjade.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pacificjade.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/pacificjade.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/palisade.hop.json b/src/main/resources/assets/bbs_mod/models/item/palisade.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/palisade.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/palisade.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/palisade.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/palisade.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/palisade.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/palisade.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/perlegermany.hop.json b/src/main/resources/assets/bbs_mod/models/item/perlegermany.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/perlegermany.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/perlegermany.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/perlegermany.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/perlegermany.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/perlegermany.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/perlegermany.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/perleusa.hop.json b/src/main/resources/assets/bbs_mod/models/item/perleusa.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/perleusa.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/perleusa.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/perleusa.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/perleusa.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/perleusa.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/perleusa.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/phoenix.hop.json b/src/main/resources/assets/bbs_mod/models/item/phoenix.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/phoenix.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/phoenix.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/phoenix.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/phoenix.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/phoenix.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/phoenix.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pilgrim.hop.json b/src/main/resources/assets/bbs_mod/models/item/pilgrim.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pilgrim.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/pilgrim.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pilgrim.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/pilgrim.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pilgrim.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/pilgrim.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pioneer.hop.json b/src/main/resources/assets/bbs_mod/models/item/pioneer.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pioneer.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/pioneer.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/pioneer.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/pioneer.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/pioneer.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/pioneer.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/polaris.hop.json b/src/main/resources/assets/bbs_mod/models/item/polaris.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/polaris.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/polaris.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/polaris.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/polaris.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/polaris.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/polaris.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/premiant.hop.json b/src/main/resources/assets/bbs_mod/models/item/premiant.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/premiant.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/premiant.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/premiant.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/premiant.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/premiant.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/premiant.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/prideofringwood.hop.json b/src/main/resources/assets/bbs_mod/models/item/prideofringwood.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/prideofringwood.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/prideofringwood.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/prideofringwood.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/prideofringwood.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/prideofringwood.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/prideofringwood.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/progress.hop.json b/src/main/resources/assets/bbs_mod/models/item/progress.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/progress.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/progress.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/progress.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/progress.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/progress.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/progress.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/rakau.hop.json b/src/main/resources/assets/bbs_mod/models/item/rakau.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/rakau.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/rakau.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/rakau.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/rakau.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/rakau.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/rakau.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/record.hop.json b/src/main/resources/assets/bbs_mod/models/item/record.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/record.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/record.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/record.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/record.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/record.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/record.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/riwaka.hop.json b/src/main/resources/assets/bbs_mod/models/item/riwaka.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/riwaka.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/riwaka.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/riwaka.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/riwaka.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/riwaka.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/riwaka.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/saaz.hop.json b/src/main/resources/assets/bbs_mod/models/item/saaz.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/saaz.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/saaz.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/saaz.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/saaz.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/saaz.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/saaz.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/santiam.hop.json b/src/main/resources/assets/bbs_mod/models/item/santiam.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/santiam.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/santiam.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/santiam.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/santiam.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/santiam.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/santiam.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/saphir.hop.json b/src/main/resources/assets/bbs_mod/models/item/saphir.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/saphir.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/saphir.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/saphir.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/saphir.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/saphir.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/saphir.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/satus.hop.json b/src/main/resources/assets/bbs_mod/models/item/satus.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/satus.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/satus.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/satus.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/satus.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/satus.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/satus.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.hop.json b/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/savinjskigolding.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/select.hop.json b/src/main/resources/assets/bbs_mod/models/item/select.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/select.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/select.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/select.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/select.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/select.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/select.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/simcoe.hop.json b/src/main/resources/assets/bbs_mod/models/item/simcoe.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/simcoe.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/simcoe.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/simcoe.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/simcoe.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/simcoe.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/simcoe.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/smaragd.hop.json b/src/main/resources/assets/bbs_mod/models/item/smaragd.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/smaragd.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/smaragd.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/smaragd.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/smaragd.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/smaragd.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/smaragd.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sorachiace.hop.json b/src/main/resources/assets/bbs_mod/models/item/sorachiace.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sorachiace.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/sorachiace.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sorachiace.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/sorachiace.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sorachiace.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/sorachiace.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/southerncross.hop.json b/src/main/resources/assets/bbs_mod/models/item/southerncross.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/southerncross.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/southerncross.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/southerncross.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/southerncross.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/southerncross.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/southerncross.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sovereign.hop.json b/src/main/resources/assets/bbs_mod/models/item/sovereign.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sovereign.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/sovereign.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sovereign.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/sovereign.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sovereign.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/sovereign.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/spalt.hop.json b/src/main/resources/assets/bbs_mod/models/item/spalt.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/spalt.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/spalt.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/spalt.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/spalt.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/spalt.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/spalt.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sterling.hop.json b/src/main/resources/assets/bbs_mod/models/item/sterling.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sterling.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/sterling.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sterling.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/sterling.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sterling.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/sterling.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sticklebract.hop.json b/src/main/resources/assets/bbs_mod/models/item/sticklebract.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sticklebract.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/sticklebract.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sticklebract.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/sticklebract.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sticklebract.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/sticklebract.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/strisselspalt.hop.json b/src/main/resources/assets/bbs_mod/models/item/strisselspalt.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/strisselspalt.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/strisselspalt.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/strisselspalt.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/strisselspalt.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/strisselspalt.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/strisselspalt.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/styriangolding.hop.json b/src/main/resources/assets/bbs_mod/models/item/styriangolding.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/styriangolding.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/styriangolding.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/styriangolding.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/styriangolding.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/styriangolding.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/styriangolding.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/summer.hop.json b/src/main/resources/assets/bbs_mod/models/item/summer.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/summer.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/summer.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/summer.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/summer.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/summer.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/summer.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/summit.hop.json b/src/main/resources/assets/bbs_mod/models/item/summit.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/summit.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/summit.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/summit.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/summit.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/summit.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/summit.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/superalpha.hop.json b/src/main/resources/assets/bbs_mod/models/item/superalpha.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/superalpha.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/superalpha.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/superalpha.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/superalpha.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/superalpha.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/superalpha.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/superpride.hop.json b/src/main/resources/assets/bbs_mod/models/item/superpride.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/superpride.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/superpride.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/superpride.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/superpride.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/superpride.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/superpride.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sussex.hop.json b/src/main/resources/assets/bbs_mod/models/item/sussex.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sussex.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/sussex.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sussex.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/sussex.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sussex.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/sussex.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sylva.hop.json b/src/main/resources/assets/bbs_mod/models/item/sylva.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sylva.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/sylva.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/sylva.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/sylva.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/sylva.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/sylva.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tahoma.hop.json b/src/main/resources/assets/bbs_mod/models/item/tahoma.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tahoma.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/tahoma.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tahoma.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/tahoma.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tahoma.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/tahoma.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/talisman.hop.json b/src/main/resources/assets/bbs_mod/models/item/talisman.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/talisman.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/talisman.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/talisman.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/talisman.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/talisman.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/talisman.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/target.hop.json b/src/main/resources/assets/bbs_mod/models/item/target.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/target.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/target.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/target.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/target.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/target.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/target.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.hop.json b/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/tettnangergermany.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.hop.json b/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/tettnangerusa.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tomahawk.hop.json b/src/main/resources/assets/bbs_mod/models/item/tomahawk.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tomahawk.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/tomahawk.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tomahawk.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/tomahawk.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tomahawk.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/tomahawk.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tradition.hop.json b/src/main/resources/assets/bbs_mod/models/item/tradition.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tradition.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/tradition.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/tradition.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/tradition.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/tradition.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/tradition.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/triplepearl.hop.json b/src/main/resources/assets/bbs_mod/models/item/triplepearl.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/triplepearl.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/triplepearl.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/triplepearl.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/triplepearl.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/triplepearl.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/triplepearl.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/triskel.hop.json b/src/main/resources/assets/bbs_mod/models/item/triskel.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/triskel.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/triskel.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/triskel.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/triskel.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/triskel.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/triskel.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ultra.hop.json b/src/main/resources/assets/bbs_mod/models/item/ultra.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ultra.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/ultra.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/ultra.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/ultra.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/ultra.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/ultra.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/vanguard.hop.json b/src/main/resources/assets/bbs_mod/models/item/vanguard.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/vanguard.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/vanguard.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/vanguard.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/vanguard.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/vanguard.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/vanguard.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/waiiti.hop.json b/src/main/resources/assets/bbs_mod/models/item/waiiti.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/waiiti.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/waiiti.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/waiiti.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/waiiti.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/waiiti.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/waiiti.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/waimea.hop.json b/src/main/resources/assets/bbs_mod/models/item/waimea.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/waimea.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/waimea.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/waimea.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/waimea.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/waimea.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/waimea.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/wakatu.hop.json b/src/main/resources/assets/bbs_mod/models/item/wakatu.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/wakatu.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/wakatu.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/wakatu.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/wakatu.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/wakatu.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/wakatu.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/warrior.hop.json b/src/main/resources/assets/bbs_mod/models/item/warrior.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/warrior.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/warrior.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/warrior.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/warrior.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/warrior.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/warrior.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.hop.json b/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/whitbreadgolding.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/willamette.hop.json b/src/main/resources/assets/bbs_mod/models/item/willamette.hop.json index ef4db25..2e97a9b 100644 --- a/src/main/resources/assets/bbs_mod/models/item/willamette.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/willamette.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/willamette.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/willamette.rhizome.json index 1226d4b..ee3d815 100644 --- a/src/main/resources/assets/bbs_mod/models/item/willamette.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/willamette.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv2"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/yakimacluster.hop.json b/src/main/resources/assets/bbs_mod/models/item/yakimacluster.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/yakimacluster.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/yakimacluster.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/yakimacluster.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/yakimacluster.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/yakimacluster.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/yakimacluster.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.hop.json b/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.hop.json index ef4db25..acabe69 100644 --- a/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.rhizome.json index 1226d4b..f3f4e75 100644 --- a/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/yamhillgolding.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv1"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/yeoman.hop.json b/src/main/resources/assets/bbs_mod/models/item/yeoman.hop.json index ef4db25..137f0be 100644 --- a/src/main/resources/assets/bbs_mod/models/item/yeoman.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/yeoman.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/yeoman.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/yeoman.rhizome.json index 1226d4b..e51c60f 100644 --- a/src/main/resources/assets/bbs_mod/models/item/yeoman.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/yeoman.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv3"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/zenith.hop.json b/src/main/resources/assets/bbs_mod/models/item/zenith.hop.json index ef4db25..a46a71d 100644 --- a/src/main/resources/assets/bbs_mod/models/item/zenith.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/zenith.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/zenith.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/zenith.rhizome.json index 1226d4b..3dc25a5 100644 --- a/src/main/resources/assets/bbs_mod/models/item/zenith.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/zenith.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv4"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/zeus.hop.json b/src/main/resources/assets/bbs_mod/models/item/zeus.hop.json index ef4db25..72db348 100644 --- a/src/main/resources/assets/bbs_mod/models/item/zeus.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/zeus.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/zeus.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/zeus.rhizome.json index 1226d4b..b8257c2 100644 --- a/src/main/resources/assets/bbs_mod/models/item/zeus.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/zeus.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv6"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/zythos.hop.json b/src/main/resources/assets/bbs_mod/models/item/zythos.hop.json index ef4db25..b23fa19 100644 --- a/src/main/resources/assets/bbs_mod/models/item/zythos.hop.json +++ b/src/main/resources/assets/bbs_mod/models/item/zythos.hop.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/hopsleaf" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/hopsleaf_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/zythos.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/zythos.rhizome.json index 1226d4b..bdbfbbb 100644 --- a/src/main/resources/assets/bbs_mod/models/item/zythos.rhizome.json +++ b/src/main/resources/assets/bbs_mod/models/item/zythos.rhizome.json @@ -1,6 +1 @@ -{ - "parent": "builtin/generated", - "textures": { - "layer0": "bbs_mod:item/rhizome" - } -} \ No newline at end of file +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/rhizome_lv5"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/microbrewer.json b/src/main/resources/assets/bbs_mod/recipes/microbrewer.json index 1caf359..fc046b5 100644 --- a/src/main/resources/assets/bbs_mod/recipes/microbrewer.json +++ b/src/main/resources/assets/bbs_mod/recipes/microbrewer.json @@ -16,7 +16,7 @@ "item": "minecraft:iron_ingot" }, "r": { - "item": "bbs_mod:admiral.rhizome" + "item": "bbs_mod:liberty.rhizome" } } } \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/watergallon.json b/src/main/resources/assets/bbs_mod/recipes/watergallon.json index 33bea16..19572c5 100644 --- a/src/main/resources/assets/bbs_mod/recipes/watergallon.json +++ b/src/main/resources/assets/bbs_mod/recipes/watergallon.json @@ -4,7 +4,7 @@ "count": 1 }, "pattern": [ - "iii" + "i" ], "type": "forge:ore_shaped", "key": { diff --git a/src/main/resources/assets/bbs_mod/recipes/waterkeg.json b/src/main/resources/assets/bbs_mod/recipes/waterkeg.json index 9223dd7..8fea7b8 100644 --- a/src/main/resources/assets/bbs_mod/recipes/waterkeg.json +++ b/src/main/resources/assets/bbs_mod/recipes/waterkeg.json @@ -4,7 +4,8 @@ "count": 1 }, "pattern": [ - "ir" + "irr", + "rrr" ], "type": "forge:ore_shaped", "key": { diff --git a/src/main/resources/assets/bbs_mod/recipes/wortkeg.json b/src/main/resources/assets/bbs_mod/recipes/wortkeg.json deleted file mode 100644 index 40dd2b5..0000000 --- a/src/main/resources/assets/bbs_mod/recipes/wortkeg.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "result": { - "item": "bbs_mod:wortkeg", - "count": 1 - }, - "pattern": [ - "ir" - ], - "type": "forge:ore_shaped", - "key": { - "i": { - "item": "bbs_mod:hotwortkeg" - }, - "r": { - "item": "minecraft:ice" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/textures/item/beerbucket.png b/src/main/resources/assets/bbs_mod/textures/item/beerbucket.png deleted file mode 100755 index e8cde393db39780864761d2f461c48e788248020..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmaJ>eM}Q~7`_%u5GCl0sL1ek==_3STiU~(l+T0Fjj~!g!HpnCd)N!!hj#}pUs`EI z7q?6^7G=hvviJ@7$NWf$AlsBVXNcJxn+o`m0b8AgAOnTjT`S=J7`xov@8h2Ld7t0= zKDiH#S#N~|hX(@y5Teh(OyZd2dx8SR_i1ulk2ow5(sG4trbw{k904R-nL+~8Q}`Cb zMBvu4ZP$r-00@9cbFPqU$V4p+CC7ajxr1WGXaI;$bg;Okm=M51Vhc&@AWush1d>)A zl%p{y3~VZ4BQwf5BD*}xY$-3cXsu9U0vPW=MFNTtaL_?*rFqn$gZ#XxIQMPC5a@>p z#X9Jvs9b{)Ol3F%)W~CFEDEI(L=d@Btw9iFG^kQ2Rj@+5kr<^K)gY)U4xGFoF&k$s zLQPouWG-=~gKUDpqA+Z?+vWCHIm2y%m0GRV$DvZih=>@zj23W549!PPF<=C5;Yd~> z85;C4;)P6!po2uEFONX6)3h`{SthYyumfjdrCi}V(iG5O_Fr1lTwoX;iXk!G1w=pc3nvH;~a!A_B*!k6dyupC# zXNh^wI)tWd&o2u5VOH(S-;w{xPc7llc>0YG|Ok0qNOcOHLW*lWTUkCZo`OxuLT&TWsrHoIDi zmo9)Z4&4b-UD^{C*!X-A6>jTFwB7ywPT$5Q#?^H}Da-4wCOx!$+}D+tNW1y4oUQa` z#~0lXT1PL#9sSzTcu$2UqGPC$8>?Cy2_?IkB_Rf;M&njDgnz&kc z%NQtrxxZ=gjlZNrj(a0D-AiLCoy)WrqH7Nu2cQ?w@#~Oeu)E*sejdE5`smzw66nhM zkc>A!Re+@>R}ln)JrYOcJisq5^Q zB$m}48-20j%KDtveHT|64t9?11bXd^G=Z*{^z`&d^UmC^m59fiNDr}{Ki9j1t&m>Y zUY*_g?5hW8Z{Pci2RHD**o(#mPgl5GtWgoqfX|#kW3KRmyU6|Z6|lsfuaiwwdS&?@ z!I&L9KCtvj!mNq&zkVyLKN@;4)99*hKQgJO07-4`v8e$jt-%@hGwVIl>j^-}-W}mp zA32-}&d&Mi-@I`lOrXy_*6w~gX;wzSJy-E*y@zP}{bofc5PGVprMqdo`effG*VuEX z+EumFUzK4pNq)f9__ukD?AX4WMR?_^h|)h_zf=<-LDw#CZX39q-`pk1IrCoCGEj;+ zcZZ*|?Ksj+H^iOz{I~pq_{au$olbVoJ(8z!bqtsL3lY8WTA4StHtWRD(qp-E$H!&k zPxFS)&X4_LG%+$#+GJkyvK?(FBoTF)*R~By&dzSQ_1$@Izpl-6>Pzn&(G7#4#ZJFE d@0#tw3PAStll-QZALjY~;`+2KtSP0S`X8ykQ&<21 diff --git a/src/main/resources/assets/bbs_mod/textures/item/bucket_fluid.png b/src/main/resources/assets/bbs_mod/textures/item/bucket_fluid.png deleted file mode 100644 index 8efdbd9cd82e2994c2a4d067f40b80122cd5c82e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 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 diff --git a/src/main/resources/assets/bbs_mod/textures/item/priming_sugar.png b/src/main/resources/assets/bbs_mod/textures/item/priming_sugar.png deleted file mode 100755 index 045c3ea2edc2f80cb7eae308eea92301551982b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3052 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 Of4jMO5idFKO8Pe(W)dm@ diff --git a/src/main/resources/assets/bbs_mod/textures/item/spoon.png b/src/main/resources/assets/bbs_mod/textures/item/spoon.png deleted file mode 100644 index 5f2ed26de572ea32c513e358a3756cefe71fecff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5016 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 diff --git a/src/main/resources/assets/bbs_mod/textures/item/wortbucket.png b/src/main/resources/assets/bbs_mod/textures/item/wortbucket.png deleted file mode 100755 index e8cde393db39780864761d2f461c48e788248020..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmaJ>eM}Q~7`_%u5GCl0sL1ek==_3STiU~(l+T0Fjj~!g!HpnCd)N!!hj#}pUs`EI z7q?6^7G=hvviJ@7$NWf$AlsBVXNcJxn+o`m0b8AgAOnTjT`S=J7`xov@8h2Ld7t0= zKDiH#S#N~|hX(@y5Teh(OyZd2dx8SR_i1ulk2ow5(sG4trbw{k904R-nL+~8Q}`Cb zMBvu4ZP$r-00@9cbFPqU$V4p+CC7ajxr1WGXaI;$bg;Okm=M51Vhc&@AWush1d>)A zl%p{y3~VZ4BQwf5BD*}xY$-3cXsu9U0vPW=MFNTtaL_?*rFqn$gZ#XxIQMPC5a@>p z#X9Jvs9b{)Ol3F%)W~CFEDEI(L=d@Btw9iFG^kQ2Rj@+5kr<^K)gY)U4xGFoF&k$s zLQPouWG-=~gKUDpqA+Z?+vWCHIm2y%m0GRV$DvZih=>@zj23W549!PPF<=C5;Yd~> z85;C4;)P6!po2uEFONX6)3h`{SthYyumfjdrCi}V(iG5O_Fr1lTwoX;iXk!G1w=pc3nvH;~a!A_B*!k6dyupC# zXNh^wI)tWd&o2u5VOH(S-;w{xPc7llc>0YG|Ok0qNOcOHLW*lWTUkCZo`OxuLT&TWsrHoIDi zmo9)Z4&4b-UD^{C*!X-A6>jTFwB7ywPT$5Q#?^H}Da-4wCOx!$+}D+tNW1y4oUQa` z#~0lXT1PL#9sSzTcu$2UqGPC$8>?Cy2_?IkB_Rf;M&njDgnz&kc z%NQtrxxZ=gjlZNrj(a0D-AiLCoy)WrqH7Nu2cQ?w@#~Oeu)E*sejdE5`smzw66nhM zkc>A!Re+@>R}ln)JrYOcJisq5^Q zB$m}48-20j%KDtveHT|64t9?11bXd^G=Z*{^z`&d^UmC^m59fiNDr}{Ki9j1t&m>Y zUY*_g?5hW8Z{Pci2RHD**o(#mPgl5GtWgoqfX|#kW3KRmyU6|Z6|lsfuaiwwdS&?@ z!I&L9KCtvj!mNq&zkVyLKN@;4)99*hKQgJO07-4`v8e$jt-%@hGwVIl>j^-}-W}mp zA32-}&d&Mi-@I`lOrXy_*6w~gX;wzSJy-E*y@zP}{bofc5PGVprMqdo`effG*VuEX z+EumFUzK4pNq)f9__ukD?AX4WMR?_^h|)h_zf=<-LDw#CZX39q-`pk1IrCoCGEj;+ zcZZ*|?Ksj+H^iOz{I~pq_{au$olbVoJ(8z!bqtsL3lY8WTA4StHtWRD(qp-E$H!&k zPxFS)&X4_LG%+$#+GJkyvK?(FBoTF)*R~By&dzSQ_1$@Izpl-6>Pzn&(G7#4#ZJFE d@0#tw3PAStll-QZALjY~;`+2KtSP0S`X8ykQ&<21 diff --git a/src/main/resources/assets/bbs_mod/utils/ABV_and_Gravity_Formula.js b/src/main/resources/assets/bbs_mod/utils/ABV_and_Gravity_Formula.js deleted file mode 100644 index 7e499f0..0000000 --- a/src/main/resources/assets/bbs_mod/utils/ABV_and_Gravity_Formula.js +++ /dev/null @@ -1,1077 +0,0 @@ -var wortcollected=6.5; -var batchsize=5.5; -var efficiency=75; -var grainlb=new Array(6); -var graintype=new Array(6); -var divpreboilog; -var divog; -var divfg; -var divabv; -var volumeunit="Gallons"; -var ingredients=[]; -ingredients[0]= - { - id:1,name:'--',lovibond:0,ppg:0,mashable:0,category:'' -}; -ingredients[1]= - { - id:2,name:'Flaked Barley',lovibond:2.2,ppg:32,mashable:1,category:'Adjunct' -}; -ingredients[2]= - { - id:3,name:'Flaked Corn',lovibond:0.5,ppg:40,mashable:1,category:'Adjunct' -}; -ingredients[3]= - { - id:4,name:'Flaked Oats',lovibond:2.2,ppg:33,mashable:1,category:'Adjunct' -}; -ingredients[4]= - { - id:5,name:'Flaked Rice',lovibond:0.5,ppg:40,mashable:1,category:'Adjunct' -}; -ingredients[5]= - { - id:6,name:'Flaked Rye',lovibond:2.8,ppg:36,mashable:1,category:'Adjunct' -}; -ingredients[6]= - { - id:7,name:'Flaked Wheat',lovibond:2,ppg:34,mashable:1,category:'Adjunct' -}; -ingredients[7]= - { - id:8,name:'Grits',lovibond:1,ppg:37,mashable:1,category:'Adjunct' -}; -ingredients[8]= - { - id:9,name:'Rice Hulls',lovibond:0,ppg:0,mashable:1,category:'Adjunct' -}; -ingredients[9]= - { - id:10,name:'Rolled Oats',lovibond:2.2,ppg:33,mashable:1,category:'Adjunct' -}; -ingredients[10]= - { - id:11,name:'Torrified Barley',lovibond:2,ppg:36,mashable:1,category:'Adjunct' -}; -ingredients[11]= - { - id:12,name:'Torrified Wheat',lovibond:2,ppg:36,mashable:1,category:'Adjunct' -}; -ingredients[12]= - { - id:14,name:'Dry Malt Extract - Amber',lovibond:10,ppg:42,mashable:0,category:'Dry Extract' -}; -ingredients[13]= - { - id:15,name:'Dry Malt Extract - Dark',lovibond:30,ppg:44,mashable:0,category:'Dry Extract' -}; -ingredients[14]= - { - id:189,name:'Dry Malt Extract - Extra Light',lovibond:2.5,ppg:42,mashable:0,category:'Dry Extract' -}; -ingredients[15]= - { - id:13,name:'Dry Malt Extract - Light',lovibond:4,ppg:42,mashable:0,category:'Dry Extract' -}; -ingredients[16]= - { - id:187,name:'Dry Malt Extract - Munich',lovibond:8,ppg:42,mashable:0,category:'Dry Extract' -}; -ingredients[17]= - { - id:188,name:'Dry Malt Extract - Pilsen',lovibond:2,ppg:42,mashable:0,category:'Dry Extract' -}; -ingredients[18]= - { - id:16,name:'Dry Malt Extract - Wheat',lovibond:3,ppg:42,mashable:0,category:'Dry Extract' -}; -ingredients[19]= - { - id:162,name:'Rice Syrup Solids',lovibond:1,ppg:37,mashable:0,category:'Dry Extract' -}; -ingredients[20]= - { - id:17,name:'American - Aromatic Malt',lovibond:20,ppg:35,mashable:1,category:'Grain' -}; -ingredients[21]= - { - id:18,name:'American - Ashbourne Mild',lovibond:5.3,ppg:30,mashable:1,category:'Grain' -}; -ingredients[22]= - { - id:19,name:'American - Black Barley',lovibond:530,ppg:27,mashable:1,category:'Grain' -}; -ingredients[23]= - { - id:20,name:'American - Black Malt',lovibond:500,ppg:28,mashable:1,category:'Grain' -}; -ingredients[24]= - { - id:21,name:'American - Blackprinz',lovibond:500,ppg:36,mashable:1,category:'Grain' -}; -ingredients[25]= - { - id:22,name:'American - Bonlander Munich',lovibond:10,ppg:36,mashable:1,category:'Grain' -}; -ingredients[26]= - { - id:23,name:'American - CaraBrown',lovibond:55,ppg:34,mashable:1,category:'Grain' -}; -ingredients[27]= - { - id:24,name:'American - CaraCrystal Wheat Malt',lovibond:55,ppg:34,mashable:1,category:'Grain' -}; -ingredients[28]= - { - id:25,name:'American - Caramel / Crystal 10L',lovibond:10,ppg:35,mashable:1,category:'Grain' -}; -ingredients[29]= - { - id:26,name:'American - Caramel / Crystal 15L',lovibond:15,ppg:35,mashable:1,category:'Grain' -}; -ingredients[30]= - { - id:27,name:'American - Caramel / Crystal 20L',lovibond:20,ppg:35,mashable:1,category:'Grain' -}; -ingredients[31]= - { - id:28,name:'American - Caramel / Crystal 30L',lovibond:30,ppg:34,mashable:1,category:'Grain' -}; -ingredients[32]= - { - id:29,name:'American - Caramel / Crystal 40L',lovibond:40,ppg:34,mashable:1,category:'Grain' -}; -ingredients[33]= - { - id:30,name:'American - Caramel / Crystal 60L',lovibond:60,ppg:34,mashable:1,category:'Grain' -}; -ingredients[34]= - { - id:31,name:'American - Caramel / Crystal 75L',lovibond:75,ppg:33,mashable:1,category:'Grain' -}; -ingredients[35]= - { - id:32,name:'American - Caramel / Crystal 80L',lovibond:80,ppg:33,mashable:1,category:'Grain' -}; -ingredients[36]= - { - id:33,name:'American - Caramel / Crystal 90L',lovibond:90,ppg:33,mashable:1,category:'Grain' -}; -ingredients[37]= - { - id:34,name:'American - Caramel / Crystal 120L',lovibond:120,ppg:33,mashable:1,category:'Grain' -}; -ingredients[38]= - { - id:35,name:'American - Caramel / Crystal 150L',lovibond:150,ppg:33,mashable:1,category:'Grain' -}; -ingredients[39]= - { - id:36,name:'American - Carapils (Dextrine Malt)',lovibond:1.8,ppg:33,mashable:1,category:'Grain' -}; -ingredients[40]= - { - id:37,name:'American - Chocolate',lovibond:350,ppg:29,mashable:1,category:'Grain' -}; -ingredients[41]= - { - id:38,name:'American - Dark Chocolate',lovibond:420,ppg:29,mashable:1,category:'Grain' -}; -ingredients[42]= - { - id:39,name:'American - Midnight Wheat Malt',lovibond:550,ppg:33,mashable:1,category:'Grain' -}; -ingredients[43]= - { - id:40,name:'American - Munich - Light 10L',lovibond:10,ppg:33,mashable:1,category:'Grain' -}; -ingredients[44]= - { - id:41,name:'American - Munich - Dark 20L',lovibond:20,ppg:33,mashable:1,category:'Grain' -}; -ingredients[45]= - { - id:42,name:'American - Munich - 60L',lovibond:60,ppg:33,mashable:1,category:'Grain' -}; -ingredients[46]= - { - id:43,name:'American - Pale 2-Row',lovibond:1.8,ppg:37,mashable:1,category:'Grain' -}; -ingredients[47]= - { - id:44,name:'American - Pale 2-Row - Toasted',lovibond:30,ppg:33,mashable:1,category:'Grain' -}; -ingredients[48]= - { - id:45,name:'American - Pale 6-Row',lovibond:1.8,ppg:35,mashable:1,category:'Grain' -}; -ingredients[49]= - { - id:46,name:'American - Pale Ale',lovibond:3.5,ppg:37,mashable:1,category:'Grain' -}; -ingredients[50]= - { - id:47,name:'American - Pilsner',lovibond:1.8,ppg:37,mashable:1,category:'Grain' -}; -ingredients[51]= - { - id:48,name:'American - Red Wheat',lovibond:2.5,ppg:38,mashable:1,category:'Grain' -}; -ingredients[52]= - { - id:49,name:'American - Roasted Barley',lovibond:300,ppg:33,mashable:1,category:'Grain' -}; -ingredients[53]= - { - id:50,name:'American - Rye',lovibond:3.5,ppg:38,mashable:1,category:'Grain' -}; -ingredients[54]= - { - id:51,name:'American - Smoked Malt',lovibond:5,ppg:37,mashable:1,category:'Grain' -}; -ingredients[55]= - { - id:52,name:'American - Special Roast',lovibond:50,ppg:33,mashable:1,category:'Grain' -}; -ingredients[56]= - { - id:53,name:'American - Victory',lovibond:28,ppg:34,mashable:1,category:'Grain' -}; -ingredients[57]= - { - id:54,name:'American - Vienna',lovibond:4,ppg:35,mashable:1,category:'Grain' -}; -ingredients[58]= - { - id:55,name:'American - Wheat',lovibond:1.8,ppg:38,mashable:1,category:'Grain' -}; -ingredients[59]= - { - id:56,name:'American - White Wheat ',lovibond:2.8,ppg:40,mashable:1,category:'Grain' -}; -ingredients[60]= - { - id:57,name:'Belgian - Aromatic',lovibond:38,ppg:33,mashable:1,category:'Grain' -}; -ingredients[61]= - { - id:58,name:'Belgian - Biscuit',lovibond:23,ppg:35,mashable:1,category:'Grain' -}; -ingredients[62]= - { - id:59,name:'Belgian - Cara 20L',lovibond:22,ppg:34,mashable:1,category:'Grain' -}; -ingredients[63]= - { - id:60,name:'Belgian - Cara 45L',lovibond:42,ppg:34,mashable:1,category:'Grain' -}; -ingredients[64]= - { - id:61,name:'Belgian - Caramel Pils',lovibond:8,ppg:34,mashable:1,category:'Grain' -}; -ingredients[65]= - { - id:62,name:'Belgian - CaraMunich',lovibond:50,ppg:33,mashable:1,category:'Grain' -}; -ingredients[66]= - { - id:63,name:'Belgian - CaraVienne',lovibond:20,ppg:34,mashable:1,category:'Grain' -}; -ingredients[67]= - { - id:64,name:'Belgian - Chocolate',lovibond:340,ppg:30,mashable:1,category:'Grain' -}; -ingredients[68]= - { - id:65,name:'Belgian - De-Bittered Black',lovibond:566,ppg:34,mashable:1,category:'Grain' -}; -ingredients[69]= - { - id:66,name:'Belgian - Munich',lovibond:6,ppg:38,mashable:1,category:'Grain' -}; -ingredients[70]= - { - id:67,name:'Belgian - Pale Ale',lovibond:3.4,ppg:38,mashable:1,category:'Grain' -}; -ingredients[71]= - { - id:68,name:'Belgian - Pilsner',lovibond:1.6,ppg:37,mashable:1,category:'Grain' -}; -ingredients[72]= - { - id:69,name:'Belgian - Roasted Barley',lovibond:575,ppg:30,mashable:1,category:'Grain' -}; -ingredients[73]= - { - id:70,name:'Belgian - Special B',lovibond:115,ppg:34,mashable:1,category:'Grain' -}; -ingredients[74]= - { - id:71,name:'Belgian - Unmalted Wheat',lovibond:2,ppg:36,mashable:1,category:'Grain' -}; -ingredients[75]= - { - id:72,name:'Belgian - Wheat',lovibond:1.8,ppg:38,mashable:1,category:'Grain' -}; -ingredients[76]= - { - id:73,name:'Canadian - ESB Malt',lovibond:3.5,ppg:36,mashable:1,category:'Grain' -}; -ingredients[77]= - { - id:74,name:'Canadian - Honey Malt',lovibond:25,ppg:37,mashable:1,category:'Grain' -}; -ingredients[78]= - { - id:75,name:'Canadian - Munich Dark',lovibond:32,ppg:34,mashable:1,category:'Grain' -}; -ingredients[79]= - { - id:76,name:'Canadian - Munich Light',lovibond:10,ppg:34,mashable:1,category:'Grain' -}; -ingredients[80]= - { - id:77,name:'Canadian - Pale 2-Row',lovibond:1.75,ppg:36,mashable:1,category:'Grain' -}; -ingredients[81]= - { - id:78,name:'Canadian - Pale Wheat',lovibond:2,ppg:36,mashable:1,category:'Grain' -}; -ingredients[82]= - { - id:79,name:'German - Abbey Malt ',lovibond:17,ppg:33,mashable:1,category:'Grain' -}; -ingredients[83]= - { - id:80,name:'German - Acidulated Malt ',lovibond:3.4,ppg:27,mashable:1,category:'Grain' -}; -ingredients[84]= - { - id:81,name:'German - Bohemian Pilsner',lovibond:1.9,ppg:38,mashable:1,category:'Grain' -}; -ingredients[85]= - { - id:82,name:'German - CaraAmber',lovibond:23,ppg:34,mashable:1,category:'Grain' -}; -ingredients[86]= - { - id:83,name:'German - CaraAroma',lovibond:130,ppg:34,mashable:1,category:'Grain' -}; -ingredients[87]= - { - id:84,name:'German - CaraBelge',lovibond:13.6,ppg:33,mashable:1,category:'Grain' -}; -ingredients[88]= - { - id:85,name:'German - CaraBohemian',lovibond:75,ppg:33,mashable:1,category:'Grain' -}; -ingredients[89]= - { - id:86,name:'German - Carafa I',lovibond:340,ppg:32,mashable:1,category:'Grain' -}; -ingredients[90]= - { - id:87,name:'German - Carafa II',lovibond:425,ppg:32,mashable:1,category:'Grain' -}; -ingredients[91]= - { - id:88,name:'German - Carafa III',lovibond:535,ppg:32,mashable:1,category:'Grain' -}; -ingredients[92]= - { - id:89,name:'German - CaraFoam',lovibond:1.8,ppg:37,mashable:1,category:'Grain' -}; -ingredients[93]= - { - id:90,name:'German - CaraHell',lovibond:11,ppg:34,mashable:1,category:'Grain' -}; -ingredients[94]= - { - id:91,name:'German - Caramel Pils',lovibond:2.4,ppg:35,mashable:1,category:'Grain' -}; -ingredients[95]= - { - id:92,name:'German - Caramel Wheat',lovibond:46,ppg:34,mashable:1,category:'Grain' -}; -ingredients[96]= - { - id:93,name:'German - CaraMunich I',lovibond:39,ppg:34,mashable:1,category:'Grain' -}; -ingredients[97]= - { - id:94,name:'German - CaraMunich II',lovibond:46,ppg:34,mashable:1,category:'Grain' -}; -ingredients[98]= - { - id:95,name:'German - CaraMunich III',lovibond:57,ppg:34,mashable:1,category:'Grain' -}; -ingredients[99]= - { - id:96,name:'German - Carapils',lovibond:1.3,ppg:35,mashable:1,category:'Grain' -}; -ingredients[100]= - { - id:97,name:'German - CaraRed',lovibond:20,ppg:34,mashable:1,category:'Grain' -}; -ingredients[101]= - { - id:98,name:'German - Chocolate Rye',lovibond:240,ppg:31,mashable:1,category:'Grain' -}; -ingredients[102]= - { - id:99,name:'German - Chocolate Wheat',lovibond:413,ppg:31,mashable:1,category:'Grain' -}; -ingredients[103]= - { - id:100,name:'German - Dark Munich',lovibond:10,ppg:36,mashable:1,category:'Grain' -}; -ingredients[104]= - { - id:101,name:'German - Dark Wheat',lovibond:6.5,ppg:39,mashable:1,category:'Grain' -}; -ingredients[105]= - { - id:102,name:'German - De-Husked Caraf I',lovibond:340,ppg:32,mashable:1,category:'Grain' -}; -ingredients[106]= - { - id:103,name:'German - De-Husked Caraf II',lovibond:418,ppg:32,mashable:1,category:'Grain' -}; -ingredients[107]= - { - id:104,name:'German - De-Husked Caraf III',lovibond:470,ppg:32,mashable:1,category:'Grain' -}; -ingredients[108]= - { - id:105,name:'German - Floor-Malted Bohemian Pilsner',lovibond:1.8,ppg:38,mashable:1,category:'Grain' -}; -ingredients[109]= - { - id:106,name:'German - Floor-Malted Bohemian Pilsner Dk',lovibond:6.5,ppg:38,mashable:1,category:'Grain' -}; -ingredients[110]= - { - id:107,name:'German - Floor-Malted Bohemian Wheat',lovibond:2,ppg:38,mashable:1,category:'Grain' -}; -ingredients[111]= - { - id:108,name:'German - Kolsch',lovibond:2,ppg:37,mashable:1,category:'Grain' -}; -ingredients[112]= - { - id:109,name:'German - Melanoidin',lovibond:25,ppg:37,mashable:1,category:'Grain' -}; -ingredients[113]= - { - id:110,name:'German - Munich Dark',lovibond:15.5,ppg:37,mashable:1,category:'Grain' -}; -ingredients[114]= - { - id:111,name:'German - Munich Light',lovibond:6,ppg:37,mashable:1,category:'Grain' -}; -ingredients[115]= - { - id:112,name:'German - Pale Ale',lovibond:2.3,ppg:39,mashable:1,category:'Grain' -}; -ingredients[116]= - { - id:113,name:'German - Pale Wheat',lovibond:1.5,ppg:39,mashable:1,category:'Grain' -}; -ingredients[117]= - { - id:114,name:'German - Pilsner',lovibond:1.6,ppg:38,mashable:1,category:'Grain' -}; -ingredients[118]= - { - id:115,name:'German - Rye',lovibond:3.5,ppg:38,mashable:1,category:'Grain' -}; -ingredients[119]= - { - id:116,name:'German - Smoked Malt',lovibond:3,ppg:37,mashable:1,category:'Grain' -}; -ingredients[120]= - { - id:117,name:'German - Spelt Malt',lovibond:2,ppg:37,mashable:1,category:'Grain' -}; -ingredients[121]= - { - id:118,name:'German - Vienna',lovibond:4,ppg:37,mashable:1,category:'Grain' -}; -ingredients[122]= - { - id:119,name:'German - Wheat Malt',lovibond:2,ppg:37,mashable:1,category:'Grain' -}; -ingredients[123]= - { - id:120,name:'United Kingdom - Amber',lovibond:27,ppg:32,mashable:1,category:'Grain' -}; -ingredients[124]= - { - id:121,name:'United Kingdom - Black Patent',lovibond:525,ppg:27,mashable:1,category:'Grain' -}; -ingredients[125]= - { - id:122,name:'United Kingdom - Brown',lovibond:65,ppg:32,mashable:1,category:'Grain' -}; -ingredients[126]= - { - id:123,name:'United Kingdom - Cara Malt',lovibond:17.5,ppg:35,mashable:1,category:'Grain' -}; -ingredients[127]= - { - id:124,name:'United Kingdom - Carastan (30/37)',lovibond:34,ppg:35,mashable:1,category:'Grain' -}; -ingredients[128]= - { - id:125,name:'United Kingdom - Carastan Light (15L)',lovibond:15,ppg:35,mashable:1,category:'Grain' -}; -ingredients[129]= - { - id:126,name:'United Kingdom - Chocolate',lovibond:425,ppg:34,mashable:1,category:'Grain' -}; -ingredients[130]= - { - id:127,name:'United Kingdom - Coffee Malt',lovibond:150,ppg:36,mashable:1,category:'Grain' -}; -ingredients[131]= - { - id:128,name:'United Kingdom - Crystal 15L',lovibond:15,ppg:34,mashable:1,category:'Grain' -}; -ingredients[132]= - { - id:129,name:'United Kingdom - Crystal 30L',lovibond:30,ppg:34,mashable:1,category:'Grain' -}; -ingredients[133]= - { - id:130,name:'United Kingdom - Crystal 45L',lovibond:45,ppg:34,mashable:1,category:'Grain' -}; -ingredients[134]= - { - id:131,name:'United Kingdom - Crystal 50L',lovibond:50,ppg:34,mashable:1,category:'Grain' -}; -ingredients[135]= - { - id:132,name:'United Kingdom - Crystal 60L',lovibond:60,ppg:34,mashable:1,category:'Grain' -}; -ingredients[136]= - { - id:133,name:'United Kingdom - Crystal 70L',lovibond:70,ppg:34,mashable:1,category:'Grain' -}; -ingredients[137]= - { - id:134,name:'United Kingdom - Crystal 90L',lovibond:90,ppg:33,mashable:1,category:'Grain' -}; -ingredients[138]= - { - id:135,name:'United Kingdom - Crystal 140L',lovibond:140,ppg:33,mashable:1,category:'Grain' -}; -ingredients[139]= - { - id:136,name:'United Kingdom - Crystal Rye',lovibond:90,ppg:33,mashable:1,category:'Grain' -}; -ingredients[140]= - { - id:137,name:'United Kingdom - Dextrine Malt',lovibond:1.8,ppg:33,mashable:1,category:'Grain' -}; -ingredients[141]= - { - id:138,name:'United Kingdom - Dark Crystal 80L',lovibond:80,ppg:33,mashable:1,category:'Grain' -}; -ingredients[142]= - { - id:139,name:'United Kingdom - Extra Dark Crystal 120L',lovibond:120,ppg:33,mashable:1,category:'Grain' -}; -ingredients[143]= - { - id:140,name:'United Kingdom - Extra Dark Crystal 160L',lovibond:160,ppg:33,mashable:1,category:'Grain' -}; -ingredients[144]= - { - id:141,name:'United Kingdom - Golden Naked Oats',lovibond:10,ppg:33,mashable:1,category:'Grain' -}; -ingredients[145]= - { - id:142,name:'United Kingdom - Golden Promise',lovibond:3,ppg:37,mashable:1,category:'Grain' -}; -ingredients[146]= - { - id:143,name:'United Kingdom - Halcyon',lovibond:2,ppg:36,mashable:1,category:'Grain' -}; -ingredients[147]= - { - id:144,name:'United Kingdom - Lager',lovibond:1.4,ppg:38,mashable:1,category:'Grain' -}; -ingredients[148]= - { - id:145,name:'United Kingdom - Malted Naked Oats',lovibond:1.3,ppg:33,mashable:1,category:'Grain' -}; -ingredients[149]= - { - id:146,name:'United Kingdom - Maris Otter Pale',lovibond:3.75,ppg:38,mashable:1,category:'Grain' -}; -ingredients[150]= - { - id:147,name:'United Kingdom - Mild',lovibond:3,ppg:37,mashable:1,category:'Grain' -}; -ingredients[151]= - { - id:148,name:'United Kingdom - Munich',lovibond:6,ppg:37,mashable:1,category:'Grain' -}; -ingredients[152]= - { - id:149,name:'United Kingdom - Oat Malt',lovibond:2,ppg:28,mashable:1,category:'Grain' -}; -ingredients[153]= - { - id:150,name:'United Kingdom - Optic',lovibond:2.1,ppg:38,mashable:1,category:'Grain' -}; -ingredients[154]= - { - id:151,name:'United Kingdom - Pale 2-Row',lovibond:2.5,ppg:38,mashable:1,category:'Grain' -}; -ingredients[155]= - { - id:152,name:'United Kingdom - Pale Chocolate',lovibond:207,ppg:33,mashable:1,category:'Grain' -}; -ingredients[156]= - { - id:153,name:'United Kingdom - Pearl',lovibond:2.1,ppg:37,mashable:1,category:'Grain' -}; -ingredients[157]= - { - id:154,name:'United Kingdom - Peated Malt',lovibond:2.5,ppg:38,mashable:1,category:'Grain' -}; -ingredients[158]= - { - id:155,name:'United Kingdom - Pilsen',lovibond:1.8,ppg:36,mashable:1,category:'Grain' -}; -ingredients[159]= - { - id:156,name:'United Kingdom - Roasted Barley',lovibond:550,ppg:29,mashable:1,category:'Grain' -}; -ingredients[160]= - { - id:157,name:'United Kingdom - Wheat',lovibond:2,ppg:37,mashable:1,category:'Grain' -}; -ingredients[161]= - { - id:158,name:'Liquid Malt Extract - Amber',lovibond:10,ppg:35,mashable:0,category:'Liquid Extract' -}; -ingredients[162]= - { - id:159,name:'Liquid Malt Extract - Dark',lovibond:30,ppg:35,mashable:0,category:'Liquid Extract' -}; -ingredients[163]= - { - id:190,name:'Liquid Malt Extract - Extra Light',lovibond:2.5,ppg:37,mashable:0,category:'Liquid Extract' -}; -ingredients[164]= - { - id:160,name:'Liquid Malt Extract - Light',lovibond:4,ppg:35,mashable:0,category:'Liquid Extract' -}; -ingredients[165]= - { - id:185,name:'Liquid Malt Extract - Munich',lovibond:8,ppg:35,mashable:0,category:'Liquid Extract' -}; -ingredients[166]= - { - id:186,name:'Liquid Malt Extract - Pilsen',lovibond:2,ppg:35,mashable:0,category:'Liquid Extract' -}; -ingredients[167]= - { - id:161,name:'Liquid Malt Extract - Wheat',lovibond:3,ppg:35,mashable:0,category:'Liquid Extract' -}; -ingredients[168]= - { - id:163,name:'Belgian Candi Sugar - Amber/Brown',lovibond:60,ppg:38,mashable:0,category:'Sugar' -}; -ingredients[169]= - { - id:164,name:'Belgian Candi Sugar - Clear/Blond',lovibond:0,ppg:38,mashable:0,category:'Sugar' -}; -ingredients[170]= - { - id:165,name:'Belgian Candi Sugar - Dark',lovibond:275,ppg:38,mashable:0,category:'Sugar' -}; -ingredients[171]= - { - id:166,name:'Belgian Candi Syrup - Amber',lovibond:40,ppg:32,mashable:0,category:'Sugar' -}; -ingredients[172]= - { - id:167,name:'Belgian Candi Syrup - Clear',lovibond:0,ppg:32,mashable:0,category:'Sugar' -}; -ingredients[173]= - { - id:168,name:'Belgian Candi Syrup - D2',lovibond:160,ppg:32,mashable:0,category:'Sugar' -}; -ingredients[174]= - { - id:169,name:'Belgian Candi Syrup - Dark',lovibond:80,ppg:32,mashable:0,category:'Sugar' -}; -ingredients[175]= - { - id:170,name:'Brown Rice Syrup - Gluten Free',lovibond:2,ppg:44,mashable:0,category:'Sugar' -}; -ingredients[176]= - { - id:171,name:'Brown Sugar',lovibond:15,ppg:45,mashable:0,category:'Sugar' -}; -ingredients[177]= - { - id:172,name:'Cane Sugar',lovibond:0,ppg:46,mashable:0,category:'Sugar' -}; -ingredients[178]= - { - id:173,name:'Corn Sugar - Dextrose ',lovibond:0.5,ppg:46,mashable:0,category:'Sugar' -}; -ingredients[179]= - { - id:174,name:'Corn Syrup',lovibond:0.5,ppg:37,mashable:0,category:'Sugar' -}; -ingredients[180]= - { - id:175,name:'Honey ',lovibond:2,ppg:42,mashable:0,category:'Sugar' -}; -ingredients[181]= - { - id:176,name:'Honey (Buckwheat)',lovibond:2,ppg:42,mashable:0,category:'Sugar' -}; -ingredients[182]= - { - id:177,name:'Invert Sugar',lovibond:1,ppg:46,mashable:0,category:'Sugar' -}; -ingredients[183]= - { - id:178,name:'Maple Syrup',lovibond:35,ppg:30,mashable:0,category:'Sugar' -}; -ingredients[184]= - { - id:179,name:'Milk Sugar',lovibond:1,ppg:35,mashable:0,category:'Sugar' -}; -ingredients[185]= - { - id:180,name:'Molasses ',lovibond:80,ppg:36,mashable:0,category:'Sugar' -}; -ingredients[186]= - { - id:181,name:'Soft Candi Sugar - Blond',lovibond:5,ppg:38,mashable:0,category:'Sugar' -}; -ingredients[187]= - { - id:182,name:'Soft Candi Sugar - Brown',lovibond:60,ppg:38,mashable:0,category:'Sugar' -}; -ingredients[188]= - { - id:183,name:'White Sorghum Syrup - Gluten Free',lovibond:1.5,ppg:44,mashable:0,category:'Sugar' -}; -ingredients[189]= - { - id:184,name:'Turbinado',lovibond:10,ppg:44,mashable:0,category:'Sugar' -}; -function switchUnitsToUs() - { - $(".volumeunit").html("(Gallons)"); - $(".weightunit").html("Pounds"); - volumeunit="Gallons"; - document.hops.txtbatchsize.value="5.5"; - document.hops.txtwortcollected.value="7"; - setCookie("bfmetric","",-1); - updateAll() -} -function switchUnitsToMetric() - { - $(".volumeunit").html("(Liters)"); - $(".weightunit").html("kg"); - volumeunit="Liters"; - document.hops.txtbatchsize.value="21"; - document.hops.txtwortcollected.value="26.5"; - setCookie("bfmetric","metric",(365*3)); - updateAll() -} -function setVars() - { - if(document.hops.grainlb1.value=='') - { - document.hops.grainlb1.value='0' - } - if(document.hops.grainlb2.value=='') - { - document.hops.grainlb2.value='0' - } - if(document.hops.grainlb3.value=='') - { - document.hops.grainlb3.value='0' - } - if(document.hops.grainlb4.value=='') - { - document.hops.grainlb4.value='0' - } - if(document.hops.grainlb5.value=='') - { - document.hops.grainlb5.value='0' - } - if(document.hops.grainlb6.value=='') - { - document.hops.grainlb6.value='0' - } - grainlb[0]=document.hops.grainlb1.value; - grainlb[1]=document.hops.grainlb2.value; - grainlb[2]=document.hops.grainlb3.value; - grainlb[3]=document.hops.grainlb4.value; - grainlb[4]=document.hops.grainlb5.value; - grainlb[5]=document.hops.grainlb6.value; - graintype[0]=document.hops.graintype1; - graintype[1]=document.hops.graintype2; - graintype[2]=document.hops.graintype3; - graintype[3]=document.hops.graintype4; - graintype[4]=document.hops.graintype5; - graintype[5]=document.hops.graintype6; - batchsize=document.hops.txtbatchsize.value; - wortcollected=document.hops.txtwortcollected.value; - efficiency=document.hops.txtefficiency.value; - divpreboilog=document.getElementById('divpreboilog'); - divog=document.getElementById('divog'); - divfg=document.getElementById('divfg'); - divabv=document.getElementById('divabv') -} -function updateAll() - { - if(!checkInput()) - { - return false - } - recalculate() -} -function recalculate() - { - if(volumeunit=="Liters") - { - batchsize=litersToGallons(batchsize); - wortcollected=litersToGallons(wortcollected); - grainlb[0]=kilogramsToPounds(grainlb[0]); - grainlb[1]=kilogramsToPounds(grainlb[1]); - grainlb[2]=kilogramsToPounds(grainlb[2]); - grainlb[3]=kilogramsToPounds(grainlb[3]); - grainlb[4]=kilogramsToPounds(grainlb[4]); - grainlb[5]=kilogramsToPounds(grainlb[5]) - } - var totalPointsNonMash=0; - var totalPointsMash=0; - for(i=0; - i<6; - i++) - { - var points=ingredients[graintype[i].value].ppg*grainlb[i]; - if(ingredients[graintype[i].value].mashable) - { - totalPointsMash=totalPointsMash+points - } - else - { - totalPointsNonMash=totalPointsNonMash+points - } - } - if(totalPointsNonMash>0||totalPointsMash>0) - { - var points=totalPointsMash*(efficiency/100); - points=points+(totalPointsNonMash); - var attenuation; - if(document.hops.yeast.value=='low') - { - attenuation='0.66' - } - if(document.hops.yeast.value=='medium') - { - attenuation='0.72' - } - if(document.hops.yeast.value=='high') - { - attenuation='0.77' - } - var preboilOG=((points/wortcollected)*0.001)+1; - var OG=((points/batchsize)*0.001)+1; - var FG=((OG-1)*(1-attenuation))+1; - var ABV=(OG-FG)*(125*1.05); - divpreboilog.innerHTML=rounddecimal(preboilOG,3); - divog.innerHTML=rounddecimal(OG,3); - divfg.innerHTML=rounddecimal(FG,3); - divabv.innerHTML=rounddecimal(ABV,2)+"%" - } - else - { - divpreboilog.innerHTML=''; - divog.innerHTML=''; - divfg.innerHTML=''; - divabv.innerHTML='' - } -} -function checkInput() - { - setVars(); - for(i=0; - i<6; - i++) - { - if(!isNumber(grainlb[i])) - { - alert('All values must be numbers.'); - return false - } - } - if(!isNumber(batchsize)) - { - alert('Wort collected must be a number'); - return false - } - if(!isNumber(wortcollected)) - { - alert('Wort collected must be a number'); - return false - } - if(!isNumber(efficiency)) - { - alert('Wort collected must be a number'); - return false - } - if(efficiency<1||efficiency>100) - { - alert('Efficiency must be between 1 and 100'); - return false - } - return true -} -function isNumber(s) - { - if(s===null) - { - return false - } - if(s===0) - { - return true - } - if(s=='') - { - return false - } - if(isNaN(s)) - { - return false - } - var i; - for(i=0; - i="0")&&(c<="9"))&&c!='.') - { - return false - } - } - return true -} -function rounddecimal(n,places) - { - if(n===null) - { - return false - } - if(n==='') - { - return false - } - if(isNaN(n)) - { - return false - } - if(places<0) - { - return false - } - if(places>10) - { - return false - } - var rounded=Math.round(n*Math.pow(10,places))/Math.pow(10,places); - var decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==0) - { - rounded="0"+rounded; - decimalPointPosition=1 - } - if(places!=0) - { - decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==-1||decimalPointPosition==rounded.length-1) - { - rounded+="." - } - } - decimalPointPosition=(rounded+"").lastIndexOf("."); - var currentPlaces=((rounded+"").length-1)-decimalPointPosition; - if(currentPlaces="0")&&(c<="9"))&&c!='.') - { - return false - } - } - return true -} -function rounddecimal(n,places) - { - if(n===null) - { - return false - } - if(n==='') - { - return false - } - if(isNaN(n)) - { - return false - } - if(places<0) - { - return false - } - if(places>10) - { - return false - } - var rounded=Math.round(n*Math.pow(10,places))/Math.pow(10,places); - var decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==0) - { - rounded="0"+rounded; - decimalPointPosition=1 - } - if(places!=0) - { - decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==-1||decimalPointPosition==rounded.length-1) - { - rounded+="." - } - } - decimalPointPosition=(rounded+"").lastIndexOf("."); - var currentPlaces=((rounded+"").length-1)-decimalPointPosition; - if(currentPlaces="0")&&(c<="9"))&&c!='.') - { - return false - } - } - return true -} -function litersToGallons(liters) - { - liters=parseFloat(liters); - if(isNaN(liters)) - { - return false - } - return 0.264172052*liters -} -function kilogramsToPounds(kg) - { - kg=parseFloat(kg); - if(isNaN(kg)) - { - return false - } - return 2.20462262*kg -} -function rounddecimal(n,places) - { - if(n===null) - { - return false - } - if(n==='') - { - return false - } - if(isNaN(n)) - { - return false - } - if(places<0) - { - return false - } - if(places>10) - { - return false - } - var rounded=Math.round(n*Math.pow(10,places))/Math.pow(10,places); - var decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==0) - { - rounded="0"+rounded; - decimalPointPosition=1 - } - if(places!=0) - { - decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==-1||decimalPointPosition==rounded.length-1) - { - rounded+="." - } - } - decimalPointPosition=(rounded+"").lastIndexOf("."); - var currentPlaces=((rounded+"").length-1)-decimalPointPosition; - if(currentPlaces=40) - { - newsrm=40 - } - divsrm.innerHTML=rounddecimal(newsrm,2); - divcolor.style.backgroundColor=srm[rounddecimal(newsrm,0)]; - divebc.innerHTML=rounddecimal(newsrm*1.97,2); - if(newsrm==0) - { - divcolor.style.backgroundColor="#FFFFFF" - } -} -function checkInput() - { - setVars(); - for(i=0; - i<6; - i++) - { - if(!isNumber(grainlb[i])) - { - alert('All values must be numbers.'); - return false - } - } - return true -} -function isNumber(s) - { - if(s===null) - { - return false - } - if(s===0) - { - return true - } - if(s=='') - { - return false - } - if(isNaN(s)) - { - return false - } - var i; - for(i=0; - i="0")&&(c<="9"))&&c!='.') - { - return false - } - } - return true -} -function rounddecimal(n,places) - { - if(n===null) - { - return false - } - if(n==='') - { - return false - } - if(isNaN(n)) - { - return false - } - if(places<0) - { - return false - } - if(places>10) - { - return false - } - var rounded=Math.round(n*Math.pow(10,places))/Math.pow(10,places); - var decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==0) - { - rounded="0"+rounded; - decimalPointPosition=1 - } - if(places!=0) - { - decimalPointPosition=(rounded+"").lastIndexOf("."); - if(decimalPointPosition==-1||decimalPointPosition==rounded.length-1) - { - rounded+="." - } - } - decimalPointPosition=(rounded+"").lastIndexOf("."); - var currentPlaces=((rounded+"").length-1)-decimalPointPosition; - if(currentPlaces Date: Mon, 26 Mar 2018 16:21:35 -0400 Subject: [PATCH 07/23] First upload of 1.12.2-1.0.x --- README.md | 51 +++++++++++++++++++-------------------------------- version.json | 14 ++++---------- 2 files changed, 23 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index 4759d1a..034536e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,22 @@ # Beer Brewing Simulator Mod -For now this is the basic foundation for a future mod called Beer Brewing Simulator. +This Mod is called: Beer Brewing Simulator. +And that's exactly what it is. If you are a homebrewer you are familiar with the various calculations of abv, ibu, og, fg, srm, and etc. +With this mod you can play and test with 137 types of hops and 7 types of liquid malt extracts. +The result of the process of fermentation will be a keg containing all final numbers of your beer. +List of Attributes Calculated: + - ABV (Alcohol by Volume) + - IBU (International Bitterness Unit) + - SRM (Standard Reference Method) + - Lovibond Index + - Original Gravity + - Final Gravity + + Current known limitations: + - Batch and Boild: For now we have fixed the Batch size and Boil Size for 5 gallons. + - Extract Method: All recipes are based on Extract Method. + - LME: Only Liquid Malts are available for now. + - OneHop: One Type of hops per fermentation. + It's being developed by rafacost3d, for Minecraft 1.12.2 **Resource Links for 1.12.2** @@ -19,35 +36,5 @@ If your site is at the list below, thank you so much for your tutorials/code rep **To-Do List** -- [x] Implemented Basic HopSeedsItem -- [x] Implemented Hop Growth Block -- [x] Created Generic HopsLeafItem with Hops Type, and Alpha Acid -- [x] Implemented CreativeTabs -- [x] Added Support for The One Probe -- [x] Created BaseMachineBlock, with BaseTileEntity with TOP Support -- [x] Added HeatSource Algorithm -- [x] Created StirringSpoonItem -- [x] Create WaterGallonItem -- [x] Create LiquidMaltExtractItem -- [x] Implemented Fluids: Weizen Beer and Wort -- [x] Created ThermometerItem -- [x] Created SanitizerItem -- [x] Created YeastItem -- [x] Created PrimingSugarItem -- [x] Created HopsPelletsItem -- [x] Created Config File allowing selection between Metric System or US/Imperial -- [x] Created PelleterMachineBlock, to double Hops production -- [x] Created AluminiumPotBlock, implemented first Recipe Wort for Weizein Beer. -- [x] Created WortBucket, this Item store the information about the Brewing Process. -- [x] Created Rhizomes, Hops and Pellets for 137 types of Hops. -- [x] Created FermenterBlock -- [x] Added 7 types of Liquid Malt Extract -- [x] Implemented All Beer Statistics Variables, SRM, ABV, IBU, OG, FG, and etc... -- [x] Created 10 Buckets with Dynamic SRM Colors, 30 more to go... -- [x] Implemented Price and Quantity for Hops, Pellets and Rhizomes connection to Firebase Database -- [ ] Create AirlockItem -- [ ] Create BottlingBucketBlock -- [ ] Create BottlesItem -- [ ] Implement Recipes for Items and Blocks +- [x] Release Mod. - [ ] Create Market System -- [ ] Release Mod. \ No newline at end of file diff --git a/version.json b/version.json index 190042e..0a2ab19 100644 --- a/version.json +++ b/version.json @@ -1,16 +1,10 @@ { "homepage": "https://github.com/rafacost/bbs_mod/releases", - "1.11.2": { - "01.16": "https://github.com/rafacost/bbs_mod/releases/r01.16", - "01.19": "https://github.com/rafacost/bbs_mod/releases/r01.19", - "01.24": "https://github.com/rafacost/bbs_mod/releases/r01.24", - "01.31": "https://github.com/rafacost/bbs_mod/releases/r01.31", - "01.33": "https://github.com/rafacost/bbs_mod/releases/r01.33", - "01.38": "https://github.com/rafacost/bbs_mod/releases/r01.38", - "01.48": "https://github.com/rafacost/bbs_mod/releases/r01.48" + "1.12.2": { + "1.0": "https://github.com/rafacost/bbs_mod/releases/tag/1.0" }, "promos": { - "1.11.2-latest": "01.48", - "1.11.2-recommended": "01.48" + "1.12.2-latest": "1.0", + "1.12.2-recommended": "1.0" } } \ No newline at end of file From 3ac2e0f53ab202f22daf06b9fc36e37fb79635b4 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 16:23:00 -0400 Subject: [PATCH 08/23] First upload of 1.12.2-1.0.x --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 034536e..1118f0c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ This Mod is called: Beer Brewing Simulator. And that's exactly what it is. If you are a homebrewer you are familiar with the various calculations of abv, ibu, og, fg, srm, and etc. With this mod you can play and test with 137 types of hops and 7 types of liquid malt extracts. The result of the process of fermentation will be a keg containing all final numbers of your beer. + List of Attributes Calculated: - ABV (Alcohol by Volume) - IBU (International Bitterness Unit) From 7476b221526ffe7e649729dc3f2bbbc820520a7d Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 16:38:27 -0400 Subject: [PATCH 09/23] First upload of 1.12.2-1.0.x --- README.md | 3 +- .../rafacost3d/bbs_mod/init/ConfigInit.java | 36 ++ .../bbs_mod/integration/jei/JeiBBSPlugin.java | 161 +++++++++ .../bbs_mod/objects/crops/BBSHopsTypes.java | 307 ++++++++++++++++++ .../bbs_mod/objects/items/BeerKegItem.java | 143 ++++++++ .../bbs_mod/objects/items/MashKegItem.java | 89 +++++ .../com/rafacost3d/bbs_mod/util/BeerMath.java | 64 ++++ .../bbs_mod/blockstates/hopmalt.crop.json | 12 + .../blockstates/hopmaltamber.crop.json | 12 + .../bbs_mod/blockstates/hopmaltdark.crop.json | 12 + .../blockstates/hopmaltmunich.crop.json | 12 + .../blockstates/hopmaltpilsen.crop.json | 12 + .../bbs_mod/models/item/beerkeg_lb1.json | 6 + .../bbs_mod/models/item/beerkeg_lb10.json | 6 + .../bbs_mod/models/item/beerkeg_lb15.json | 6 + .../bbs_mod/models/item/beerkeg_lb2.json | 6 + .../bbs_mod/models/item/beerkeg_lb20.json | 6 + .../bbs_mod/models/item/beerkeg_lb25.json | 6 + .../bbs_mod/models/item/beerkeg_lb3.json | 6 + .../bbs_mod/models/item/beerkeg_lb30.json | 6 + .../bbs_mod/models/item/beerkeg_lb35.json | 6 + .../bbs_mod/models/item/beerkeg_lb4.json | 6 + .../bbs_mod/models/item/beerkeg_lb40.json | 6 + .../bbs_mod/models/item/beerkeg_lb5.json | 6 + .../bbs_mod/models/item/beerkeg_lb6.json | 6 + .../bbs_mod/models/item/beerkeg_lb7.json | 6 + .../assets/bbs_mod/models/item/grafter.json | 6 + .../assets/bbs_mod/models/item/malt.hop.json | 1 + .../bbs_mod/models/item/malt.rhizome.json | 1 + .../bbs_mod/models/item/maltamber.hop.json | 1 + .../models/item/maltamber.rhizome.json | 1 + .../bbs_mod/models/item/maltdark.hop.json | 1 + .../bbs_mod/models/item/maltdark.rhizome.json | 1 + .../bbs_mod/models/item/maltmunich.hop.json | 1 + .../models/item/maltmunich.rhizome.json | 1 + .../bbs_mod/models/item/maltpilsen.hop.json | 1 + .../models/item/maltpilsen.rhizome.json | 1 + .../bbs_mod/models/item/mashkeg_lb1.json | 6 + .../bbs_mod/models/item/mashkeg_lb2.json | 6 + .../bbs_mod/models/item/mashkeg_lb3.json | 6 + .../bbs_mod/models/item/mashkeg_lb4.json | 6 + .../bbs_mod/models/item/mashkeg_lb5.json | 6 + .../bbs_mod/models/item/mashkeg_lb6.json | 6 + .../bbs_mod/models/item/mashkeg_lb7.json | 6 + .../assets/bbs_mod/recipes/admiral.json | 1 + .../assets/bbs_mod/recipes/ahtanum.json | 1 + .../assets/bbs_mod/recipes/amarillo.json | 1 + .../assets/bbs_mod/recipes/aquila.json | 1 + .../assets/bbs_mod/recipes/aramis.json | 1 + .../assets/bbs_mod/recipes/aurora.json | 1 + .../assets/bbs_mod/recipes/banner.json | 1 + .../assets/bbs_mod/recipes/bcgolding.json | 1 + .../assets/bbs_mod/recipes/bittergold.json | 1 + .../assets/bbs_mod/recipes/blanc.json | 1 + .../assets/bbs_mod/recipes/bobek.json | 1 + .../assets/bbs_mod/recipes/bramlingcross.json | 1 + .../assets/bbs_mod/recipes/bravo.json | 1 + .../bbs_mod/recipes/brewersgoldgermany.json | 1 + .../bbs_mod/recipes/brewersgoldusa.json | 1 + .../assets/bbs_mod/recipes/bullion.json | 1 + .../assets/bbs_mod/recipes/cascade.json | 1 + .../assets/bbs_mod/recipes/celeia.json | 1 + .../assets/bbs_mod/recipes/centennial.json | 1 + .../assets/bbs_mod/recipes/challenger.json | 1 + .../assets/bbs_mod/recipes/chelan.json | 1 + .../assets/bbs_mod/recipes/chinook.json | 1 + .../assets/bbs_mod/recipes/citra.json | 1 + .../assets/bbs_mod/recipes/cluster.json | 1 + .../assets/bbs_mod/recipes/columbus.json | 1 + .../assets/bbs_mod/recipes/comet.json | 1 + .../assets/bbs_mod/recipes/crystal.json | 1 + .../assets/bbs_mod/recipes/drrudi.json | 1 + .../bbs_mod/recipes/eastkentgolding.json | 1 + .../assets/bbs_mod/recipes/ekuanot.json | 1 + .../assets/bbs_mod/recipes/ella.json | 1 + .../assets/bbs_mod/recipes/eroica.json | 1 + .../bbs_mod/recipes/falconersflight.json | 1 + .../assets/bbs_mod/recipes/firstgold.json | 1 + .../assets/bbs_mod/recipes/fuggleuk.json | 1 + .../assets/bbs_mod/recipes/galaxy.json | 1 + .../assets/bbs_mod/recipes/galena.json | 1 + .../assets/bbs_mod/recipes/glacier.json | 1 + .../assets/bbs_mod/recipes/gold.json | 1 + .../assets/bbs_mod/recipes/goldinguk.json | 1 + .../assets/bbs_mod/recipes/goldingusa.json | 1 + .../assets/bbs_mod/recipes/grafter.json | 23 ++ .../assets/bbs_mod/recipes/greenbullet.json | 1 + .../bbs_mod/recipes/hallertaumittelfruh.json | 1 + .../assets/bbs_mod/recipes/hallertauusa.json | 1 + .../bbs_mod/recipes/hbc431experimental.json | 1 + .../bbs_mod/recipes/hbc438experimental.json | 1 + .../bbs_mod/recipes/hbc472experimental.json | 1 + .../bbs_mod/recipes/hbc682experimental.json | 1 + .../assets/bbs_mod/recipes/helga.json | 1 + .../assets/bbs_mod/recipes/herald.json | 1 + .../assets/bbs_mod/recipes/herkules.json | 1 + .../assets/bbs_mod/recipes/hersbrucker.json | 1 + .../assets/bbs_mod/recipes/horizon.json | 1 + .../assets/bbs_mod/recipes/huellmelon.json | 1 + .../bbs_mod/recipes/hullerbitterer.json | 1 + .../assets/bbs_mod/recipes/kohatu.json | 1 + .../assets/bbs_mod/recipes/loral.json | 1 + .../assets/bbs_mod/recipes/lubelska.json | 1 + .../assets/bbs_mod/recipes/magnum.json | 1 + .../bbs_mod/recipes/mandarinabavaria.json | 1 + .../assets/bbs_mod/recipes/merkur.json | 1 + .../assets/bbs_mod/recipes/millenium.json | 1 + .../assets/bbs_mod/recipes/mosaic.json | 1 + .../assets/bbs_mod/recipes/motueka.json | 1 + .../assets/bbs_mod/recipes/mounthood.json | 1 + .../assets/bbs_mod/recipes/mountrainier.json | 1 + .../assets/bbs_mod/recipes/nelsonsauvin.json | 1 + .../assets/bbs_mod/recipes/newport.json | 1 + .../assets/bbs_mod/recipes/northdown.json | 1 + .../bbs_mod/recipes/northernbrewer.json | 1 + .../assets/bbs_mod/recipes/nugget.json | 1 + .../assets/bbs_mod/recipes/olympic.json | 1 + .../assets/bbs_mod/recipes/omega.json | 1 + .../assets/bbs_mod/recipes/opal.json | 1 + .../assets/bbs_mod/recipes/orion.json | 1 + .../assets/bbs_mod/recipes/pacifica.json | 1 + .../assets/bbs_mod/recipes/pacificgem.json | 1 + .../assets/bbs_mod/recipes/pacificjade.json | 1 + .../assets/bbs_mod/recipes/palisade.json | 1 + .../assets/bbs_mod/recipes/perlegermany.json | 1 + .../assets/bbs_mod/recipes/perleusa.json | 1 + .../assets/bbs_mod/recipes/phoenix.json | 1 + .../assets/bbs_mod/recipes/pilgrim.json | 1 + .../assets/bbs_mod/recipes/pioneer.json | 1 + .../assets/bbs_mod/recipes/polaris.json | 1 + .../assets/bbs_mod/recipes/premiant.json | 1 + .../bbs_mod/recipes/prideofringwood.json | 1 + .../assets/bbs_mod/recipes/progress.json | 1 + .../assets/bbs_mod/recipes/rakau.json | 1 + .../assets/bbs_mod/recipes/record.json | 1 + .../assets/bbs_mod/recipes/riwaka.json | 1 + .../assets/bbs_mod/recipes/saaz.json | 1 + .../assets/bbs_mod/recipes/santiam.json | 1 + .../assets/bbs_mod/recipes/saphir.json | 1 + .../assets/bbs_mod/recipes/satus.json | 1 + .../bbs_mod/recipes/savinjskigolding.json | 1 + .../assets/bbs_mod/recipes/select.json | 1 + .../assets/bbs_mod/recipes/simcoe.json | 1 + .../assets/bbs_mod/recipes/smaragd.json | 1 + .../assets/bbs_mod/recipes/sorachiace.json | 1 + .../assets/bbs_mod/recipes/southerncross.json | 1 + .../assets/bbs_mod/recipes/sovereign.json | 1 + .../assets/bbs_mod/recipes/spalt.json | 1 + .../assets/bbs_mod/recipes/sterling.json | 1 + .../assets/bbs_mod/recipes/sticklebract.json | 1 + .../bbs_mod/recipes/styriangolding.json | 1 + .../assets/bbs_mod/recipes/summer.json | 1 + .../assets/bbs_mod/recipes/summit.json | 1 + .../assets/bbs_mod/recipes/superalpha.json | 1 + .../assets/bbs_mod/recipes/superpride.json | 1 + .../assets/bbs_mod/recipes/sussex.json | 1 + .../assets/bbs_mod/recipes/sylva.json | 1 + .../assets/bbs_mod/recipes/tahoma.json | 1 + .../assets/bbs_mod/recipes/talisman.json | 1 + .../assets/bbs_mod/recipes/target.json | 1 + .../bbs_mod/recipes/tettnangergermany.json | 1 + .../assets/bbs_mod/recipes/tettnangerusa.json | 1 + .../assets/bbs_mod/recipes/tomahawk.json | 1 + .../assets/bbs_mod/recipes/tradition.json | 1 + .../assets/bbs_mod/recipes/triplepearl.json | 1 + .../assets/bbs_mod/recipes/triskel.json | 1 + .../assets/bbs_mod/recipes/ultra.json | 1 + .../assets/bbs_mod/recipes/vanguard.json | 1 + .../assets/bbs_mod/recipes/waiiti.json | 1 + .../assets/bbs_mod/recipes/waimea.json | 1 + .../assets/bbs_mod/recipes/wakatu.json | 1 + .../assets/bbs_mod/recipes/warrior.json | 1 + .../bbs_mod/recipes/whitbreadgolding.json | 1 + .../assets/bbs_mod/recipes/willamette.json | 1 + .../assets/bbs_mod/recipes/yakimacluster.json | 1 + .../bbs_mod/recipes/yamhillgolding.json | 1 + .../assets/bbs_mod/recipes/yeoman.json | 1 + .../assets/bbs_mod/recipes/zenith.json | 1 + .../assets/bbs_mod/recipes/zeus.json | 1 + .../assets/bbs_mod/recipes/zythos.json | 1 + .../assets/bbs_mod/textures/gui/bbs_logo.png | Bin 0 -> 11765 bytes .../assets/bbs_mod/textures/item/blankkeg.png | Bin 0 -> 1774 bytes .../assets/bbs_mod/textures/item/grafter.png | Bin 0 -> 6137 bytes .../bbs_mod/textures/item/hopsleaf_lv1.png | Bin 0 -> 5339 bytes .../bbs_mod/textures/item/hopsleaf_lv2.png | Bin 0 -> 5399 bytes .../bbs_mod/textures/item/hopsleaf_lv3.png | Bin 0 -> 5327 bytes .../bbs_mod/textures/item/hopsleaf_lv4.png | Bin 0 -> 5281 bytes .../bbs_mod/textures/item/hopsleaf_lv5.png | Bin 0 -> 5245 bytes .../bbs_mod/textures/item/hopsleaf_lv6.png | Bin 0 -> 4280 bytes .../assets/bbs_mod/textures/item/keg_lb1.png | Bin 0 -> 1781 bytes .../assets/bbs_mod/textures/item/keg_lb10.png | Bin 0 -> 1856 bytes .../assets/bbs_mod/textures/item/keg_lb15.png | Bin 0 -> 1783 bytes .../assets/bbs_mod/textures/item/keg_lb2.png | Bin 0 -> 1793 bytes .../assets/bbs_mod/textures/item/keg_lb20.png | Bin 0 -> 1796 bytes .../assets/bbs_mod/textures/item/keg_lb25.png | Bin 0 -> 1782 bytes .../assets/bbs_mod/textures/item/keg_lb3.png | Bin 0 -> 1788 bytes .../assets/bbs_mod/textures/item/keg_lb30.png | Bin 0 -> 1780 bytes .../assets/bbs_mod/textures/item/keg_lb35.png | Bin 0 -> 1766 bytes .../assets/bbs_mod/textures/item/keg_lb4.png | Bin 0 -> 1786 bytes .../assets/bbs_mod/textures/item/keg_lb40.png | Bin 0 -> 1768 bytes .../assets/bbs_mod/textures/item/keg_lb5.png | Bin 0 -> 1788 bytes .../assets/bbs_mod/textures/item/keg_lb6.png | Bin 0 -> 1795 bytes .../assets/bbs_mod/textures/item/keg_lb7.png | Bin 0 -> 1799 bytes .../bbs_mod/textures/item/lme_amber.png | Bin 0 -> 3102 bytes .../assets/bbs_mod/textures/item/lme_dark.png | Bin 0 -> 3054 bytes .../bbs_mod/textures/item/lme_extralight.png | Bin 0 -> 3456 bytes .../bbs_mod/textures/item/lme_light.png | Bin 0 -> 3300 bytes .../bbs_mod/textures/item/lme_munich.png | Bin 0 -> 3239 bytes .../bbs_mod/textures/item/lme_pilsen.png | Bin 0 -> 3529 bytes .../bbs_mod/textures/item/lme_wheat.png | Bin 0 -> 3417 bytes .../assets/bbs_mod/textures/item/malt.png | Bin 0 -> 1306 bytes .../bbs_mod/textures/item/malt_amber.png | Bin 0 -> 1203 bytes .../bbs_mod/textures/item/malt_dark.png | Bin 0 -> 1148 bytes .../bbs_mod/textures/item/malt_munich.png | Bin 0 -> 1251 bytes .../bbs_mod/textures/item/malt_pilsen.png | Bin 0 -> 1298 bytes .../bbs_mod/textures/item/malt_seeds.png | Bin 0 -> 243 bytes .../bbs_mod/textures/item/mashkeg_lb1.png | Bin 0 -> 1795 bytes .../bbs_mod/textures/item/mashkeg_lb2.png | Bin 0 -> 1799 bytes .../bbs_mod/textures/item/mashkeg_lb3.png | Bin 0 -> 1856 bytes .../bbs_mod/textures/item/mashkeg_lb4.png | Bin 0 -> 1783 bytes .../bbs_mod/textures/item/mashkeg_lb5.png | Bin 0 -> 1796 bytes .../bbs_mod/textures/item/mashkeg_lb6.png | Bin 0 -> 1782 bytes .../bbs_mod/textures/item/mashkeg_lb7.png | Bin 0 -> 1780 bytes .../bbs_mod/textures/item/rhizome_lv1.png | Bin 0 -> 2075 bytes .../bbs_mod/textures/item/rhizome_lv2.png | Bin 0 -> 3416 bytes .../bbs_mod/textures/item/rhizome_lv3.png | Bin 0 -> 4405 bytes .../bbs_mod/textures/item/rhizome_lv4.png | Bin 0 -> 6041 bytes .../bbs_mod/textures/item/rhizome_lv5.png | Bin 0 -> 6563 bytes .../bbs_mod/textures/item/rhizome_lv6.png | Bin 0 -> 7346 bytes 229 files changed, 1162 insertions(+), 1 deletion(-) create mode 100644 src/main/java/com/rafacost3d/bbs_mod/init/ConfigInit.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/crops/BBSHopsTypes.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/items/BeerKegItem.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/objects/items/MashKegItem.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/util/BeerMath.java create mode 100644 src/main/resources/assets/bbs_mod/blockstates/hopmalt.crop.json create mode 100644 src/main/resources/assets/bbs_mod/blockstates/hopmaltamber.crop.json create mode 100644 src/main/resources/assets/bbs_mod/blockstates/hopmaltdark.crop.json create mode 100644 src/main/resources/assets/bbs_mod/blockstates/hopmaltmunich.crop.json create mode 100644 src/main/resources/assets/bbs_mod/blockstates/hopmaltpilsen.crop.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb1.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb10.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb15.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb2.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb20.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb25.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb3.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb30.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb35.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb4.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb40.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb5.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb6.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/beerkeg_lb7.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/grafter.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/malt.hop.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/malt.rhizome.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltamber.hop.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltamber.rhizome.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltdark.hop.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltdark.rhizome.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltmunich.hop.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltmunich.rhizome.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltpilsen.hop.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/maltpilsen.rhizome.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg_lb1.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg_lb2.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg_lb3.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg_lb4.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg_lb5.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg_lb6.json create mode 100644 src/main/resources/assets/bbs_mod/models/item/mashkeg_lb7.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/admiral.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/ahtanum.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/amarillo.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/aquila.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/aramis.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/aurora.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/banner.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/bcgolding.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/bittergold.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/blanc.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/bobek.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/bramlingcross.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/bravo.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/brewersgoldgermany.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/brewersgoldusa.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/bullion.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/cascade.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/celeia.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/centennial.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/challenger.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/chelan.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/chinook.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/citra.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/cluster.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/columbus.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/comet.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/crystal.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/drrudi.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/eastkentgolding.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/ekuanot.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/ella.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/eroica.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/falconersflight.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/firstgold.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/fuggleuk.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/galaxy.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/galena.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/glacier.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/gold.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/goldinguk.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/goldingusa.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/grafter.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/greenbullet.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hallertaumittelfruh.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hallertauusa.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hbc431experimental.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hbc438experimental.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hbc472experimental.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hbc682experimental.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/helga.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/herald.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/herkules.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hersbrucker.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/horizon.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/huellmelon.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/hullerbitterer.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/kohatu.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/loral.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/lubelska.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/magnum.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/mandarinabavaria.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/merkur.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/millenium.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/mosaic.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/motueka.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/mounthood.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/mountrainier.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/nelsonsauvin.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/newport.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/northdown.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/northernbrewer.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/nugget.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/olympic.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/omega.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/opal.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/orion.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/pacifica.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/pacificgem.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/pacificjade.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/palisade.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/perlegermany.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/perleusa.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/phoenix.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/pilgrim.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/pioneer.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/polaris.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/premiant.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/prideofringwood.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/progress.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/rakau.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/record.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/riwaka.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/saaz.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/santiam.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/saphir.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/satus.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/savinjskigolding.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/select.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/simcoe.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/smaragd.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/sorachiace.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/southerncross.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/sovereign.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/spalt.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/sterling.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/sticklebract.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/styriangolding.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/summer.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/summit.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/superalpha.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/superpride.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/sussex.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/sylva.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/tahoma.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/talisman.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/target.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/tettnangergermany.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/tettnangerusa.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/tomahawk.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/tradition.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/triplepearl.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/triskel.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/ultra.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/vanguard.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/waiiti.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/waimea.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/wakatu.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/warrior.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/whitbreadgolding.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/willamette.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/yakimacluster.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/yamhillgolding.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/yeoman.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/zenith.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/zeus.json create mode 100644 src/main/resources/assets/bbs_mod/recipes/zythos.json create mode 100644 src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/blankkeg.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/grafter.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv1.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv2.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv3.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv4.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv5.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv6.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb1.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb10.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb15.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb2.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb20.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb25.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb3.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb30.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb35.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb4.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb40.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb5.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb6.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/keg_lb7.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/lme_amber.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/lme_dark.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/lme_extralight.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/lme_light.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/lme_munich.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/lme_pilsen.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/lme_wheat.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/malt.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/malt_amber.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/malt_dark.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/malt_munich.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/malt_pilsen.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/malt_seeds.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb1.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb2.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb3.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb4.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb5.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb6.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb7.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/rhizome_lv1.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/rhizome_lv2.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/rhizome_lv3.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/rhizome_lv4.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/rhizome_lv5.png create mode 100644 src/main/resources/assets/bbs_mod/textures/item/rhizome_lv6.png diff --git a/README.md b/README.md index 1118f0c..90ff6e2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Beer Brewing Simulator Mod + This Mod is called: Beer Brewing Simulator. And that's exactly what it is. If you are a homebrewer you are familiar with the various calculations of abv, ibu, og, fg, srm, and etc. With this mod you can play and test with 137 types of hops and 7 types of liquid malt extracts. @@ -18,7 +19,7 @@ List of Attributes Calculated: - LME: Only Liquid Malts are available for now. - OneHop: One Type of hops per fermentation. -It's being developed by rafacost3d, for Minecraft 1.12.2 +Developed by rafacost3d, for Minecraft 1.12.2 **Resource Links for 1.12.2** diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/ConfigInit.java b/src/main/java/com/rafacost3d/bbs_mod/init/ConfigInit.java new file mode 100644 index 0000000..69eee0f --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/init/ConfigInit.java @@ -0,0 +1,36 @@ +package com.rafacost3d.bbs_mod.init; + +import com.rafacost3d.bbs_mod.BBSMod; +import com.rafacost3d.bbs_mod.proxy.CommonProxy; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraftforge.common.config.Configuration; +import org.apache.logging.log4j.Level; + +@net.minecraftforge.common.config.Config(modid= Reference.MODID) +public class ConfigInit { + private static final String CATEGORY_GENERAL = "general"; + + public static String breweryname = "Your Brewery"; + public static boolean metric = true; + + public static void readConfig() { + Configuration cfg = CommonProxy.config; + try { + cfg.load(); + initGeneralConfig(cfg); + } catch (Exception e1) { + BBSMod.logger.log(Level.ERROR, "Problem loading BBSMod config file!", e1); + } finally { + if (cfg.hasChanged()) { + cfg.addCustomCategoryComment(CATEGORY_GENERAL,"Selected below the Unit System you prefer. Metric (true) or US/Imperial (false)"); + cfg.save(); + } + } + } + + private static void initGeneralConfig(Configuration cfg) { + cfg.addCustomCategoryComment(CATEGORY_GENERAL,"Selected below the Unit System you prefer. Metric (true) or US/Imperial (false)"); + metric = cfg.getBoolean("metric", Configuration.CATEGORY_GENERAL, true,"Set Metric (true) or US/Imperial (false)"); + breweryname = cfg.getString("breweryname", CATEGORY_GENERAL, breweryname, "Set your Brewery Name here"); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java new file mode 100644 index 0000000..786f7ce --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java @@ -0,0 +1,161 @@ +package com.rafacost3d.bbs_mod.integration.jei; +import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; +import mezz.jei.api.*; +import mezz.jei.api.ingredients.IIngredientBlacklist; +import net.minecraft.item.ItemStack; + +import javax.annotation.Nonnull; + +@mezz.jei.api.JEIPlugin +public class JeiBBSPlugin extends BlankModPlugin { + @Override + public void register(@Nonnull IModRegistry registry) { + + IIngredientBlacklist blacklist = registry.getJeiHelpers().getIngredientBlacklist(); + blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltpilsen"))); + blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltmunich"))); + blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltamber"))); + blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltdark"))); + + + registry.addDescription(new ItemStack(CropRegistry.getFood("admiral")), "Hop Type: " + "Bittering", "Alpha Acid: " + "14.5", "Description: \n" + "Citrus, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("ahtanum")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Earthy, Floral, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("amarillo")), "Hop Type: " + "Aroma", "Alpha Acid: " + "8.6", "Description: \n" + "Floral, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("aquila")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Earthy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("aramis")), "Hop Type: " + "Aroma", "Alpha Acid: " + "8.1", "Description: \n" + "Earthy, Citrus, Spicy, Herbal, Green"); + registry.addDescription(new ItemStack(CropRegistry.getFood("aurora")), "Hop Type: " + "Dual", "Alpha Acid: " + "10", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("banner")), "Hop Type: " + "Bittering", "Alpha Acid: " + "10", "Description: \n" + "Fruity, Floral"); + registry.addDescription(new ItemStack(CropRegistry.getFood("bcgolding")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Spicy, Earthy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("bittergold")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Grassy, Stone Fruit, Tropical Fruit"); + registry.addDescription(new ItemStack(CropRegistry.getFood("blanc")), "Hop Type: " + "Aroma", "Alpha Acid: " + "10.5", "Description: \n" + "Flora, Citrus, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("bobek")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Floral, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("bramlingcross")), "Hop Type: " + "Dual", "Alpha Acid: " + "6.5", "Description: \n" + "Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("bravo")), "Hop Type: " + "Bittering", "Alpha Acid: " + "16.5", "Description: \n" + "Floral, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("brewersgoldgermany")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("brewersgoldusa")), "Hop Type: " + "Bittering", "Alpha Acid: " + "9.5", "Description: \n" + "Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("bullion")), "Hop Type: " + "Bittering", "Alpha Acid: " + "7.5", "Description: \n" + "Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("cascade")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Floral, Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("celeia")), "Hop Type: " + "Dual", "Alpha Acid: " + "4.5", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("centennial")), "Hop Type: " + "Dual", "Alpha Acid: " + "7.8", "Description: \n" + "Floral, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("challenger")), "Hop Type: " + "Dual", "Alpha Acid: " + "8.5", "Description: \n" + "Fruity, Herbal, Cedar"); + registry.addDescription(new ItemStack(CropRegistry.getFood("chelan")), "Hop Type: " + "Bittering", "Alpha Acid: " + "13", "Description: \n" + "Citrus, Stone Fruit, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("chinook")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Citrus, Spicy, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("citra")), "Hop Type: " + "Aroma", "Alpha Acid: " + "11", "Description: \n" + "Citrus, Tropical Fruit"); + registry.addDescription(new ItemStack(CropRegistry.getFood("cluster")), "Hop Type: " + "Dual", "Alpha Acid: " + "7.5", "Description: \n" + "Earthy, Floral, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("columbus")), "Hop Type: " + "Bittering", "Alpha Acid: " + "4", "Description: \n" + "Earthy, Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("comet")), "Hop Type: " + "Bittering", "Alpha Acid: " + "9", "Description: \n" + "Grassy, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("crystal")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4.5", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("drrudi")), "Hop Type: " + "Dual", "Alpha Acid: " + "11", "Description: \n" + "Pine, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("eastkentgolding")), "Hop Type: " + "Dual", "Alpha Acid: " + "5", "Description: \n" + "Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("ekuanot")), "Hop Type: " + "Aroma", "Alpha Acid: " + "14", "Description: \n" + "Citrus, Tropical Fruit, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("ella")), "Hop Type: " + "Dual", "Alpha Acid: " + "14.8", "Description: \n" + "Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("eroica")), "Hop Type: " + "Bittering", "Alpha Acid: " + "12", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("falconersflight")), "Hop Type: " + "Aroma", "Alpha Acid: " + "10.8", "Description: \n" + "Floral, Citrus, Tropical Fruit"); + registry.addDescription(new ItemStack(CropRegistry.getFood("firstgold")), "Hop Type: " + "Dual", "Alpha Acid: " + "7.5", "Description: \n" + "Floral, Citrus, Stone Fruit, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("fuggleuk")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4.5", "Description: \n" + "Earthy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("galaxy")), "Hop Type: " + "Dual", "Alpha Acid: " + "13.8", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("galena")), "Hop Type: " + "Bittering", "Alpha Acid: " + "13", "Description: \n" + "Citrus, Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("glacier")), "Hop Type: " + "Dual", "Alpha Acid: " + "5.5", "Description: \n" + "Fruity, Cedar"); + registry.addDescription(new ItemStack(CropRegistry.getFood("gold")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("goldinguk")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Floral, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("goldingusa")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4.5", "Description: \n" + "Floral, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("greenbullet")), "Hop Type: " + "Dual", "Alpha Acid: " + "12.5", "Description: \n" + "Floral, Spicy, Fruity, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hallertaumittelfruh")), "Hop Type: " + "Aroma", "Alpha Acid: " + "3.75", "Description: \n" + "Floral, Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hallertauusa")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hbc431experimental")), "Hop Type: " + "Dual", "Alpha Acid: " + "15", "Description: \n" + "Floral, Citrus, Spicy, Tropical Fruit, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hbc438experimental")), "Hop Type: " + "Dual", "Alpha Acid: " + "13.7", "Description: \n" + "Citrus, Stone Fruit, Tropical Fruit, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hbc472experimental")), "Hop Type: " + "Aroma", "Alpha Acid: " + "10", "Description: \n" + "Floral, Tropical Fruit, Cedar"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hbc682experimental")), "Hop Type: " + "Bittering", "Alpha Acid: " + "19.5", "Description: \n" + "Earthy, Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("helga")), "Hop Type: " + "Dual", "Alpha Acid: " + "6", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("herald")), "Hop Type: " + "Bittering", "Alpha Acid: " + "12", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("herkules")), "Hop Type: " + "Bittering", "Alpha Acid: " + "14.5", "Description: \n" + "Citrus, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hersbrucker")), "Hop Type: " + "Aroma", "Alpha Acid: " + "3", "Description: \n" + "Earthy, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("horizon")), "Hop Type: " + "Dual", "Alpha Acid: " + "10.5", "Description: \n" + "Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("huellmelon")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("hullerbitterer")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.75", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("kohatu")), "Hop Type: " + "Dual", "Alpha Acid: " + "6.5", "Description: \n" + "Tropical Fruit"); + registry.addDescription(new ItemStack(CropRegistry.getFood("liberty")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4", "Description: \n" + "Floral, Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("loral")), "Hop Type: " + "Dual", "Alpha Acid: " + "11.8", "Description: \n" + "Floral, Citrus, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("lubelska")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4.5", "Description: \n" + "Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("magnum")), "Hop Type: " + "Bittering", "Alpha Acid: " + "15", "Description: \n" + "Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("mandarinabavaria")), "Hop Type: " + "Aroma", "Alpha Acid: " + "8.5", "Description: \n" + "Citrus, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("merkur")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Tropical Fruit, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("millenium")), "Hop Type: " + "Bittering", "Alpha Acid: " + "17", "Description: \n" + "Floral, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("mosaic")), "Hop Type: " + "Aroma", "Alpha Acid: " + "12", "Description: \n" + "Earthy, Floral, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("motueka")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Citrus, Tropical Fruit"); + registry.addDescription(new ItemStack(CropRegistry.getFood("mounthood")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4.8", "Description: \n" + "Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("mountrainier")), "Hop Type: " + "Dual", "Alpha Acid: " + "6.2", "Description: \n" + "Floral, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("nelsonsauvin")), "Hop Type: " + "Dual", "Alpha Acid: " + "12.5", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("newport")), "Hop Type: " + "Bittering", "Alpha Acid: " + "11", "Description: \n" + "Earthy, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("northdown")), "Hop Type: " + "Dual", "Alpha Acid: " + "8.6", "Description: \n" + "Floral, Spicy, Fruity, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("northernbrewer")), "Hop Type: " + "Dual", "Alpha Acid: " + "7.8", "Description: \n" + "Grassy, Pine, Herbal, Cedar"); + registry.addDescription(new ItemStack(CropRegistry.getFood("nugget")), "Hop Type: " + "Bittering", "Alpha Acid: " + "14", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("olympic")), "Hop Type: " + "Aroma", "Alpha Acid: " + "12", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("omega")), "Hop Type: " + "Aroma", "Alpha Acid: " + "10", "Description: \n" + "Fruity, Floral"); + registry.addDescription(new ItemStack(CropRegistry.getFood("opal")), "Hop Type: " + "Dual", "Alpha Acid: " + "6.5", "Description: \n" + "Floral, Citrus, Spicy, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("orion")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("pacifica")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Floral, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("pacificgem")), "Hop Type: " + "Bittering", "Alpha Acid: " + "14", "Description: \n" + "Earthy, Floral, Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("pacificjade")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Citrus, Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("palisade")), "Hop Type: " + "Aroma", "Alpha Acid: " + "8", "Description: \n" + "Earthy, Floral, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("perlegermany")), "Hop Type: " + "Aroma", "Alpha Acid: " + "6.5", "Description: \n" + "Floral, Spicy, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("perleusa")), "Hop Type: " + "Dual", "Alpha Acid: " + "7.5", "Description: \n" + "Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("phoenix")), "Hop Type: " + "Dual", "Alpha Acid: " + "10", "Description: \n" + "Floral, Stone"); + registry.addDescription(new ItemStack(CropRegistry.getFood("pilgrim")), "Hop Type: " + "Dual", "Alpha Acid: " + "11", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("pioneer")), "Hop Type: " + "Dual", "Alpha Acid: " + "10", "Description: \n" + "Citrus, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("polaris")), "Hop Type: " + "Dual", "Alpha Acid: " + "20.5", "Description: \n" + "Tropical Fruit, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("premiant")), "Hop Type: " + "Dual", "Alpha Acid: " + "8.5", "Description: \n" + "Mild"); + registry.addDescription(new ItemStack(CropRegistry.getFood("prideofringwood")), "Hop Type: " + "Bittering", "Alpha Acid: " + "9.5", "Description: \n" + "Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("progress")), "Hop Type: " + "Dual", "Alpha Acid: " + "6.25", "Description: \n" + "Earthy, Grassy, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("rakau")), "Hop Type: " + "Dual", "Alpha Acid: " + "10.5", "Description: \n" + "Stone Fruit, Fruity, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("record")), "Hop Type: " + "Aroma", "Alpha Acid: " + "6.5", "Description: \n" + "Tropical Fruit"); + registry.addDescription(new ItemStack(CropRegistry.getFood("riwaka")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Citrus, Tropical Fruit"); + registry.addDescription(new ItemStack(CropRegistry.getFood("saaz")), "Hop Type: " + "Aroma", "Alpha Acid: " + "3.5", "Description: \n" + "Floral, Citrus, Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("santiam")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("saphir")), "Hop Type: " + "Aroma", "Alpha Acid: " + "3", "Description: \n" + "Flora, Citrus, Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("satus")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Tropical Fruit, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("savinjskigolding")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Earthy, Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("select")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4", "Description: \n" + "Grassy, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("simcoe")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Earthy, Citrus, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("smaragd")), "Hop Type: " + "Dual", "Alpha Acid: " + "5", "Description: \n" + "Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("sorachiace")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Citrus, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("southerncross")), "Hop Type: " + "Dual", "Alpha Acid: " + "12.5", "Description: \n" + "Citrus, Spicy, Tropical Fruit, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("sovereign")), "Hop Type: " + "Dual", "Alpha Acid: " + "5.5", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("spalt")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("sterling")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Floral, Citrus, Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("sticklebract")), "Hop Type: " + "Aroma", "Alpha Acid: " + "11.5", "Description: \n" + "Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("strisselspalt")), "Hop Type: " + "Aroma", "Alpha Acid: " + "2", "Description: \n" + "Earthy, Grassy, Citrus, Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("styriangolding")), "Hop Type: " + "Dual", "Alpha Acid: " + "5.5", "Description: \n" + "Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("summer")), "Hop Type: " + "Aroma", "Alpha Acid: " + "6", "Description: \n" + "Stone Fruit, Tropical Fruit, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("summit")), "Hop Type: " + "Bittering", "Alpha Acid: " + "16", "Description: \n" + "Citrus, Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("superalpha")), "Hop Type: " + "Dual", "Alpha Acid: " + "13", "Description: \n" + "Tropical Fruit, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("superpride")), "Hop Type: " + "Bittering", "Alpha Acid: " + "14", "Description: \n" + "Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("sussex")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Earthy, Grassy, Citrus, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("sylva")), "Hop Type: " + "Aroma", "Alpha Acid: " + "6.5", "Description: \n" + "Earthy, Floral, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("tahoma")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Floral, Citrus, Pine, Cedar"); + registry.addDescription(new ItemStack(CropRegistry.getFood("talisman")), "Hop Type: " + "Aroma", "Alpha Acid: " + "8", "Description: \n" + "Earthy, Floral, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("target")), "Hop Type: " + "Dual", "Alpha Acid: " + "11.5", "Description: \n" + "Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("tettnangergermany")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4.5", "Description: \n" + "Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("tettnangerusa")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5", "Description: \n" + "Earthy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("tomahawk")), "Hop Type: " + "Bittering", "Alpha Acid: " + "16", "Description: \n" + "Citrus, Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("tradition")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Floral, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("triplepearl")), "Hop Type: " + "Aroma", "Alpha Acid: " + "10", "Description: \n" + "Citrus, Spicy, Tropical Fruit, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("triskel")), "Hop Type: " + "Aroma", "Alpha Acid: " + "8.5", "Description: \n" + "Floral, Citrus, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("ultra")), "Hop Type: " + "Aroma", "Alpha Acid: " + "9.5", "Description: \n" + "Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("vanguard")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Cedar"); + registry.addDescription(new ItemStack(CropRegistry.getFood("waiiti")), "Hop Type: " + "Aroma", "Alpha Acid: " + "3", "Description: \n" + "Citrus, Stone Fruit, Spicy, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("waimea")), "Hop Type: " + "Dual", "Alpha Acid: " + "17.5", "Description: \n" + "Citrus, Pine"); + registry.addDescription(new ItemStack(CropRegistry.getFood("wakatu")), "Hop Type: " + "Dual", "Alpha Acid: " + "7.5", "Description: \n" + "Floral, Citrus"); + registry.addDescription(new ItemStack(CropRegistry.getFood("warrior")), "Hop Type: " + "Bittering", "Alpha Acid: " + "16.5", "Description: \n" + "Pine, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("whitbreadgolding")), "Hop Type: " + "Aroma", "Alpha Acid: " + "6.5", "Description: \n" + "Earthy, Floral, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("willamette")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Floral, Fruity, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("yakimacluster")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7", "Description: \n" + "Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("yamhillgolding")), "Hop Type: " + "Aroma", "Alpha Acid: " + "4", "Description: \n" + "Earthy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("yeoman")), "Hop Type: " + "Aroma", "Alpha Acid: " + "7.25", "Description: \n" + "Earthy, Floral, Fruity"); + registry.addDescription(new ItemStack(CropRegistry.getFood("zenith")), "Hop Type: " + "Bittering", "Alpha Acid: " + "9", "Description: \n" + "Floral, Spicy"); + registry.addDescription(new ItemStack(CropRegistry.getFood("zeus")), "Hop Type: " + "Bittering", "Alpha Acid: " + "16", "Description: \n" + "Spicy, Herbal"); + registry.addDescription(new ItemStack(CropRegistry.getFood("zythos")), "Hop Type: " + "Aroma", "Alpha Acid: " + "17", "Description: \n" + "Citrus, Tropical Fruit"); + + + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BBSHopsTypes.java b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BBSHopsTypes.java new file mode 100644 index 0000000..79100c3 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/crops/BBSHopsTypes.java @@ -0,0 +1,307 @@ +package com.rafacost3d.bbs_mod.objects.crops; + +import java.util.HashMap; +import java.util.Map; + +public class BBSHopsTypes { + + public static final Map alphas = new HashMap(); + public static final Map stars = new HashMap(); + + + public BBSHopsTypes() { + + } + public static Double getAlpha(String name) { + alphas.put("admiral", 14.5); + alphas.put("ahtanum", 5.5); + alphas.put("amarillo", 8.6); + alphas.put("aquila", 7.0); + alphas.put("aramis", 8.1); + alphas.put("aurora", 10.0); + alphas.put("banner", 10.7); + alphas.put("bcgolding", 5.0); + alphas.put("bittergold", 13.0); + alphas.put("blanc", 10.5); + alphas.put("bobek", 5.0); + alphas.put("bramlingcross", 6.5); + alphas.put("bravo", 16.5); + alphas.put("brewersgoldgermany", 5.5); + alphas.put("brewersgoldusa", 9.5); + alphas.put("bullion", 7.5); + alphas.put("cascade", 7.0); + alphas.put("celeia", 4.5); + alphas.put("centennial", 7.8); + alphas.put("challenger", 8.5); + alphas.put("chelan", 13.0); + alphas.put("chinook", 13.0); + alphas.put("citra", 11.0); + alphas.put("cluster", 7.5); + alphas.put("columbus", 4.0); + alphas.put("comet", 9.0); + alphas.put("crystal", 4.5); + alphas.put("drrudi", 11.0); + alphas.put("eastkentgolding", 5.0); + alphas.put("ekuanot", 14.0); + alphas.put("ella", 14.8); + alphas.put("eroica", 12.0); + alphas.put("falconersflight", 10.8); + alphas.put("firstgold", 7.5); + alphas.put("fuggleuk", 4.5); + alphas.put("galaxy", 13.8); + alphas.put("galena", 13.0); + alphas.put("glacier", 5.5); + alphas.put("gold", 5.0); + alphas.put("goldinguk", 5.0); + alphas.put("goldingusa", 4.5); + alphas.put("greenbullet", 12.5); + alphas.put("hallertaumittelfruh", 3.75); + alphas.put("hallertauusa", 5.0); + alphas.put("hbc431experimental", 15.0); + alphas.put("hbc438experimental", 13.7); + alphas.put("hbc472experimental", 10.0); + alphas.put("hbc682experimental", 19.5); + alphas.put("helga", 6.0); + alphas.put("herald", 12.0); + alphas.put("herkules", 14.5); + alphas.put("hersbrucker", 3.0); + alphas.put("horizon", 10.5); + alphas.put("huellmelon", 7.0); + alphas.put("hullerbitterer", 5.75); + alphas.put("kohatu", 6.5); + alphas.put("liberty", 4.0); + alphas.put("loral", 11.8); + alphas.put("lubelska", 4.5); + alphas.put("magnum", 15.0); + alphas.put("mandarinabavaria", 8.5); + alphas.put("merkur", 13.0); + alphas.put("millenium", 17.0); + alphas.put("mosaic", 12.0); + alphas.put("motueka", 7.0); + alphas.put("mounthood", 4.8); + alphas.put("mountrainier", 6.2); + alphas.put("nelsonsauvin", 12.5); + alphas.put("newport", 11.0); + alphas.put("northdown", 8.6); + alphas.put("northernbrewer", 7.8); + alphas.put("nugget", 14.0); + alphas.put("olympic", 12.0); + alphas.put("omega", 10.0); + alphas.put("opal", 6.5); + alphas.put("orion", 7.0); + alphas.put("pacifica", 14.0); + alphas.put("pacificgem", 13.0); + alphas.put("pacificjade", 5.5); + alphas.put("palisade", 8.0); + alphas.put("perlegermany", 6.5); + alphas.put("perleusa", 7.5); + alphas.put("phoenix", 10.0); + alphas.put("pilgrim", 11.0); + alphas.put("pioneer", 10.0); + alphas.put("polaris", 20.5); + alphas.put("premiant", 8.5); + alphas.put("prideofringwood", 9.5); + alphas.put("progress", 6.25); + alphas.put("rakau", 10.5); + alphas.put("record", 6.5); + alphas.put("riwaka", 5.5); + alphas.put("saaz", 3.5); + alphas.put("santiam", 7.0); + alphas.put("saphir", 3.0); + alphas.put("satus", 13.0); + alphas.put("savinjskigolding", 5.0); + alphas.put("select", 4.0); + alphas.put("simcoe", 13.0); + alphas.put("smaragd", 5.0); + alphas.put("sorachiace", 13.0); + alphas.put("southerncross", 12.5); + alphas.put("sovereign", 5.5); + alphas.put("spalt", 4.0); + alphas.put("sterling", 7.0); + alphas.put("sticklebract", 11.5); + alphas.put("strisselspalt", 2.0); + alphas.put("styriangolding", 5.5); + alphas.put("summer", 6.0); + alphas.put("summit", 16.0); + alphas.put("superalpha", 13.0); + alphas.put("superpride", 14.0); + alphas.put("sussex", 5.0); + alphas.put("sylva", 6.5); + alphas.put("tahoma", 7.0); + alphas.put("talisman", 8.0); + alphas.put("target", 11.5); + alphas.put("tettnangergermany", 4.5); + alphas.put("tettnangerusa", 5.0); + alphas.put("tomahawk", 16.0); + alphas.put("tradition", 5.5); + alphas.put("triplepearl", 10.0); + alphas.put("triskel", 8.5); + alphas.put("ultra", 9.5); + alphas.put("vanguard", 5.5); + alphas.put("waiiti", 3.0); + alphas.put("waimea", 17.5); + alphas.put("wakatu", 7.5); + alphas.put("warrior", 16.5); + alphas.put("whitbreadgolding", 6.5); + alphas.put("willamette", 5.5); + alphas.put("yakimacluster", 7.0); + alphas.put("yamhillgolding", 4.0); + alphas.put("yeoman", 7.25); + alphas.put("zenith", 9.0); + alphas.put("zeus", 16.0); + alphas.put("zythos", 11.0); + + if(alphas.containsKey(name)) { + return alphas.get(name); + } else { + return 0.0; + } + } + + public static Integer getStars(String name){ + stars.put("admiral", 6); + stars.put("ahtanum", 2); + stars.put("amarillo", 4); + stars.put("aquila", 3); + stars.put("aramis", 4); + stars.put("aurora", 4); + stars.put("banner", 4); + stars.put("bcgolding", 2); + stars.put("bittergold", 5); + stars.put("blanc", 4); + stars.put("bobek", 2); + stars.put("bramlingcross", 2); + stars.put("bravo", 6); + stars.put("brewersgoldgermany", 2); + stars.put("brewersgoldusa", 4); + stars.put("bullion", 3); + stars.put("cascade", 3); + stars.put("celeia", 1); + stars.put("centennial", 3); + stars.put("challenger", 4); + stars.put("chelan", 5); + stars.put("chinook", 5); + stars.put("citra", 5); + stars.put("cluster", 3); + stars.put("columbus", 1); + stars.put("comet", 4); + stars.put("crystal", 1); + stars.put("drrudi", 5); + stars.put("eastkentgolding", 2); + stars.put("ekuanot", 6); + stars.put("ella", 6); + stars.put("eroica", 5); + stars.put("falconersflight", 4); + stars.put("firstgold", 3); + stars.put("fuggleuk", 1); + stars.put("galaxy", 5); + stars.put("galena", 5); + stars.put("glacier", 2); + stars.put("gold", 2); + stars.put("goldinguk", 2); + stars.put("goldingusa", 1); + stars.put("greenbullet", 5); + stars.put("hallertaumittelfruh", 1); + stars.put("hallertauusa", 2); + stars.put("hbc431experimental", 6); + stars.put("hbc438experimental", 5); + stars.put("hbc472experimental", 4); + stars.put("hbc682experimental", 6); + stars.put("helga", 2); + stars.put("herald", 5); + stars.put("herkules", 6); + stars.put("hersbrucker", 1); + stars.put("horizon", 4); + stars.put("huellmelon", 3); + stars.put("hullerbitterer", 2); + stars.put("kohatu", 2); + stars.put("liberty", 1); + stars.put("loral", 5); + stars.put("lubelska", 1); + stars.put("magnum", 6); + stars.put("mandarinabavaria", 4); + stars.put("merkur", 5); + stars.put("millenium", 6); + stars.put("mosaic", 5); + stars.put("motueka", 3); + stars.put("mounthood", 1); + stars.put("mountrainier", 2); + stars.put("nelsonsauvin", 5); + stars.put("newport", 5); + stars.put("northdown", 4); + stars.put("northernbrewer", 3); + stars.put("nugget", 6); + stars.put("olympic", 5); + stars.put("omega", 4); + stars.put("opal", 2); + stars.put("orion", 3); + stars.put("pacifica", 6); + stars.put("pacificgem", 5); + stars.put("pacificjade", 2); + stars.put("palisade", 3); + stars.put("perlegermany", 2); + stars.put("perleusa", 3); + stars.put("phoenix", 4); + stars.put("pilgrim", 5); + stars.put("pioneer", 4); + stars.put("polaris", 6); + stars.put("premiant", 4); + stars.put("prideofringwood", 4); + stars.put("progress", 2); + stars.put("rakau", 4); + stars.put("record", 2); + stars.put("riwaka", 2); + stars.put("saaz", 1); + stars.put("santiam", 3); + stars.put("saphir", 1); + stars.put("satus", 5); + stars.put("savinjskigolding", 2); + stars.put("select", 1); + stars.put("simcoe", 5); + stars.put("smaragd", 2); + stars.put("sorachiace", 5); + stars.put("southerncross", 5); + stars.put("sovereign", 2); + stars.put("spalt", 1); + stars.put("sterling", 3); + stars.put("sticklebract", 5); + stars.put("strisselspalt", 1); + stars.put("styriangolding", 2); + stars.put("summer", 2); + stars.put("summit", 6); + stars.put("superalpha", 5); + stars.put("superpride", 6); + stars.put("sussex", 2); + stars.put("sylva", 2); + stars.put("tahoma", 3); + stars.put("talisman", 3); + stars.put("target", 5); + stars.put("tettnangergermany", 1); + stars.put("tettnangerusa", 2); + stars.put("tomahawk", 6); + stars.put("tradition", 2); + stars.put("triplepearl", 4); + stars.put("triskel", 4); + stars.put("ultra", 4); + stars.put("vanguard", 2); + stars.put("waiiti", 1); + stars.put("waimea", 6); + stars.put("wakatu", 3); + stars.put("warrior", 6); + stars.put("whitbreadgolding", 2); + stars.put("willamette", 2); + stars.put("yakimacluster", 3); + stars.put("yamhillgolding", 1); + stars.put("yeoman", 3); + stars.put("zenith", 4); + stars.put("zeus", 6); + stars.put("zythos", 5); + + if(stars.containsKey(name)) { + return stars.get(name); + } else { + return 1; + } + } +} + diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/items/BeerKegItem.java b/src/main/java/com/rafacost3d/bbs_mod/objects/items/BeerKegItem.java new file mode 100644 index 0000000..a11942c --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/items/BeerKegItem.java @@ -0,0 +1,143 @@ +package com.rafacost3d.bbs_mod.objects.items; + +import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.client.renderer.ItemMeshDefinition; +import net.minecraft.client.renderer.block.model.ModelBakery; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.util.ITooltipFlag; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.util.text.TextFormatting; +import net.minecraft.world.World; +import net.minecraftforge.client.model.ModelLoader; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +import javax.annotation.Nullable; +import java.util.List; + +public class BeerKegItem extends Item { + + public BeerKegItem(){ + setRegistryName("beerkeg"); + setUnlocalizedName(Reference.MODID + ".beerkeg"); + setCreativeTab(CreativeTabsBBS.BBSTabsItems); + setMaxDamage(64); + setMaxStackSize(1); + } + @SideOnly(Side.CLIENT) + public void initModel(){ + ModelResourceLocation lb1 = new ModelResourceLocation(getRegistryName() + "_lb1", "inventory"); + ModelResourceLocation lb2 = new ModelResourceLocation(getRegistryName() + "_lb2", "inventory"); + ModelResourceLocation lb3 = new ModelResourceLocation(getRegistryName() + "_lb3", "inventory"); + ModelResourceLocation lb4 = new ModelResourceLocation(getRegistryName() + "_lb4", "inventory"); + ModelResourceLocation lb5 = new ModelResourceLocation(getRegistryName() + "_lb5", "inventory"); + ModelResourceLocation lb6 = new ModelResourceLocation(getRegistryName() + "_lb6", "inventory"); + ModelResourceLocation lb7 = new ModelResourceLocation(getRegistryName() + "_lb7", "inventory"); + ModelResourceLocation lb10 = new ModelResourceLocation(getRegistryName() + "_lb10", "inventory"); + ModelResourceLocation lb15 = new ModelResourceLocation(getRegistryName() + "_lb15", "inventory"); + ModelResourceLocation lb20 = new ModelResourceLocation(getRegistryName() + "_lb20", "inventory"); + ModelResourceLocation lb25 = new ModelResourceLocation(getRegistryName() + "_lb25", "inventory"); + ModelResourceLocation lb30 = new ModelResourceLocation(getRegistryName() + "_lb30", "inventory"); + ModelResourceLocation lb35 = new ModelResourceLocation(getRegistryName() + "_lb35", "inventory"); + ModelResourceLocation lb40 = new ModelResourceLocation(getRegistryName() + "_lb40", "inventory"); + + ModelBakery.registerItemVariants(this, lb1, lb2, lb3, lb4, lb5, lb6, lb7, lb10, lb15, lb20, lb25, lb30, lb35, lb40); + ModelLoader.setCustomMeshDefinition(this, new ItemMeshDefinition() { + @Override + public ModelResourceLocation getModelLocation(ItemStack stack) { + + Integer lb = getTagCompoundSafe(stack).getInteger("lb"); + switch (lb){ + case 1: + return lb1; + case 2: + return lb2; + case 3: + return lb3; + case 4: + return lb4; + case 5: + return lb5; + case 6: + return lb6; + case 7: + return lb7; + case 8: + case 9: + case 10: + return lb10; + case 11: + case 12: + case 13: + case 14: + case 15: + return lb15; + case 16: + case 17: + case 18: + case 19: + case 20: + return lb20; + case 21: + case 22: + case 23: + case 24: + case 25: + return lb25; + case 26: + case 27: + case 28: + case 29: + case 30: + return lb30; + case 31: + case 32: + case 33: + case 34: + case 35: + return lb35; + case 36: + case 37: + case 38: + case 39: + case 40: + return lb40; + default: + return lb40; + } + } + }); + } + private int getLove(ItemStack stack) { + return getTagCompoundSafe(stack).getInteger("love"); + } + + private NBTTagCompound getTagCompoundSafe(ItemStack stack) { + NBTTagCompound tagCompound = stack.getTagCompound(); + if (tagCompound == null) { + tagCompound = new NBTTagCompound(); + stack.setTagCompound(tagCompound); + } + return tagCompound; + } + + @Override + public void addInformation(ItemStack stack, @Nullable World worldIn, List tooltip, ITooltipFlag flagIn) { + if(getTagCompoundSafe(stack).hasKey("ibu")) { + tooltip.add(TextFormatting.GREEN + "Malt: " + getTagCompoundSafe(stack).getString("malt")); + tooltip.add(TextFormatting.GREEN + "SRM: " + getTagCompoundSafe(stack).getDouble("srm")); + tooltip.add(TextFormatting.GREEN + "IBU: " + getTagCompoundSafe(stack).getDouble("ibu")); + tooltip.add(TextFormatting.GREEN + "OG: " + getTagCompoundSafe(stack).getDouble("og")); + } + + if(getTagCompoundSafe(stack).hasKey("abv")) { + tooltip.add(TextFormatting.GREEN + "FG: " + getTagCompoundSafe(stack).getDouble("fg")); + tooltip.add(TextFormatting.GREEN + "ABV: " + getTagCompoundSafe(stack).getDouble("abv") + "%"); + } + + } + +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/items/MashKegItem.java b/src/main/java/com/rafacost3d/bbs_mod/objects/items/MashKegItem.java new file mode 100644 index 0000000..f749e39 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/items/MashKegItem.java @@ -0,0 +1,89 @@ +package com.rafacost3d.bbs_mod.objects.items; + +import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; +import com.rafacost3d.bbs_mod.util.Reference; +import net.minecraft.client.renderer.ItemMeshDefinition; +import net.minecraft.client.renderer.block.model.ModelBakery; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.util.ITooltipFlag; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.util.ActionResult; +import net.minecraft.util.EnumActionResult; +import net.minecraft.util.EnumHand; +import net.minecraft.util.text.TextFormatting; +import net.minecraft.world.World; +import net.minecraftforge.client.model.ModelLoader; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +import javax.annotation.Nullable; +import java.util.List; + +public class MashKegItem extends Item { + + public MashKegItem(){ + setRegistryName("mashkeg"); + setUnlocalizedName(Reference.MODID + ".mashkeg"); + setCreativeTab(CreativeTabsBBS.BBSTabsItems); + } + @SideOnly(Side.CLIENT) + public void initModel(){ + ModelResourceLocation lb1 = new ModelResourceLocation(getRegistryName() + "_lb1", "inventory"); + ModelResourceLocation lb2 = new ModelResourceLocation(getRegistryName() + "_lb2", "inventory"); + ModelResourceLocation lb3 = new ModelResourceLocation(getRegistryName() + "_lb3", "inventory"); + ModelResourceLocation lb4 = new ModelResourceLocation(getRegistryName() + "_lb4", "inventory"); + ModelResourceLocation lb5 = new ModelResourceLocation(getRegistryName() + "_lb5", "inventory"); + ModelResourceLocation lb6 = new ModelResourceLocation(getRegistryName() + "_lb6", "inventory"); + ModelResourceLocation lb7 = new ModelResourceLocation(getRegistryName() + "_lb7", "inventory"); + + ModelBakery.registerItemVariants(this, lb1, lb2, lb3, lb4, lb5, lb6, lb7); + ModelLoader.setCustomMeshDefinition(this, new ItemMeshDefinition() { + @Override + public ModelResourceLocation getModelLocation(ItemStack stack) { + + Integer lb = getTagCompoundSafe(stack).getInteger("lb"); + switch (lb){ + case 1: + return lb1; + case 2: + return lb2; + case 3: + return lb3; + case 4: + return lb4; + case 5: + return lb5; + case 6: + return lb6; + case 7: + return lb7; + default: + return lb1; + } + } + }); + } + private int getLove(ItemStack stack) { + return getTagCompoundSafe(stack).getInteger("love"); + } + + private NBTTagCompound getTagCompoundSafe(ItemStack stack) { + NBTTagCompound tagCompound = stack.getTagCompound(); + if (tagCompound == null) { + tagCompound = new NBTTagCompound(); + stack.setTagCompound(tagCompound); + } + return tagCompound; + } + + @Override + public void addInformation(ItemStack stack, @Nullable World worldIn, List tooltip, ITooltipFlag flagIn) { + tooltip.add(TextFormatting.GREEN + "Malt: " + getTagCompoundSafe(stack).getString("malt")); + tooltip.add(TextFormatting.GREEN + "SRM: " + getTagCompoundSafe(stack).getDouble("srm")); + tooltip.add(TextFormatting.GREEN + "OG: " + getTagCompoundSafe(stack).getDouble("og")); + } + +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/util/BeerMath.java b/src/main/java/com/rafacost3d/bbs_mod/util/BeerMath.java new file mode 100644 index 0000000..54e6cb5 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/util/BeerMath.java @@ -0,0 +1,64 @@ +package com.rafacost3d.bbs_mod.util; + +import com.rafacost3d.bbs_mod.objects.crops.BBSHopsTypes; +import java.text.DecimalFormat; + +import static com.rafacost3d.bbs_mod.init.BBSConstants.HOPS_WEIGHT; + +public class BeerMath { + + public static double RoundTo2Decimals(double val) { + DecimalFormat df2 = new DecimalFormat("###.##"); + return Double.valueOf(df2.format(val)); + } + + public static double RoundTo3Decimals(double val) { + DecimalFormat df2 = new DecimalFormat("###.###"); + return Double.valueOf(df2.format(val)); + } + public static Double SRM(Double love, Integer maltquant){ + Double srm; + Double mcu; + //Double boil = 5.0; + Double batch = 5.0; + Double lovibond=love; + Double quant= maltquant * 3.3; + mcu=lovibond * (quant/batch); + srm=1.4922 * Math.pow(mcu, 0.6859); + return srm; + } + public static Double OG(Double maltquant, Integer batch){ + Double points = 37 * maltquant; + Double OG = ((points/batch) * 0.001)+1; + return OG; + } + public static Double FG(Double OG){ + return ((OG-1) * (1-0.72))+1; + } + public static Double ABV(Double OG, Double FG){ + return (OG-FG) * (125 * 1.05); + } + + public static Double IBU(Integer hopQuantgrams, Double batch, Double boil, Double OG, String hopName){ + Double e=2.718281828459045235; + Integer time = 60; + Double hopQuantg = hopQuantgrams * HOPS_WEIGHT; + Double hopQuant = 0.0352739619*hopQuantg; + Double BG = (batch/boil) * (OG-1); + Double tfactor=0.0; + Double bfactor=0.0; + Double aa= BBSHopsTypes.getAlpha(hopName); + tfactor = (1-Math.pow(e,(-0.04*time)))/4.15; + bfactor = 1.65*Math.pow(0.000125,BG); + Double util = bfactor * tfactor; + /* + if(inventory.getStackInSlot(0).getTagCompound().getString("hopType").equals("pellet")) { + util = util * 1.1; + } + */ + Double IBU = util * (((aa/100) * hopQuant * 7490)/batch); + return IBU; + } + + +} diff --git a/src/main/resources/assets/bbs_mod/blockstates/hopmalt.crop.json b/src/main/resources/assets/bbs_mod/blockstates/hopmalt.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/hopmalt.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/blockstates/hopmaltamber.crop.json b/src/main/resources/assets/bbs_mod/blockstates/hopmaltamber.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/hopmaltamber.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/blockstates/hopmaltdark.crop.json b/src/main/resources/assets/bbs_mod/blockstates/hopmaltdark.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/hopmaltdark.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/blockstates/hopmaltmunich.crop.json b/src/main/resources/assets/bbs_mod/blockstates/hopmaltmunich.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/hopmaltmunich.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/blockstates/hopmaltpilsen.crop.json b/src/main/resources/assets/bbs_mod/blockstates/hopmaltpilsen.crop.json new file mode 100644 index 0000000..0977ec7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/blockstates/hopmaltpilsen.crop.json @@ -0,0 +1,12 @@ +{ + "variants": { + "age=0": { "model": "bbs_mod:hops_stage0" }, + "age=1": { "model": "bbs_mod:hops_stage1" }, + "age=2": { "model": "bbs_mod:hops_stage2" }, + "age=3": { "model": "bbs_mod:hops_stage3" }, + "age=4": { "model": "bbs_mod:hops_stage4" }, + "age=5": { "model": "bbs_mod:hops_stage5" }, + "age=6": { "model": "bbs_mod:hops_stage6" }, + "age=7": { "model": "bbs_mod:hops_stage7" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb1.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb1.json new file mode 100644 index 0000000..7cae7c0 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb1.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb10.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb10.json new file mode 100644 index 0000000..cb28d57 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb10.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb10" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb15.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb15.json new file mode 100644 index 0000000..ecf3d07 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb15.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb15" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb2.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb2.json new file mode 100644 index 0000000..21068c4 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb2.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb20.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb20.json new file mode 100644 index 0000000..1f53725 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb20.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb20" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb25.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb25.json new file mode 100644 index 0000000..a323a0c --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb25.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb25" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb3.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb3.json new file mode 100644 index 0000000..3457618 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb3.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb30.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb30.json new file mode 100644 index 0000000..17ec58b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb30.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb30" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb35.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb35.json new file mode 100644 index 0000000..c8eb439 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb35.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb35" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb4.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb4.json new file mode 100644 index 0000000..eae214c --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb4.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb40.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb40.json new file mode 100644 index 0000000..32cc202 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb40.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb40" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb5.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb5.json new file mode 100644 index 0000000..dd75688 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb5.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb6.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb6.json new file mode 100644 index 0000000..c55dc38 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb6.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb7.json b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb7.json new file mode 100644 index 0000000..154a79c --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/beerkeg_lb7.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/keg_lb7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/grafter.json b/src/main/resources/assets/bbs_mod/models/item/grafter.json new file mode 100644 index 0000000..3b61472 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/grafter.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/grafter" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/malt.hop.json b/src/main/resources/assets/bbs_mod/models/item/malt.hop.json new file mode 100644 index 0000000..42e9b89 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/malt.hop.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/malt.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/malt.rhizome.json new file mode 100644 index 0000000..fc7d407 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/malt.rhizome.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_seeds"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltamber.hop.json b/src/main/resources/assets/bbs_mod/models/item/maltamber.hop.json new file mode 100644 index 0000000..3452fcc --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltamber.hop.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_amber"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltamber.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/maltamber.rhizome.json new file mode 100644 index 0000000..fc7d407 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltamber.rhizome.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_seeds"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltdark.hop.json b/src/main/resources/assets/bbs_mod/models/item/maltdark.hop.json new file mode 100644 index 0000000..2061ed4 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltdark.hop.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_dark"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltdark.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/maltdark.rhizome.json new file mode 100644 index 0000000..fc7d407 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltdark.rhizome.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_seeds"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltmunich.hop.json b/src/main/resources/assets/bbs_mod/models/item/maltmunich.hop.json new file mode 100644 index 0000000..fe4b1b7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltmunich.hop.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_munich"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltmunich.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/maltmunich.rhizome.json new file mode 100644 index 0000000..fc7d407 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltmunich.rhizome.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_seeds"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltpilsen.hop.json b/src/main/resources/assets/bbs_mod/models/item/maltpilsen.hop.json new file mode 100644 index 0000000..05c50f7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltpilsen.hop.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_pilsen"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/maltpilsen.rhizome.json b/src/main/resources/assets/bbs_mod/models/item/maltpilsen.rhizome.json new file mode 100644 index 0000000..fc7d407 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/maltpilsen.rhizome.json @@ -0,0 +1 @@ +{"parent": "builtin/generated","textures": {"layer0": "bbs_mod:item/malt_seeds"}} diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb1.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb1.json new file mode 100644 index 0000000..4b47b3f --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb1.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/mashkeg_lb1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb2.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb2.json new file mode 100644 index 0000000..9d68247 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb2.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/mashkeg_lb2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb3.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb3.json new file mode 100644 index 0000000..814f89b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb3.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/mashkeg_lb3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb4.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb4.json new file mode 100644 index 0000000..fcab498 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb4.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/mashkeg_lb4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb5.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb5.json new file mode 100644 index 0000000..46ad2c4 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb5.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/mashkeg_lb5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb6.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb6.json new file mode 100644 index 0000000..ad00b10 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb6.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/mashkeg_lb6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb7.json b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb7.json new file mode 100644 index 0000000..5396997 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/models/item/mashkeg_lb7.json @@ -0,0 +1,6 @@ +{ + "parent": "builtin/generated", + "textures": { + "layer0": "bbs_mod:item/mashkeg_lb7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/admiral.json b/src/main/resources/assets/bbs_mod/recipes/admiral.json new file mode 100644 index 0000000..9e6660b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/admiral.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:pacifica.rhizome"}, {"item": "bbs_mod:superpride.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:admiral.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/ahtanum.json b/src/main/resources/assets/bbs_mod/recipes/ahtanum.json new file mode 100644 index 0000000..a042438 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/ahtanum.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:sussex.rhizome"}, {"item": "bbs_mod:tettnangerusa.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:ahtanum.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/amarillo.json b/src/main/resources/assets/bbs_mod/recipes/amarillo.json new file mode 100644 index 0000000..2553d33 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/amarillo.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:premiant.rhizome"}, {"item": "bbs_mod:triskel.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:amarillo.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/aquila.json b/src/main/resources/assets/bbs_mod/recipes/aquila.json new file mode 100644 index 0000000..41a579f --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/aquila.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:sylva.rhizome"}, {"item": "bbs_mod:whitbreadgolding.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:aquila.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/aramis.json b/src/main/resources/assets/bbs_mod/recipes/aramis.json new file mode 100644 index 0000000..7c33dd2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/aramis.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:palisade.rhizome"}, {"item": "bbs_mod:talisman.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:aramis.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/aurora.json b/src/main/resources/assets/bbs_mod/recipes/aurora.json new file mode 100644 index 0000000..e401122 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/aurora.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:prideofringwood.rhizome"}, {"item": "bbs_mod:ultra.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:aurora.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/banner.json b/src/main/resources/assets/bbs_mod/recipes/banner.json new file mode 100644 index 0000000..0d93b4d --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/banner.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:horizon.rhizome"}, {"item": "bbs_mod:rakau.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:banner.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/bcgolding.json b/src/main/resources/assets/bbs_mod/recipes/bcgolding.json new file mode 100644 index 0000000..beb5afb --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/bcgolding.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:tettnangergermany.rhizome"}, {"item": "bbs_mod:mounthood.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:bcgolding.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/bittergold.json b/src/main/resources/assets/bbs_mod/recipes/bittergold.json new file mode 100644 index 0000000..0730938 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/bittergold.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:nelsonsauvin.rhizome"}, {"item": "bbs_mod:southerncross.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:bittergold.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/blanc.json b/src/main/resources/assets/bbs_mod/recipes/blanc.json new file mode 100644 index 0000000..3796c86 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/blanc.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:pioneer.rhizome"}, {"item": "bbs_mod:triplepearl.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:blanc.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/bobek.json b/src/main/resources/assets/bbs_mod/recipes/bobek.json new file mode 100644 index 0000000..aef0d52 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/bobek.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:mounthood.rhizome"}, {"item": "bbs_mod:bcgolding.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:bobek.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/bramlingcross.json b/src/main/resources/assets/bbs_mod/recipes/bramlingcross.json new file mode 100644 index 0000000..85a4733 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/bramlingcross.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:mountrainier.rhizome"}, {"item": "bbs_mod:progress.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:bramlingcross.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/bravo.json b/src/main/resources/assets/bbs_mod/recipes/bravo.json new file mode 100644 index 0000000..6a99bce --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/bravo.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:tomahawk.rhizome"}, {"item": "bbs_mod:zeus.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:bravo.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/brewersgoldgermany.json b/src/main/resources/assets/bbs_mod/recipes/brewersgoldgermany.json new file mode 100644 index 0000000..da27afe --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/brewersgoldgermany.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:tettnangerusa.rhizome"}, {"item": "bbs_mod:ahtanum.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:brewersgoldgermany.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/brewersgoldusa.json b/src/main/resources/assets/bbs_mod/recipes/brewersgoldusa.json new file mode 100644 index 0000000..415ff68 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/brewersgoldusa.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:comet.rhizome"}, {"item": "bbs_mod:zenith.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:brewersgoldusa.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/bullion.json b/src/main/resources/assets/bbs_mod/recipes/bullion.json new file mode 100644 index 0000000..82a7d57 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/bullion.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:yakimacluster.rhizome"}, {"item": "bbs_mod:yeoman.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:bullion.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/cascade.json b/src/main/resources/assets/bbs_mod/recipes/cascade.json new file mode 100644 index 0000000..b78867e --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/cascade.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:whitbreadgolding.rhizome"}, {"item": "bbs_mod:aquila.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:cascade.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/celeia.json b/src/main/resources/assets/bbs_mod/recipes/celeia.json new file mode 100644 index 0000000..5fddca2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/celeia.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:spalt.rhizome"}, {"item": "bbs_mod:yamhillgolding.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:celeia.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/centennial.json b/src/main/resources/assets/bbs_mod/recipes/centennial.json new file mode 100644 index 0000000..72aec7a --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/centennial.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:perleusa.rhizome"}, {"item": "bbs_mod:wakatu.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:centennial.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/challenger.json b/src/main/resources/assets/bbs_mod/recipes/challenger.json new file mode 100644 index 0000000..88ae9c5 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/challenger.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:talisman.rhizome"}, {"item": "bbs_mod:aramis.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:challenger.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/chelan.json b/src/main/resources/assets/bbs_mod/recipes/chelan.json new file mode 100644 index 0000000..6ea8ac6 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/chelan.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:southerncross.rhizome"}, {"item": "bbs_mod:bittergold.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:chelan.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/chinook.json b/src/main/resources/assets/bbs_mod/recipes/chinook.json new file mode 100644 index 0000000..d8ffc01 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/chinook.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:bittergold.rhizome"}, {"item": "bbs_mod:chelan.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:chinook.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/citra.json b/src/main/resources/assets/bbs_mod/recipes/citra.json new file mode 100644 index 0000000..a7d350e --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/citra.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:banner.rhizome"}, {"item": "bbs_mod:falconersflight.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:citra.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/cluster.json b/src/main/resources/assets/bbs_mod/recipes/cluster.json new file mode 100644 index 0000000..1b2e500 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/cluster.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:yeoman.rhizome"}, {"item": "bbs_mod:bullion.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:cluster.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/columbus.json b/src/main/resources/assets/bbs_mod/recipes/columbus.json new file mode 100644 index 0000000..db479c2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/columbus.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:saaz.rhizome"}, {"item": "bbs_mod:hallertaumittelfruh.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:columbus.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/comet.json b/src/main/resources/assets/bbs_mod/recipes/comet.json new file mode 100644 index 0000000..ec5d2c5 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/comet.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:amarillo.rhizome"}, {"item": "bbs_mod:northdown.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:comet.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/crystal.json b/src/main/resources/assets/bbs_mod/recipes/crystal.json new file mode 100644 index 0000000..6a88c7e --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/crystal.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:yamhillgolding.rhizome"}, {"item": "bbs_mod:celeia.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:crystal.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/drrudi.json b/src/main/resources/assets/bbs_mod/recipes/drrudi.json new file mode 100644 index 0000000..b38c473 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/drrudi.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:falconersflight.rhizome"}, {"item": "bbs_mod:citra.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:drrudi.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/eastkentgolding.json b/src/main/resources/assets/bbs_mod/recipes/eastkentgolding.json new file mode 100644 index 0000000..553436a --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/eastkentgolding.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:bcgolding.rhizome"}, {"item": "bbs_mod:bobek.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:eastkentgolding.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/ekuanot.json b/src/main/resources/assets/bbs_mod/recipes/ekuanot.json new file mode 100644 index 0000000..0e9ebf9 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/ekuanot.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:hbc438experimental.rhizome"}, {"item": "bbs_mod:galaxy.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:ekuanot.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/ella.json b/src/main/resources/assets/bbs_mod/recipes/ella.json new file mode 100644 index 0000000..06fbc11 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/ella.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:admiral.rhizome"}, {"item": "bbs_mod:herkules.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:ella.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/eroica.json b/src/main/resources/assets/bbs_mod/recipes/eroica.json new file mode 100644 index 0000000..f8dc4a8 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/eroica.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:target.rhizome"}, {"item": "bbs_mod:loral.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:eroica.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/falconersflight.json b/src/main/resources/assets/bbs_mod/recipes/falconersflight.json new file mode 100644 index 0000000..2c083bf --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/falconersflight.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:rakau.rhizome"}, {"item": "bbs_mod:banner.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:falconersflight.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/firstgold.json b/src/main/resources/assets/bbs_mod/recipes/firstgold.json new file mode 100644 index 0000000..412c01a --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/firstgold.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:bullion.rhizome"}, {"item": "bbs_mod:cluster.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:firstgold.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/fuggleuk.json b/src/main/resources/assets/bbs_mod/recipes/fuggleuk.json new file mode 100644 index 0000000..1d0795b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/fuggleuk.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:celeia.rhizome"}, {"item": "bbs_mod:crystal.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:fuggleuk.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/galaxy.json b/src/main/resources/assets/bbs_mod/recipes/galaxy.json new file mode 100644 index 0000000..8bc7c2f --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/galaxy.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:superalpha.rhizome"}, {"item": "bbs_mod:hbc438experimental.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:galaxy.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/galena.json b/src/main/resources/assets/bbs_mod/recipes/galena.json new file mode 100644 index 0000000..a09f39c --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/galena.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:chelan.rhizome"}, {"item": "bbs_mod:chinook.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:galena.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/glacier.json b/src/main/resources/assets/bbs_mod/recipes/glacier.json new file mode 100644 index 0000000..4cb23ea --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/glacier.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:ahtanum.rhizome"}, {"item": "bbs_mod:brewersgoldgermany.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:glacier.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/gold.json b/src/main/resources/assets/bbs_mod/recipes/gold.json new file mode 100644 index 0000000..3f2d474 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/gold.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:bobek.rhizome"}, {"item": "bbs_mod:eastkentgolding.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:gold.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/goldinguk.json b/src/main/resources/assets/bbs_mod/recipes/goldinguk.json new file mode 100644 index 0000000..b7f51bb --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/goldinguk.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:eastkentgolding.rhizome"}, {"item": "bbs_mod:gold.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:goldinguk.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/goldingusa.json b/src/main/resources/assets/bbs_mod/recipes/goldingusa.json new file mode 100644 index 0000000..6ac91df --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/goldingusa.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:crystal.rhizome"}, {"item": "bbs_mod:fuggleuk.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:goldingusa.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/grafter.json b/src/main/resources/assets/bbs_mod/recipes/grafter.json new file mode 100644 index 0000000..f8a5a34 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/grafter.json @@ -0,0 +1,23 @@ +{ + "result": { + "item": "bbs_mod:grafter", + "count": 10 + }, + "pattern": [ + "r r", + " s ", + "i i" + ], + "type": "forge:ore_shaped", + "key": { + "i": { + "item": "minecraft:stick" + }, + "r": { + "item": "bbs_mod:liberty.hop" + }, + "s": { + "item": "bbs_mod:strisselspalt.rhizome" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bbs_mod/recipes/greenbullet.json b/src/main/resources/assets/bbs_mod/recipes/greenbullet.json new file mode 100644 index 0000000..4e3dca2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/greenbullet.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:mosaic.rhizome"}, {"item": "bbs_mod:olympic.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:greenbullet.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hallertaumittelfruh.json b/src/main/resources/assets/bbs_mod/recipes/hallertaumittelfruh.json new file mode 100644 index 0000000..227659b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hallertaumittelfruh.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:hersbrucker.rhizome"}, {"item": "bbs_mod:saaz.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hallertaumittelfruh.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hallertauusa.json b/src/main/resources/assets/bbs_mod/recipes/hallertauusa.json new file mode 100644 index 0000000..b7451ce --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hallertauusa.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:gold.rhizome"}, {"item": "bbs_mod:goldinguk.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hallertauusa.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hbc431experimental.json b/src/main/resources/assets/bbs_mod/recipes/hbc431experimental.json new file mode 100644 index 0000000..b2c0893 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hbc431experimental.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:herkules.rhizome"}, {"item": "bbs_mod:ella.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hbc431experimental.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hbc438experimental.json b/src/main/resources/assets/bbs_mod/recipes/hbc438experimental.json new file mode 100644 index 0000000..a5a097b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hbc438experimental.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:sorachiace.rhizome"}, {"item": "bbs_mod:superalpha.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hbc438experimental.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hbc472experimental.json b/src/main/resources/assets/bbs_mod/recipes/hbc472experimental.json new file mode 100644 index 0000000..a77017f --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hbc472experimental.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:ultra.rhizome"}, {"item": "bbs_mod:aurora.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hbc472experimental.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hbc682experimental.json b/src/main/resources/assets/bbs_mod/recipes/hbc682experimental.json new file mode 100644 index 0000000..6190f82 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hbc682experimental.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:millenium.rhizome"}, {"item": "bbs_mod:waimea.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hbc682experimental.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/helga.json b/src/main/resources/assets/bbs_mod/recipes/helga.json new file mode 100644 index 0000000..fd4c277 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/helga.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:willamette.rhizome"}, {"item": "bbs_mod:hullerbitterer.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:helga.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/herald.json b/src/main/resources/assets/bbs_mod/recipes/herald.json new file mode 100644 index 0000000..ef59642 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/herald.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:loral.rhizome"}, {"item": "bbs_mod:eroica.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:herald.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/herkules.json b/src/main/resources/assets/bbs_mod/recipes/herkules.json new file mode 100644 index 0000000..5f96158 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/herkules.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:superpride.rhizome"}, {"item": "bbs_mod:admiral.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:herkules.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hersbrucker.json b/src/main/resources/assets/bbs_mod/recipes/hersbrucker.json new file mode 100644 index 0000000..f9298b6 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hersbrucker.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:liberty.rhizome"}, {"item": "bbs_mod:strisselspalt.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hersbrucker.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/horizon.json b/src/main/resources/assets/bbs_mod/recipes/horizon.json new file mode 100644 index 0000000..fd7930c --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/horizon.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:triplepearl.rhizome"}, {"item": "bbs_mod:blanc.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:horizon.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/huellmelon.json b/src/main/resources/assets/bbs_mod/recipes/huellmelon.json new file mode 100644 index 0000000..b3eee64 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/huellmelon.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:aquila.rhizome"}, {"item": "bbs_mod:cascade.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:huellmelon.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/hullerbitterer.json b/src/main/resources/assets/bbs_mod/recipes/hullerbitterer.json new file mode 100644 index 0000000..dafa30e --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/hullerbitterer.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:vanguard.rhizome"}, {"item": "bbs_mod:willamette.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:hullerbitterer.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/kohatu.json b/src/main/resources/assets/bbs_mod/recipes/kohatu.json new file mode 100644 index 0000000..557c281 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/kohatu.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:progress.rhizome"}, {"item": "bbs_mod:bramlingcross.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:kohatu.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/loral.json b/src/main/resources/assets/bbs_mod/recipes/loral.json new file mode 100644 index 0000000..bb45d10 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/loral.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:sticklebract.rhizome"}, {"item": "bbs_mod:target.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:loral.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/lubelska.json b/src/main/resources/assets/bbs_mod/recipes/lubelska.json new file mode 100644 index 0000000..73961c0 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/lubelska.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:fuggleuk.rhizome"}, {"item": "bbs_mod:goldingusa.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:lubelska.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/magnum.json b/src/main/resources/assets/bbs_mod/recipes/magnum.json new file mode 100644 index 0000000..b4197fc --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/magnum.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:ella.rhizome"}, {"item": "bbs_mod:hbc431experimental.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:magnum.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/mandarinabavaria.json b/src/main/resources/assets/bbs_mod/recipes/mandarinabavaria.json new file mode 100644 index 0000000..db5f403 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/mandarinabavaria.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:aramis.rhizome"}, {"item": "bbs_mod:challenger.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:mandarinabavaria.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/merkur.json b/src/main/resources/assets/bbs_mod/recipes/merkur.json new file mode 100644 index 0000000..d6cb112 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/merkur.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:chinook.rhizome"}, {"item": "bbs_mod:galena.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:merkur.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/millenium.json b/src/main/resources/assets/bbs_mod/recipes/millenium.json new file mode 100644 index 0000000..2815699 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/millenium.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:bravo.rhizome"}, {"item": "bbs_mod:warrior.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:millenium.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/mosaic.json b/src/main/resources/assets/bbs_mod/recipes/mosaic.json new file mode 100644 index 0000000..7eb4d5e --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/mosaic.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:eroica.rhizome"}, {"item": "bbs_mod:herald.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:mosaic.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/motueka.json b/src/main/resources/assets/bbs_mod/recipes/motueka.json new file mode 100644 index 0000000..1c594db --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/motueka.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:cascade.rhizome"}, {"item": "bbs_mod:huellmelon.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:motueka.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/mounthood.json b/src/main/resources/assets/bbs_mod/recipes/mounthood.json new file mode 100644 index 0000000..2c6efe3 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/mounthood.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:lubelska.rhizome"}, {"item": "bbs_mod:tettnangergermany.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:mounthood.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/mountrainier.json b/src/main/resources/assets/bbs_mod/recipes/mountrainier.json new file mode 100644 index 0000000..2cf88f7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/mountrainier.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:helga.rhizome"}, {"item": "bbs_mod:summer.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:mountrainier.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/nelsonsauvin.json b/src/main/resources/assets/bbs_mod/recipes/nelsonsauvin.json new file mode 100644 index 0000000..81ad1fa --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/nelsonsauvin.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:olympic.rhizome"}, {"item": "bbs_mod:greenbullet.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:nelsonsauvin.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/newport.json b/src/main/resources/assets/bbs_mod/recipes/newport.json new file mode 100644 index 0000000..acc5eac --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/newport.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:citra.rhizome"}, {"item": "bbs_mod:drrudi.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:newport.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/northdown.json b/src/main/resources/assets/bbs_mod/recipes/northdown.json new file mode 100644 index 0000000..77d54b7 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/northdown.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:triskel.rhizome"}, {"item": "bbs_mod:amarillo.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:northdown.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/northernbrewer.json b/src/main/resources/assets/bbs_mod/recipes/northernbrewer.json new file mode 100644 index 0000000..00ab468 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/northernbrewer.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:wakatu.rhizome"}, {"item": "bbs_mod:centennial.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:northernbrewer.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/nugget.json b/src/main/resources/assets/bbs_mod/recipes/nugget.json new file mode 100644 index 0000000..7712862 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/nugget.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:galaxy.rhizome"}, {"item": "bbs_mod:ekuanot.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:nugget.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/olympic.json b/src/main/resources/assets/bbs_mod/recipes/olympic.json new file mode 100644 index 0000000..406e1f8 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/olympic.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:herald.rhizome"}, {"item": "bbs_mod:mosaic.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:olympic.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/omega.json b/src/main/resources/assets/bbs_mod/recipes/omega.json new file mode 100644 index 0000000..66647b2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/omega.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:aurora.rhizome"}, {"item": "bbs_mod:hbc472experimental.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:omega.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/opal.json b/src/main/resources/assets/bbs_mod/recipes/opal.json new file mode 100644 index 0000000..a22fa12 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/opal.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:bramlingcross.rhizome"}, {"item": "bbs_mod:kohatu.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:opal.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/orion.json b/src/main/resources/assets/bbs_mod/recipes/orion.json new file mode 100644 index 0000000..bc16603 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/orion.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:huellmelon.rhizome"}, {"item": "bbs_mod:motueka.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:orion.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/pacifica.json b/src/main/resources/assets/bbs_mod/recipes/pacifica.json new file mode 100644 index 0000000..cd60a32 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/pacifica.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:ekuanot.rhizome"}, {"item": "bbs_mod:nugget.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:pacifica.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/pacificgem.json b/src/main/resources/assets/bbs_mod/recipes/pacificgem.json new file mode 100644 index 0000000..395288f --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/pacificgem.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:galena.rhizome"}, {"item": "bbs_mod:merkur.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:pacificgem.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/pacificjade.json b/src/main/resources/assets/bbs_mod/recipes/pacificjade.json new file mode 100644 index 0000000..96a6da4 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/pacificjade.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:brewersgoldgermany.rhizome"}, {"item": "bbs_mod:glacier.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:pacificjade.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/palisade.json b/src/main/resources/assets/bbs_mod/recipes/palisade.json new file mode 100644 index 0000000..7e92bc5 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/palisade.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:centennial.rhizome"}, {"item": "bbs_mod:northernbrewer.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:palisade.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/perlegermany.json b/src/main/resources/assets/bbs_mod/recipes/perlegermany.json new file mode 100644 index 0000000..3dfe1f2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/perlegermany.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:kohatu.rhizome"}, {"item": "bbs_mod:opal.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:perlegermany.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/perleusa.json b/src/main/resources/assets/bbs_mod/recipes/perleusa.json new file mode 100644 index 0000000..e166f4e --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/perleusa.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:cluster.rhizome"}, {"item": "bbs_mod:firstgold.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:perleusa.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/phoenix.json b/src/main/resources/assets/bbs_mod/recipes/phoenix.json new file mode 100644 index 0000000..bdf4a95 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/phoenix.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:hbc472experimental.rhizome"}, {"item": "bbs_mod:omega.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:phoenix.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/pilgrim.json b/src/main/resources/assets/bbs_mod/recipes/pilgrim.json new file mode 100644 index 0000000..2a3b4cb --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/pilgrim.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:drrudi.rhizome"}, {"item": "bbs_mod:newport.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:pilgrim.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/pioneer.json b/src/main/resources/assets/bbs_mod/recipes/pioneer.json new file mode 100644 index 0000000..62d8fec --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/pioneer.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:omega.rhizome"}, {"item": "bbs_mod:phoenix.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:pioneer.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/polaris.json b/src/main/resources/assets/bbs_mod/recipes/polaris.json new file mode 100644 index 0000000..d5a3820 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/polaris.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:waimea.rhizome"}, {"item": "bbs_mod:hbc682experimental.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:polaris.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/premiant.json b/src/main/resources/assets/bbs_mod/recipes/premiant.json new file mode 100644 index 0000000..f85a1ed --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/premiant.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:challenger.rhizome"}, {"item": "bbs_mod:mandarinabavaria.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:premiant.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/prideofringwood.json b/src/main/resources/assets/bbs_mod/recipes/prideofringwood.json new file mode 100644 index 0000000..e72a511 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/prideofringwood.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:zenith.rhizome"}, {"item": "bbs_mod:brewersgoldusa.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:prideofringwood.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/progress.json b/src/main/resources/assets/bbs_mod/recipes/progress.json new file mode 100644 index 0000000..128edeb --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/progress.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:summer.rhizome"}, {"item": "bbs_mod:mountrainier.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:progress.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/rakau.json b/src/main/resources/assets/bbs_mod/recipes/rakau.json new file mode 100644 index 0000000..cb76149 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/rakau.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:blanc.rhizome"}, {"item": "bbs_mod:horizon.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:rakau.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/record.json b/src/main/resources/assets/bbs_mod/recipes/record.json new file mode 100644 index 0000000..eb51cb1 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/record.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:opal.rhizome"}, {"item": "bbs_mod:perlegermany.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:record.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/riwaka.json b/src/main/resources/assets/bbs_mod/recipes/riwaka.json new file mode 100644 index 0000000..4e7a376 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/riwaka.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:glacier.rhizome"}, {"item": "bbs_mod:pacificjade.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:riwaka.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/saaz.json b/src/main/resources/assets/bbs_mod/recipes/saaz.json new file mode 100644 index 0000000..1bedde6 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/saaz.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:strisselspalt.rhizome"}, {"item": "bbs_mod:hersbrucker.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:saaz.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/santiam.json b/src/main/resources/assets/bbs_mod/recipes/santiam.json new file mode 100644 index 0000000..bf7ea2c --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/santiam.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:motueka.rhizome"}, {"item": "bbs_mod:orion.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:santiam.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/saphir.json b/src/main/resources/assets/bbs_mod/recipes/saphir.json new file mode 100644 index 0000000..1940943 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/saphir.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:hallertaumittelfruh.rhizome"}, {"item": "bbs_mod:columbus.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:saphir.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/satus.json b/src/main/resources/assets/bbs_mod/recipes/satus.json new file mode 100644 index 0000000..5e36adc --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/satus.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:merkur.rhizome"}, {"item": "bbs_mod:pacificgem.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:satus.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/savinjskigolding.json b/src/main/resources/assets/bbs_mod/recipes/savinjskigolding.json new file mode 100644 index 0000000..a42c579 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/savinjskigolding.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:goldinguk.rhizome"}, {"item": "bbs_mod:hallertauusa.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:savinjskigolding.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/select.json b/src/main/resources/assets/bbs_mod/recipes/select.json new file mode 100644 index 0000000..ca6a340 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/select.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:saphir.rhizome"}, {"item": "bbs_mod:waiiti.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:select.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/simcoe.json b/src/main/resources/assets/bbs_mod/recipes/simcoe.json new file mode 100644 index 0000000..1f34114 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/simcoe.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:pacificgem.rhizome"}, {"item": "bbs_mod:satus.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:simcoe.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/smaragd.json b/src/main/resources/assets/bbs_mod/recipes/smaragd.json new file mode 100644 index 0000000..dd90512 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/smaragd.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:hallertauusa.rhizome"}, {"item": "bbs_mod:savinjskigolding.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:smaragd.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/sorachiace.json b/src/main/resources/assets/bbs_mod/recipes/sorachiace.json new file mode 100644 index 0000000..98b3a40 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/sorachiace.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:satus.rhizome"}, {"item": "bbs_mod:simcoe.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:sorachiace.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/southerncross.json b/src/main/resources/assets/bbs_mod/recipes/southerncross.json new file mode 100644 index 0000000..51eb6ec --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/southerncross.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:greenbullet.rhizome"}, {"item": "bbs_mod:nelsonsauvin.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:southerncross.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/sovereign.json b/src/main/resources/assets/bbs_mod/recipes/sovereign.json new file mode 100644 index 0000000..bd16579 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/sovereign.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:pacificjade.rhizome"}, {"item": "bbs_mod:riwaka.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:sovereign.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/spalt.json b/src/main/resources/assets/bbs_mod/recipes/spalt.json new file mode 100644 index 0000000..39bb1a2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/spalt.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:waiiti.rhizome"}, {"item": "bbs_mod:select.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:spalt.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/sterling.json b/src/main/resources/assets/bbs_mod/recipes/sterling.json new file mode 100644 index 0000000..7769669 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/sterling.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:orion.rhizome"}, {"item": "bbs_mod:santiam.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:sterling.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/sticklebract.json b/src/main/resources/assets/bbs_mod/recipes/sticklebract.json new file mode 100644 index 0000000..3d5bb35 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/sticklebract.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:pilgrim.rhizome"}, {"item": "bbs_mod:zythos.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:sticklebract.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/styriangolding.json b/src/main/resources/assets/bbs_mod/recipes/styriangolding.json new file mode 100644 index 0000000..26b15ee --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/styriangolding.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:riwaka.rhizome"}, {"item": "bbs_mod:sovereign.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:styriangolding.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/summer.json b/src/main/resources/assets/bbs_mod/recipes/summer.json new file mode 100644 index 0000000..15b7e3b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/summer.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:hullerbitterer.rhizome"}, {"item": "bbs_mod:helga.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:summer.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/summit.json b/src/main/resources/assets/bbs_mod/recipes/summit.json new file mode 100644 index 0000000..b944226 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/summit.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:hbc431experimental.rhizome"}, {"item": "bbs_mod:magnum.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:summit.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/superalpha.json b/src/main/resources/assets/bbs_mod/recipes/superalpha.json new file mode 100644 index 0000000..7964c3d --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/superalpha.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:simcoe.rhizome"}, {"item": "bbs_mod:sorachiace.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:superalpha.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/superpride.json b/src/main/resources/assets/bbs_mod/recipes/superpride.json new file mode 100644 index 0000000..babda73 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/superpride.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:nugget.rhizome"}, {"item": "bbs_mod:pacifica.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:superpride.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/sussex.json b/src/main/resources/assets/bbs_mod/recipes/sussex.json new file mode 100644 index 0000000..780d07d --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/sussex.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:savinjskigolding.rhizome"}, {"item": "bbs_mod:smaragd.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:sussex.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/sylva.json b/src/main/resources/assets/bbs_mod/recipes/sylva.json new file mode 100644 index 0000000..0dc54a9 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/sylva.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:perlegermany.rhizome"}, {"item": "bbs_mod:record.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:sylva.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/tahoma.json b/src/main/resources/assets/bbs_mod/recipes/tahoma.json new file mode 100644 index 0000000..d64ec47 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/tahoma.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:santiam.rhizome"}, {"item": "bbs_mod:sterling.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:tahoma.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/talisman.json b/src/main/resources/assets/bbs_mod/recipes/talisman.json new file mode 100644 index 0000000..917b84f --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/talisman.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:northernbrewer.rhizome"}, {"item": "bbs_mod:palisade.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:talisman.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/target.json b/src/main/resources/assets/bbs_mod/recipes/target.json new file mode 100644 index 0000000..87a5cb2 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/target.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:zythos.rhizome"}, {"item": "bbs_mod:sticklebract.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:target.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/tettnangergermany.json b/src/main/resources/assets/bbs_mod/recipes/tettnangergermany.json new file mode 100644 index 0000000..0055cca --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/tettnangergermany.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:goldingusa.rhizome"}, {"item": "bbs_mod:lubelska.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:tettnangergermany.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/tettnangerusa.json b/src/main/resources/assets/bbs_mod/recipes/tettnangerusa.json new file mode 100644 index 0000000..aa1e421 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/tettnangerusa.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:smaragd.rhizome"}, {"item": "bbs_mod:sussex.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:tettnangerusa.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/tomahawk.json b/src/main/resources/assets/bbs_mod/recipes/tomahawk.json new file mode 100644 index 0000000..1051f36 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/tomahawk.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:magnum.rhizome"}, {"item": "bbs_mod:summit.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:tomahawk.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/tradition.json b/src/main/resources/assets/bbs_mod/recipes/tradition.json new file mode 100644 index 0000000..84d0b94 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/tradition.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:sovereign.rhizome"}, {"item": "bbs_mod:styriangolding.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:tradition.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/triplepearl.json b/src/main/resources/assets/bbs_mod/recipes/triplepearl.json new file mode 100644 index 0000000..dc2bc3b --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/triplepearl.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:phoenix.rhizome"}, {"item": "bbs_mod:pioneer.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:triplepearl.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/triskel.json b/src/main/resources/assets/bbs_mod/recipes/triskel.json new file mode 100644 index 0000000..d201f75 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/triskel.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:mandarinabavaria.rhizome"}, {"item": "bbs_mod:premiant.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:triskel.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/ultra.json b/src/main/resources/assets/bbs_mod/recipes/ultra.json new file mode 100644 index 0000000..3f94628 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/ultra.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:brewersgoldusa.rhizome"}, {"item": "bbs_mod:prideofringwood.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:ultra.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/vanguard.json b/src/main/resources/assets/bbs_mod/recipes/vanguard.json new file mode 100644 index 0000000..d3a915a --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/vanguard.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:styriangolding.rhizome"}, {"item": "bbs_mod:tradition.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:vanguard.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/waiiti.json b/src/main/resources/assets/bbs_mod/recipes/waiiti.json new file mode 100644 index 0000000..2d7e7de --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/waiiti.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:columbus.rhizome"}, {"item": "bbs_mod:saphir.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:waiiti.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/waimea.json b/src/main/resources/assets/bbs_mod/recipes/waimea.json new file mode 100644 index 0000000..a0aeef6 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/waimea.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:warrior.rhizome"}, {"item": "bbs_mod:millenium.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:waimea.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/wakatu.json b/src/main/resources/assets/bbs_mod/recipes/wakatu.json new file mode 100644 index 0000000..80ab4d5 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/wakatu.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:firstgold.rhizome"}, {"item": "bbs_mod:perleusa.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:wakatu.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/warrior.json b/src/main/resources/assets/bbs_mod/recipes/warrior.json new file mode 100644 index 0000000..e854a59 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/warrior.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:zeus.rhizome"}, {"item": "bbs_mod:bravo.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:warrior.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/whitbreadgolding.json b/src/main/resources/assets/bbs_mod/recipes/whitbreadgolding.json new file mode 100644 index 0000000..dc87579 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/whitbreadgolding.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:record.rhizome"}, {"item": "bbs_mod:sylva.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:whitbreadgolding.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/willamette.json b/src/main/resources/assets/bbs_mod/recipes/willamette.json new file mode 100644 index 0000000..d203b7e --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/willamette.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:tradition.rhizome"}, {"item": "bbs_mod:vanguard.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:willamette.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/yakimacluster.json b/src/main/resources/assets/bbs_mod/recipes/yakimacluster.json new file mode 100644 index 0000000..37fe3b6 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/yakimacluster.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:sterling.rhizome"}, {"item": "bbs_mod:tahoma.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:yakimacluster.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/yamhillgolding.json b/src/main/resources/assets/bbs_mod/recipes/yamhillgolding.json new file mode 100644 index 0000000..8a29b72 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/yamhillgolding.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:select.rhizome"}, {"item": "bbs_mod:spalt.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:yamhillgolding.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/yeoman.json b/src/main/resources/assets/bbs_mod/recipes/yeoman.json new file mode 100644 index 0000000..cf038aa --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/yeoman.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:tahoma.rhizome"}, {"item": "bbs_mod:yakimacluster.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:yeoman.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/zenith.json b/src/main/resources/assets/bbs_mod/recipes/zenith.json new file mode 100644 index 0000000..fe534b9 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/zenith.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:northdown.rhizome"}, {"item": "bbs_mod:comet.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:zenith.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/zeus.json b/src/main/resources/assets/bbs_mod/recipes/zeus.json new file mode 100644 index 0000000..f206bca --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/zeus.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:summit.rhizome"}, {"item": "bbs_mod:tomahawk.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:zeus.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/recipes/zythos.json b/src/main/resources/assets/bbs_mod/recipes/zythos.json new file mode 100644 index 0000000..5da4ff9 --- /dev/null +++ b/src/main/resources/assets/bbs_mod/recipes/zythos.json @@ -0,0 +1 @@ +{"type": "minecraft:crafting_shapeless", "ingredients": [{"item": "bbs_mod:newport.rhizome"}, {"item": "bbs_mod:pilgrim.rhizome"}, {"item": "bbs_mod:grafter"}], "result": {"item": "bbs_mod:zythos.rhizome"}} diff --git a/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png b/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..846e5aa2127c43871f7add8a2baed892159ea42c GIT binary patch literal 11765 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 Y=(m5J5ZPk={Uf%Df~I_ptVQVm0()~qg#Z8m literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/blankkeg.png b/src/main/resources/assets/bbs_mod/textures/item/blankkeg.png new file mode 100644 index 0000000000000000000000000000000000000000..d955ac33cbbace3a0d0b97e7f2a523b149093305 GIT binary patch literal 1774 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 L4TWksSjhhXLx2A> literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv1.png b/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv1.png new file mode 100644 index 0000000000000000000000000000000000000000..873c173a9dda6e0f0ac3e5c67c26cc1c464c24bd GIT binary patch literal 5339 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 DWk+Y} literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv2.png b/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv2.png new file mode 100644 index 0000000000000000000000000000000000000000..e77dece9b7c82af8b703643513d949951b8e7a4a GIT binary patch literal 5399 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 KslQRP3I89>K&aOM literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv3.png b/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv3.png new file mode 100644 index 0000000000000000000000000000000000000000..fb369766df31781007adb6f17bb40fcc53db7842 GIT binary patch literal 5327 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv5.png b/src/main/resources/assets/bbs_mod/textures/item/hopsleaf_lv5.png new file mode 100644 index 0000000000000000000000000000000000000000..8448158ac2a3c9916b93c6f23b16cabc66964a9e GIT binary patch literal 5245 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb1.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb1.png new file mode 100644 index 0000000000000000000000000000000000000000..639e947e874615b8a4a19f7988a9a0c7fdc51067 GIT binary patch literal 1781 zcmaJ?Yfuws6kQ@0~i9NDwL2ckb%vHWNCup7^S76 zqtK!wKB$!1Du^OdPzu$EPEn`$sI(xWARt=DRt51<9NP^Q?2po&-TfYO&bjw~_v~y* zLR^fC^CD*e09>T8VmUEJ+8(ka@vhb8-5~~VT%yDiu}s{gG9Z9ZgJmF~6jfy*azv#m z$h(B_0bmxSRVZ<#Y!y$9p){2ZLo=g#f(-!tkUZa`Z$GpeU6%|ftE*rd^3*_KoML8n$cXHk!Kb_le#=&Zri3q;3Ndk z5kUVWrIaOrBFun*VYJW?HG|0nVVK5bhruv27-TV+EINa@;SeU97Y6fK9PsT05z!2q zOrBgE{Wcb{5G9usk3bhAoNXVMt9lBR$%+5baPbQ*2M<;c5y z|5MngD9|HxIby`}4QirsnN(XSJx^pnR5)f(U|8g)$ka?Xd#O!60xErFq0_>kAj69t{7%>quEj7FqkpL z6=Ujr6w%>RT+KVKct)|GtH*oRO}O&Kei!U6dQ>@=xz8J6Gq$Q$5J@|>MkHUnKktX= zAL~rrIh;pz6Vi_o{To8Z3No`ga>~PZNrF zcw}Pr9q+@tMmY7eN-b&EU&RzPopHLdynp;fICS8If;>t|5Xanoxv{+R>Mi-!6{R<6 zpVR_<@3Wo!;4sL_JGXuO1N#R{7F4CA0JBeTQ(BTnikbnF#kkd>LLHGk=UQmX^D%2f zLw5!6Z8A`Tb~>luiZuIKH1}HRmJJ+Ij;li^r(|x2<{3HFSfsxhZRlj1%?S+y+rQBQPj6lv0(8WS1NYItHtp z3SAV5=_?+I6n-QYg;$*!>o7Jaj_)16yZt>mqzjzy+?g=gc7800?f5#j-BBHS!TTtw zGSK}8;{!1bSdEIo~EcJ zY+>N;!UsjGfPRwQYaZ#l2vV_3R-Czc4?SYj=`PQKU0z?8?TX&Hqe(vCap@2Bxsr-k zRUy{+0lNiQ>ivVQO4kavUQ$)9{ecY&4>cbpGlJu!Xbo_(Mqg~QR`wm(4}a*iZ=FkE zLn?W9$H>U$e)5@nqr(j?`>oP5h*~czD&dfA*Ku(=YR`{0%Mqsp0?t literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb10.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb10.png new file mode 100644 index 0000000000000000000000000000000000000000..28420c4ee80a3d07ee1eb57654561c214561c701 GIT binary patch literal 1856 zcmbVNX;2eq7)~H+0!89kM5If?C7NRs5=bOKE+imI5lWO&*(3{WA=!{DBv21vka&xV zB7$5Bj#x$UYNZGD7{Ll2C|FcfVg)G!UgOc0(v6Dk568}QXLrBvd-r{w_nuuFy>Pyh zgR299KyXro%VO{~)b^0aM zdMTWWgy$IG#W@RO)j4Tufrb_m3p0S0(XE+rDB*~$YPmHCZ>tYL=7n{P#_T4I5->zuE8*7>oCa7&>87t3^LfLHXwQo zL3MzQ5mKRP#)H!xSM0&yrz!@J>u zb@;>>@X;8YLSBncoL(Ul$C|qb6GG6A(5b6ZEJc#l^tj?YA|;N7(FT;AEAyGl$>XW^ z_Vc)vc6reu_T0!xj=oUMF-cMF=+(W*ptZDoj=H_?=_}Wv_7ztb?YP~YJ>2)AE5*Kc zYNKxv?`+yx7qQb%J0BkNjww$|Q`or!n?B+Mt*6&nS5x&fkE9)bOvx%ew3MO@O;1Q# zp0BMldJvt8w(VP^`@MN&rei`<(Q<*Cwl1q_L0^fyZ&J@JpMt%n2KsZVxbtQF?RjP1 zE~EFYCm9nd6Xs4WM4VgJ`DBb(yk}N+dRey@%bkBUokH?oQi`rRONV+W{DRmzs9}!#dmAIom5b4 zXx%V+{sq~I9?{Dn+PUlKxAw80p16;;3LgK^zsup$gl<35G3@~H>XY85n@E>T2x8DnK1DNpZQXen zn>aA#aQ$R`59E6-u`stMgt4DKEi~)F%FX8T!GcfkBZ;2Zzi}oVOZhpu)Jr9-oZdxwg<7nZnknqj@9$DN;@Ug6F58R(!OiKv m-ta#ot-BdkS~il9OC)6c=4`2)uG(VzrzzwMWrrk5`F{h75WkWD literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb15.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb15.png new file mode 100644 index 0000000000000000000000000000000000000000..8eb133a8fda451bb34b2ec3b60a698d812a5eeae GIT binary patch literal 1783 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 Hi1dE|*;}^? literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb25.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb25.png new file mode 100644 index 0000000000000000000000000000000000000000..2b7ae271b2068554b4a0f56058075b5dbc933eef GIT binary patch literal 1782 zcmaJ?eM}Q)9B%onAX>%2iqjmmSQTh#p@kMY5U$V)MJT03>y*+SP@uiqUZsE`6#<1! zm}CqI@*z5cx-q8KC?tTH1JnRI6b8trpkU?~b7-d1T@i49j9u>TeSdGB=lOkJt{^Hh z%)!pZ4uios@OhvRU4zUI&IWy-Q|=!@7XreKLt@}WBweP3FxwSy0tE0?vLr|d$rKs; zZ$JSUj3rSiibLWA5o|fEqR7k`ib178*%(Yfpg|*(r$Pvj03|8a9OAR)RwAHOaEKCy zz)PSBfs&QHOf3|X87Y!yrpj3gV&LaMfPsw)s31fJ7*uI$9oxVm&g-(#z4@3*1m+<~ zDu?(Xs5n6s5CUrAlqS2{d=*{$``LG#GHr*FkxQM7X zts;>v1Va~mp%#ajj362|m71QOPD%Hsz}h4#jm2V_HRyCt6yd4MP$M#fr&_mZQ2~T> za;;K>C}A~VR+J^cdW1tnBmIzqO0y)Z)-99?Eg01x(@<#?FLO$ZK!M=@p(@o9T89Xs zkMaJeuuhbrfv7@A2kW(Rv~h`>%&s)-5G^D_V66y-(-x~3l?)@WE*aJUAu&u~i$tkb z!0EcJ^LT-P%~$IXnOY98wx?WPl)zLFa}t z7P%lS*Q+2kvdC3@bw)L0sPNR3Xr79HzIztalzYf0gQ+eL=K-=$sZ-XQ$mA--cx z$)?zK1%>wKz`KsI#Z!ai={)D@WA@|`V_DEdE*|$M!B02C85i$$9AlaNqO3ysJG)eR!$c|9 zwK4MkaeXBo2Qh-i-t51bc9OJ*J_8@@2_MTU&i+-r9urc+b+5`UD=HXB=l0*d5_tQL zYt7-aHk~({uMLFJU7RE99&fun-o>;b>?F6O(PMG1kC?<43-U3M)1p_#Eur#Op(WI%DKlSjfiKSv9|J5EPYg|=ZmlP zol3!h*Et2Z3_&|`s44lPGX$$UK7|&gqroBTD(v$1c!S4Q8!i`W+dk2+|Edd5mN@9e z*pV87@Krx??84-^@z1a!N7jycV)Z@PveFesXv(rYuvpSV!s**|uao;ZRwt#_F5$c! zZzuMX2%O3KePAz1>eIav+cXSJ7N391!kuld4*(?6iu!v$^k6NIJT@LGvVG~NelvO? zf5zdPOBJVwQ<}Oi^Dxnq-&K-2q*-jMmlFu=DjX4TxpTpaG00N z?8Hs`2L-j-VNI`$Rc8~D3A1w@Jv)6}Eb6{=?F}vqEh;Jv9&;}bROH64H8;86DEH|5 ztEIa7d%4-H7h80DuM`f);-;sWUQm!Dv*o7dI#qMGI?(cX$wZ1$Ri zLsKtJS8aXhPK4+`Osvd9k~8tTJHmqU?%9e}ZX+A&e7WT7?;holBP0xIcnhb+_I2<> m|BlOqjkMvpn-O#Sur?T%`gMoGVjdhb|B3kANU$L|KIb3LvZMF_ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb3.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb3.png new file mode 100644 index 0000000000000000000000000000000000000000..d6eaa191697853b8ff55c9f3fa40567cde707e84 GIT binary patch literal 1788 zcmaJ?X;c$e6rQlu2x3_RrP9`MkOJ0h14Ia6Pgo*BBvH|VCm|V3fXRepAOSfL#9gTZ zMT>Xhv4UtY1XClR7tMnzWiXi_i$!C4da+o{r69~;!gL04v#3l@wik;HF9Y9S5aCTN zOJv7zL*M%%EI&w&<0>|tuGMO3S`Qkg-au#i`1lw#V3=qw6FpI+MmQZfP1Q5d1$BMQ6|&JO=p? z?|%wwL>VfC9)oDGG_{l{T%xnlm5LprMkF|<7GYS*bQYuK7>;S=mr3Z)Fw zYTT#r0s%Whslg>mDH6f;g9rthLLp;&@`Am+c?=&on8#u=dEP!;ACJ%w)-rD{5B6Bb z3Z3S1F=-l#DDi2o>;pGwR<5xXP!-{si>MXph%8i%q2Sb(*^1d?SvITQd#-HuSiEQD z(urW`#=`!q(9=sq_ZX)$ZA%z4jgKgaZdVg+9i}|Inm8@02yT!_cmLVfjo6()ivOg% zD9|OW+RZkl%66q|^=@Ra>2@yP-Y$n^X*X^;DzqjS7Z;S|!mcT+g0_%=L zGgMz@x9~Vm|5n_xplHS5ccaxJy+daO>9NpvvA@RrWr5@RO=zMvCEaOGxO3Jx+}(CQ zEGxUs_hvXpd4&kSTVbygRb^ugAR5sa37L4)-6 zGds_niV<7=k>^!HA?q|iPHVmpIkYy|-fr^O;nKxBZRg}XT>U^J@r|lkH}tyhwPSr7 zyYljQ?wQ>HS~LKx<@CHApI?#McZFgwLGO34NSFF9_s2)tkS10dI@ZCV0RK}x8?6> zvqp|tAl1NNc}Ybd-KB}wS}iF9DtM;7`9Ru2Q`!CVu?RiL=F$EK`^Kn~m3#WhGSehLeTqg|$(8ukpBgf3))X=aOdcj{WX=jZINh z@}%(Mk<-A9TTF7~d=BZ21Nqi*C~(lZyfO(sO@205THkn&QvU5H2K{p9D=mEYm-#mi zM-pF$a7%`nFTBO@qIPUo8kaD|BA0T`rKZ2)x%&0l{G{dP)`PVHxfjkQov%E3^ptH? zoYj(-WpfLDA6Os`D9E_pKl)2;o!fAI>9b_bsM+!8=7$G=+`gk-nq6j{qjl_|lsT$~ zrNLSDkJh~!970dD%Nx|koQAfKo{1kwn6wcCoepsg_p+8i#{W?SFN#|eEZ+1Fy-BcP literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb30.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb30.png new file mode 100644 index 0000000000000000000000000000000000000000..a71ed1d0820f4d9d6db473988f86491c27e823fd GIT binary patch literal 1780 zcmaJ?c~BE~7)>Aw5l|56cpxszAy~;tLf9b)NjRcJ5u(r{4mlPGknEaWB%llnC}

=_o~F>llt4A2gaN5mkpM@)3U&Ib zUtvEA#T?Ygqw#227^Fh942229FlbSdO`-TLFrW%mGK>RCI6_Sgy)QR{5&I1^$4a0U`yoFs=X$+7ulI8HC`7E=0~v+e{D`f#AtP z@KaLJvT#6*=wX1z;CiW8Y&O8>GuYldKA$}w;IP;nCX2lJUTklO$A>sRz~}{%(e&zg zC_)lE8jD;B!9*NKAto~|Esc@JWgz+lCfnE7*QCMWc##M%EM12y3|>0SWlTW=V=BD{ z#WjcyFexgONGdJ_$xJ_$phZ8+>afvcA`gsdP@qgUgJmjd3@DTRKUAyzjK=T?_)EV3 zDU8X}QJ5J4V@RrAMK&(p#S{vK#ClkPBYHW4q>P>z<}pqL}#1^ICJTyIgZz+{>g-KusU%9wA#$jn)3uw?8sm^)3#4&Os{WuQI6&gBgvt?jf1Pub%+&4$=b4ehZ< zPr(VlmG}p(Rwg`sP=3EWw!&2^x?J4yRR^zQYH@VVqJy_eLs!+-@aP6>L0!uL=UQ3O zU6FBSN2{_6bL7MpPDL$_eQz9e912VDq|UB#XHqII*}q$JPN*zdyXWd^tNewm6)MulHZ>-*Rg-&N4K^(-f@(JE*g zrEgA~s{=H{IWD(jn~goq+RmPpvXGb(9TH}Q>H;f>e1f4gYrHa1YnI2q{=u*FnZP@k zsNoV4pE}x4rIrZ2c*Wl>RI_#b4Ld3=h$q#Jvr6W3W89w?(8^O>lCt1?wI`NMGyA$} z_BS`^*#XPV2b~J(`vgVyjPf4jP`8`Z@z$Fy@xA=wJ*^M#zU~k0jK-G~zRk{_Of?VV z1uXT?9C}rHC4O7(VaUqbu&*%iX~Furv%(zAh7~mrdaIlXd+4eV_zt`xMO({=_uxyw z9Y}OEYdLV*0@%K{muB7OWER-9uoZXNddI;@o@FP`+^@KOcO6l^tI}4w2 z;#9Z(C&MX6k84jJ85S04+NJulsr$vovb39j799hZ6sC$gXy|idXb&eQ$sWLGOThZT zVBO0s9dyBUR%mLJbDW$ZjV-6j*Yv$3y0en|nz+99We;ttTVr<$99CAm zpcc{3_r8A9aC(_>*`u1FwiOw<+xIK68xb4Jue}b+pV>e8hk`0h`4PK_9Xzt5hWE(n r5p}Km{cFdyc_Cq^c0suxVhAdQFSE{hTT<|?=|3b5S}ds*#pV11Vo0v# literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb35.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb35.png new file mode 100644 index 0000000000000000000000000000000000000000..9168c2c17e90199b581456fa96547de50b061ca9 GIT binary patch literal 1766 zcmaJ?Yfuws6iq^a0Hs6`1eJ6NjIXo5rxDG&`^Zo|;c8Xd;Q;ewW$b#g^Ii~=ces#?pZ_WyW}3aFKQYCKoM zl;}d>G=D|AxuC6qjJEk$xoEEWKQbk-s+2(lIeY$l7%U}85&V=aQXAjA#;#xE)sO|Miz zQeoJ5ENsQ6rlF_~VlYf56Wzq2Bl=VZi^t>HG}vq!hM*a;w5Z%n(;ECH6ojxrp;zlr zHKGMghVf&<4vb-z>liFL(^k?1P$Kz%s75o1HlR}YUB3S* zY>;K?V1^VnAV$3cYn;l@7D@+&=wUgE=w%3!F>#8~X$XoK(hwaG5(@$!#;dhT#ANtr z3@?#DBCP?HYZb6a$fsfobhTOufh-=E!v$IFWuXBqR%l=#FO(?|^1?V^pfG^P5lnD} zh{C9Wwde#_`Hst;l54YqMu$Zf!g}=@SQ(~AG{9KNkb25oxM5T3jdPV#=fa$l%fOOh z*c$tnm&>{Nto(Z%_IB>CZN;!<}|$rfo~F=%|UvtU2oHWVYAKw>|v$bTZWK zf^QXETL?Dfb1II+5GdJm{Fn{-ii+=cSSc|VeVd}PE^cQAQ9XU53O2Xj@~IeHduIcs z|BJPIO_$>G`+=C7uXY!&aLZtBK>r@h4Y`1LI%nRos~YgwI@+are5GD?hMiLHvOf|x zv<2KB=I=+$a6fY!6f}}q_=|N!B9NHtbUOu1a~~kg6^etKGTP=Pry2TsvdbQ~dEx8g zaCuslla4lR2^koi??@td0kd-UW>?>O`D^a+YZ--=_va=gyIp^^VEb7pG1T|C;NJP1 zD3Y+2(l|6y{nNtT;^7axjy>$TSGEsrr#H;J7WXFZMdS)p{Pk-)J0F6>9*dRTAQ@dp zAgpFotoHC4r~w`3Hn;3f5_=H-JnmUjUFvIfhx+)yRcVVz*H&b`lhGX_4!!{q^UKaU z0^v7|1cxNI>`J45nuUB|{b&7avx-!!B)u!0@x}!q>BGkMIRl*_Xfi*>b#*H)reRiB{ z4=L9t(&|P;`Hr8~&BI;39A0at94i))hphnv*ZVD`z<7Jh@`z0aPiRC+dTHOYFTH@) z)%qU3z5{sj&5@@d>F}k>pwjll;@@u`ZNiAWl_VxX^oL<)*DMe)+t53A7 zS$ytLVZ69t4&u{GX8xx6em%9iIaX0ZeuZZn8%GYc?D~aBN^+dG1#BXDEe>ux<%%yE zvTi%9O7jjZd^5c6m~V2uH`{gPEFM(nob6s~ZXzwvt2Tr9je@8X3CrV)<`+j5x^@vu ztBBvGdX?87Av3G$%4=k}n}x4kn(jVYz6)+>j!f2bE5l6B|MFN>oM_MUf3@pMZ@Qrv z2>8J}X7D7>Vl|bkGOtUO;-1-ACD9vAd%9;xaz|S2{l)Rz#Muq}2DcYG7shSXaDw3a gzJSxWM~Pmzo-H%7dSeRS*#11C&?sTevgA$w02;)dxc~qF literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb4.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb4.png new file mode 100644 index 0000000000000000000000000000000000000000..7e2d33b9ba6ba786e8f5da28b606ffa5e85d8a2d GIT binary patch literal 1786 zcmaJ?c~BE~7)^qPLy-)q16bQ73MfZH5(s29l8{8mXn=-P4n+yc3JW9~vzrnS+n_*I zM6s2TdLS?=R0XYoC^AAp42K*}3kZV66SW>7R;*_?6tsVo?(FXGnD^fIeZTMR?2gdj zKx->UD*}OFEe;Y&@sVeGEXer#1ia}cJ~&{a2rLZQh$YLl5P`2mVj)1RlE*<(NUluT z)B-Ih5X`8sECP#=tOgZ`iY7Ndi$)$$- zNW3H(0Td4hrD~zD)L@w+HBrG)QvFu|%k>~Gpn@6=A=)@PgTvvNG?+|J9N~$ks4=F@ zLJMm!7*PWzMR_cu!?;vD(|<}(X+FxT(aB@N4~(vtYv>G`m#L&FphWWjP?hQ<8pWj0 zr+oiY7?q`HAi5Mn5uH|nH*Vu1Qz#86&_Z$y(aI1cY3dY1;}Hx&;}H!Y2x9|F!eO-% zNk*4W;3X1JtVS`pS^?WgJC7e_T%uq`Mw-xfQZdti2MTlyoDl$FGC~}2KWit zK2uyFqR^=zH8#ane&X_{<(jOZ(%_MWkQV+LQm)h@Dqx~y5S~64-)Z$GxytEt@tc-Q z$CII(8vCzCPi^7uF-C7CVTQ94WJ(AK|~s4L979ub-UikvoAmb1f~{LKj&HEo9U2GG|LYSqtUf zO1V%B-n1g_;dNNESLC55POc$E0VVV8kF+lBjtt^$zdJHV>AU$h-0ROL-!hKh1<>=W zbnk(h4n@xS;gr6{H$WY)xOUXIA?$$Dk zYfz_EgfSaQKzeYL#dZG6*g$jQ!feY2GG~C$cP`(cO4!CE?&0@%xWwf27p~?R?+$d5 z1jgNL(&}~sY4C;ZP`^+gXc)TfI)_qUmEJp>OX%}BanZBEr3wP-g3i-|`xN6JqjpD8Q%k;0KQ>{7o2gBrB z3d;g`H;y|3*}j3Jqp^qgar4hc7PdR87I-;yrd^9^rHt4lwy$Y)B-s~*4Vry_-SN$_ zh6~=r#%msx`G!)hMa1q$pT}^DYwWtpH(Lnv-1&n!l%L!ix{MW(kLMjN&!dD^vMST( zFDs+T&5{FREIh zU|r5XndKH~&|Mplj)zl+YLq>i-G(B8-Oxg!?uc2ryBz_(XV+TB>Q1oD0Ecpq{#o;# z0gVLK{j%7vr0CbH8KFOneLzKLQ+gjd@v0VN{H56EZ|VOV3s@V+A`8pU`5>0BSx1skdcB%Co}55$em?A@L_Ae z^Z=p!kBAxN)>P8#Ih3x`0lX*N!jhBrQ8U-q9s1@{H>E3j_CvBbXZAw(%=(Z@eRK1g z7*m@SxvaIPtV#a<5plnfA=0VV8N1@_Giur>U2Xf1mMaN;1#jG&Z$RzbkhH@;@`lx+ z=}*@+*RreUJYUdP9UZ*>;ARVEbjS9cr`z`~s12NXFguG{1co%F1iT-VpIwr=?drF* zS6PqT;u2e`jpO`FMNJ()!&ydI^*iRaci{#i;g+{u4k}MgH~o#oqF`ZpK+M*^0nHJ( AumAu6 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb40.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb40.png new file mode 100644 index 0000000000000000000000000000000000000000..5b9ef7ba52f4ed674998327f3ddca737a0124a8f GIT binary patch literal 1768 zcmaJ?eKb^g7#>3zGK_3r*j!ii!F*JHsnZqB9%%h zi;a$tM4hd+B&|g4&Ys#(*=1`_T6>UEyDG`vv1tETd(XZ1_i>)*dEfWU#`I)!I7|U`WXSLlI;at--?K5BdJ5 zutuD&g6ZL~22E8<@y5lw7(=Nbp&FK8s9KDo$up-ImVjcYCIM9e!UztqDoUZ0p<2!A zDSSu>6r|K(5~UOl68VC-0!^WiL0$n24pZbUVhQ}cm`s0fE`ucy2))@1mX|l1<>)=OUbwOUIL; z8yowtM$c^F?lDehZHq5vjSnkvx2thm9}<>Z;a^K^kccnV^$f)rl${Jp+QHs)Jb&V% z{uXj1++`PeHg??X>T^o0_lx;Hmc;V)rgGZV5q0ftldaiDo?ZCaEu|Pcxe#nmbJV`@ zo;Y=P%`LZMZ&-e%-fr8D9HD)KuLo2u!IzL$=VFs1px7j^x5nAIW4h zzrcgjTP zSsK;XWHU-$QD;9naJ|*nVc+DN@%!udW$zFUg)xX8mPvE&t^GAhl<>c6bOa$w;m1ypU0ml-T5yhmrCa`6joEf0R3A z>3jB6+Y@a^6jGjJd-IT_hVmRGy&6v-J<18qv?)`3$+ZYLW0800)ShB}Ln;Z_kZHp! zXc#mT?Xbye_%rYh=2EoZ{j;SLl|>os%B0n1od&Bj2it;cH$~5jk=HmEE*#^P=y?2W zdSb4aV#c>5iQg|6tE>`~|76vF)7&S#)y2Ss7)(Y6v5z%&NzeY#B&2`-IER zr(wh<*RnzG&Yt6hRqjq5zhyQl-S|t*o3g*+-xs!gyXH=eU}13dfYnB4Ps%TTcUQz< zrOSxe6@G`4yz6sH_*huF{trdt?aWMfP0Nk)lonCDX@KL!33P4in*~J`CEs7^iaS1h zdDrPqcPOafVgW{4`ZBGj&$jzXbz>;$9f6zHGO_;{HQ$1A*%~Avg|>_|y*|Z(2#uJy zMC>lFG#h{Q-!DNCQ4voo<3MUZZsLg;Wt>FeVct}AEqiU1R zi0Kdm=u}jy5HrT35}AHHg5EeRYd}Ahi6|J|sx;D>G=}p?LqM7A|Dk&QFdD_=@IU$f zr!cCp8DY8{MiH|~O*Aeu*cr+QiA=B(Lre+;Su#|`ge(L@&@99Vijp|sj8vULgILg+ zAMi36BsHLz(x8T=Vjh)Hpy_lPD2fryjuweySuqk0lPQVfazrAoh#AF@%wn@RQLG`Z z7*U(`umKz5YKFNI#)w>}74$|TvKTh$zJ)chCPWW@I5MOgIT!JWdY`zO5pxksM�o zWa!Su{;SbLTZDU@(_z~Zi(%u#2Ey$o!q)dt)J%LWMyWVjVeNXH-ePDMdM|vx)xGk5 zoNpiQmF&HJO!Aignz?Ob5S&CaM#tP;^Lp$#fLy_M(bDRd#?>bG0e07}{R7qY&D+eH zsuzFc)_c|czT)bkCh6nmWo4b6PrE4UO&fd``@fnTMN)~PDmeYmJhiXqC$4J5(SjiQ zv(heW2>F&vS-|6E4H4NtrH~BdxnV~By-_vuW(e2acaUp~-uGTDa7+j&Jofe#-Ypod7Dp<~&ow?4j@!+pBrjR7B#y9rN>Kr&1zPfT# zWq(G~Xnasql%Oi|Bc1-C{^s?m!W$~mS+g5uRl47p}hknX;rkbXAVaof;s2&lCs*Zg?z=z&vUbIZsYgCUz9(4NCIeUWR3_l-vq^ zzP*@S(llwwk^RDHyIl(N%HJjXEtKZ(Qf=#T&0BltyDjI6Qo8@*l^(QqZqW9?Z?@`h zGkuSa!xXL$Z?Zj_?)7y)ol|)CTG7mOH>m2Q-er2boeu3{kq7t9uUmdTkTl_Nl7M`z zBk=u!YxWbsz00<&Y9O)S=XlVIVB92@`R{H2(`Q}w6<71D7|p`Z*6_<3*Qd(Qrci~Q zm)fBDRj1AtnjPk8CFD`2ak}l4Cb7fTveonY{Akvmki2H3V(QoC12Gi=)K-tMMK(3Q zvvBj~7H@S`;9&*ndVKYPJIAKsk_$)flmfwP-SHgKZoYd)haYh1lELpR2lYDl4a9F^h*I&+bd>(~? zgKImAFOiL+MyheS_oz0DaMg-Qq`)a8-h!fv7MKx;4YwufE`RZm67Y|jOsLh%o&wj4R_~L%~r0M<=ZPVbJ zd~HVxcTp&xw*nZ<_X}-2$Sq6g9($zpv4HFegcW;l>Pd{WJO4*gNxb-I%;NmN0p2~g AOaK4? literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/keg_lb6.png b/src/main/resources/assets/bbs_mod/textures/item/keg_lb6.png new file mode 100644 index 0000000000000000000000000000000000000000..196085e60f9e8986794c1588c2a57429f5df632b GIT binary patch literal 1795 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 K@lX23X8i@00lyUh literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/lme_amber.png b/src/main/resources/assets/bbs_mod/textures/item/lme_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..1da7d6fc711088b6c8735c3cb80cbd3798055dbc GIT binary patch literal 3102 zcmaJ@c|25mA0DHS<;wa>mT9bsF~b;4_8Bo{Y%>^288gESvzZy|tL&mA%Z)BsQmN#2 zD_fC$DM=E_T3nq`EpgNQoa^k2&6!OLE#ZW5ezz$i;S=Yf7L|_=3Co_V9-|xFW3_Nw^IbH zD+tBnP(UUSV*?Tt1_L1w5E$G9fq?0QjG!qal7AMdUW^Qi2rD0@bAV3&!Bbhv6gaMPQ@m&E;;gUEs zHjl<)g0>Wi{;W`*C0O9;-ytyAKV+HQZ)p-F%rJt;HiSW-TOoZ1VzK`p%3%CJb9wHR zfBgNQ!d!eLn_}or;j%(GBthW!v0sGzi$b;XKVVSZ3T-TjZa|;x}76v>pL%+9smGhSs1h}K4N&* z=Q#cFfP(eHNKcrGPMH6G48KY=ro=5{qc=+LHL-qYm7w#$2; zZ5#fgoc2*2;a2HfkO3n3n$l#G?0ORwt$?(g-rJ>8n91nD^o{k6hWp&2f-)>BzoSQ; zX#RGfuA!%)ekQzUqkubKkB8(Y_)pE%6xDg^9JdFD+>Hp4CFGcw@$UsHb?kY6U+a)t zzv{duK4GXO zZ|q_TbqeOvhu?O(E1)9&)k2@L^6U<8&o;7=s>8I3S$3O>`?Yd8zD%?-qpS=gcHwYV z79O0L?4&J~SK9t`R!cYT{4W4KtlCkd$ji?L-^6|SvS7bFU;jrao$l03$wX6v-G<;+ z6#Y=bu_pJ^$6Q1cWFqOa2m1zYTs(`rP8WtnuFtfEOHp^Rma50Q%@Dt_MA#8bX6(<+RRJ(-D(}1qDew zByL=OJD+y6PyXNwkB7g#1wID&&G)mIE2F8?aA<|1gu{|W;4N#Ri^XQqS6hYT-=lwN z_FmPD3Dl7l0e!Z+c(?%Vs(8&w8xg*=f-{va&igagKC;%~(3d}jMbp!w6hGQ%d%5>g zN5^V9fpLg^Jd;yhU*@mGBujAIX_N2wYoUZnTCjo)3I+a}6QlVzq2{ zy~EoGkYdsMo4Dfo2J=qNb%onz+abBTtC@43TZ^sFk=&C_-VQS&AUo+)4W zpLG;ZsqXhkI~=*xUPRBOg!%<&Z(wb2`LkQa9HS(GdpbGQOb*ANNTv3hSXoKcpHNHx zRO{8hFzzTWJI{PGSFg?$3Wood7W76O#`G&uQat@ohfX4)!n$(OZ@+$BTErY3UTgGB~_G@V5vcm|se15O`e65?{0m0&IvoyWTRN}_wJ}KPXyx*3!iw!Gk>dely z-5C+6oej&hX_v?J*teSbBFA0{4c06i-h4Z|zG_LS0z6*ZKe+^VRpYDftC97_ z6#Wq`AOAGTZLs?Hu2)0eueD-xPZ6%^N<>-BjKrI58z ze-<5oO&suE#{!9?TPGw0R^qN6o!&TMU5iU5`4=`;= zJZsc{38D0yYx+Rwbq0vhA*-8Fe4R7((AH$9SQGz`&D2r3lAP3SeFJ2nQdYUXzT@oT zB2;C6n4~3|yh~ywD|7t)(FxH{bqg`pnLWu8~X}Q8@%4$tbZpeiS1g;R9FW3?j}Ug>m=a{BF9q?U3N=# zucS>4Lm#QXJnf|x+d5L<+T-#1*Y!nH>Pqn4mi!V){QI=~;`f_;az9Qkg-Q_m?mQ9V z1In|QnF~?Q=zK! z!~v$R%W`xoPhW40PjUc|{glkz!vJ(d*VzlsYeSpK#*0(?CR##28QnbLbf&;rMD1Ng zTvxlry>};04GqlAGepkhZp1 gd>6E~Rs;|RNC#*b>g!B&ZvC-i?48j!?fl~Z1Gq#`)c^nh literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/lme_dark.png b/src/main/resources/assets/bbs_mod/textures/item/lme_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..8b98d14ec028cbf6d7ee5e03b56ee18ba10e3c28 GIT binary patch literal 3054 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/lme_extralight.png b/src/main/resources/assets/bbs_mod/textures/item/lme_extralight.png new file mode 100644 index 0000000000000000000000000000000000000000..5e6b4291750eda5a092dda5e9f2930c1d7cd2b15 GIT binary patch literal 3456 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/lme_light.png b/src/main/resources/assets/bbs_mod/textures/item/lme_light.png new file mode 100644 index 0000000000000000000000000000000000000000..b28a6ec86a9939adeaa77867d0d4e0fbc67eb7a5 GIT binary patch literal 3300 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 WV!yI&BHM2Mcc9I!k)@{C@c#ht!NhU^ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/lme_munich.png b/src/main/resources/assets/bbs_mod/textures/item/lme_munich.png new file mode 100644 index 0000000000000000000000000000000000000000..2f87a1f27746b63d7d8e7d442c759249df4c3e42 GIT binary patch literal 3239 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 TY<_$=sI>BQ^>bP0l+XkK3lGm= literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/malt_amber.png b/src/main/resources/assets/bbs_mod/textures/item/malt_amber.png new file mode 100644 index 0000000000000000000000000000000000000000..ad98b45094ec9aa1967e29aa9a387bf1a7e0d728 GIT binary patch literal 1203 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*9U+n3Xa^B1$5BeXNr6bM+EIYV;~{3xK*A7;Nk-3KEmEQ%e+* zQqwc@Y?a>c-mj#PnPRIHZt82`Ti~3Uk?B!Ylp0*+7m{3+ootz+WN)WnQ(*-(AUCxn zQK2F?C$HG5!d3}vt`(3C64qBz04piUwpD^SD#ABF!8yMuRl!uxSU1_g&``n5OwZ87 z)XdCKN5ROz&`93^h|F{iO{`4Ktc=VRpg;*|TTx1yRgjAt)Gi>;Rw<*Tq`*pFzr4I$ zuiRKKzbIYb(9+TpWQLKEE>MMTab;dfVufyAu`f(~1RD^r68eAMwS&*t9 zlvv ztM~P_^2{qPNz6-5^>ndS0-B(gnVDkcv4~Pj*wm=R%;iu*SQ+p9GS-*Nv?#;l!sP5_F7*cU- zO0c&Vv!lRTzK!agD-s^*37lXo>fYIq{(&v>Rp6dZ_k!tbL}N5qBs)AiF8cn?de$rA zTyDqP|MK0+@UL;D+gk*l%qUbB;?0p&x>wB^?3|~TwRF|h#@+D^jk~^UJj$69%zbWW z#?$->;WOeHW%WOGer0_Y-*Yj=liT#?q}Qz1(tp%Re7YxBQtNte)2>xN7}t3QwPrm` z5dN*8AGmjcsBgvN)%R9(W$BqhNh{a~u0zai`P z4@(a^ADBGn<9t=O_l;ihlRq5V+v9RnLc(;)G%h(Kajp|@J*WPfc{O%%(z(;7M#m%6 zW*q9A5HMp^SXR~)v1e_2tQ-H#PhdLJP(JUgr?c*pXRS{=(`QT7Gx0ER9nX?xf9>fG PDn>kA{an^LB{Ts5F|wj0 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/malt_dark.png b/src/main/resources/assets/bbs_mod/textures/item/malt_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..5a82ceee0e95ec3abd83adb97f92c8a7bef11264 GIT binary patch literal 1148 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*9U+n3Xa^B1$5BeXNr6bM+EIYV;~{3xK*A7;Nk-3KEmEQ%e+* zQqwc@Y?a>c-mj#PnPRIHZt82`Ti~3Uk?B!Ylp0*+7m{3+ootz+WN)WnQ(*-(AUCxn zQK2F?C$HG5!d3}vt`(3C64qBz04piUwpD^SD#ABF!8yMuRl!uxSU1_g&``n5OwZ87 z)XdCKN5ROz&`93^h|F{iO{`4Ktc=VRpg;*|TTx1yRgjAt)Gi>;Rw<*Tq`*pFzr4I$ zuiRKKzbIYb(9+TpWQLKEE>MMTab;dfVufyAu`f(~1RD^r68eAMwS&*t9 zlvv ztM~P_^2{qPNz6-5^>ndS0-B(gnVDkc>}qCe?&fM@v4~Pj*wm=R%;iu*SQ+p9GSwDDlOc9tRK6tt~hE&{| z5`2-X$wA=G>5vm0`wmQ>SH=1JKmW_U{2fgiXRhR>nz8LPj*fU|Q@wZ?q@BR zBs|}(UBFted$zgpV0Q@PoPdpQO|RQ^PrT%K@FI8R!ibgn%4x479yN(RzJEg~V)eCxwUy7CiODmvF*I^UPf2+wavD?~c)I$z JtaD0e0sym4h~WSL literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/malt_munich.png b/src/main/resources/assets/bbs_mod/textures/item/malt_munich.png new file mode 100644 index 0000000000000000000000000000000000000000..9e9209050bd06280e003342f002c5be2c32a4c00 GIT binary patch literal 1251 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`k|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*9U+n3Xa^B1$5BeXNr6bM+EIYV;~{3xK*A7;Nk-3KEmEQ%e+* zQqwc@Y?a>c-mj#PnPRIHZt82`Ti~3Uk?B!Ylp0*+7m{3+ootz+WN)WnQ(*-(AUCxn zQK2F?C$HG5!d3}vt`(3C64qBz04piUwpD^SD#ABF!8yMuRl!uxSU1_g&``n5OwZ87 z)XdCKN5ROz&`93^h|F{iO{`4Ktc=VRpg;*|TTx1yRgjAt)Gi>;Rw<*Tq`*pFzr4I$ zuiRKKzbIYb(9+TpWQLKEE>MMTab;dfVufyAu`f(~1RD^r68eAMwS&*t9 zlvv ztM~P_^2{qPNz6-5^>ndS0-B(gnVDi`X>4L@Y;JCBv4~Pj*wm=R%;iu*SQ+p9GSqsT8>R@1C4EJ<#45_%) zGkK#vi=)V~{en`3vm-VIE)YuZ^nV6R)@(W_m-D_5+H^%V(;>g@3FIPz3y zo8Ux=`?qIqoqW3Iwx^o4_2;_xd*APs%vc+kF2fLacw*v%RQ6r7Lq04}R+ZFPy62)< zh295u`5%86_r0B${k$~5?OfD>V74==2cGB^Z00;u@b`wX*(0474@}y`D$JH$UD2q- zwJ%-mvY*;PsUy0~-;0G~H=W?rpCGYWva4mGYs@WXxor)*=M{ePQrDJ!u=a0%OVIw5 zLdUzEw&x;m9X+zem5mg-X)mHA)n^$?1D z!1jFSUEv6anb|Ss>{%fx1zXpDd24oCc;+c-mj#PnPRIHZt82`Ti~3Uk?B!Ylp0*+7m{3+ootz+WN)WnQ(*-(AUCxn zQK2F?C$HG5!d3}vt`(3C64qBz04piUwpD^SD#ABF!8yMuRl!uxSU1_g&``n5OwZ87 z)XdCKN5ROz&`93^h|F{iO{`4Ktc=VRpg;*|TTx1yRgjAt)Gi>;Rw<*Tq`*pFzr4I$ zuiRKKzbIYb(9+TpWQLKEE>MMTab;dfVufyAu`f(~1RD^r68eAMwS&*t9 zlvv ztM~P_^2{qPNz6-5^>ndS0-B(gnVDkc=HhH<;AmoEgH)9aF-T$-DjR|3v4~Pj*wm=R%;iu*SQ+p9GSqG=>I?lkr*yict7*cU7 z>Bs;7_RNM4vNmvpwfeM}{QIB(=l_4lt^arMB(dylm^e{zb?&X~`vy%W`|ZDWJv@9` zp6CAi&kaWdt~~t2bmN)rqyLUw4s8uTzI$05$eAE^# z+Ig5B$?!z~mNPgI!@el8K07>c+NGCQd;*H*(n=^VHbf+Wu>pg=rWzvO2UKSR|NqAda)cYr(V2#`6#4x|V6p+wxC7 z$4Dc}A#m%x-rx3T)D|(EV3?3LK~118MA>l{;|VE`OFS$LjBE_b8edjzoPA3TR7!ce L`njxgN@xNA#!Ak} literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/malt_seeds.png b/src/main/resources/assets/bbs_mod/textures/item/malt_seeds.png new file mode 100644 index 0000000000000000000000000000000000000000..7a7b3135fdba00dedc47826aa15780633f172346 GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP*5S+ zBgmJ5p-Pp3p`n?9;pcxK{gQ#9)PRBERRRNp)eHs(@%%~gN8NyGD?MEtLn>}1{rLai zo>_H9;tWX!c6G^#7CaG0KS~v>nkBxQ(WC8wX~IMSWj@`~lDr44$rjF6*2UngGw?QLq32 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb1.png b/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb1.png new file mode 100644 index 0000000000000000000000000000000000000000..196085e60f9e8986794c1588c2a57429f5df632b GIT binary patch literal 1795 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 K@lX23X8i@00lyUh literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb3.png b/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb3.png new file mode 100644 index 0000000000000000000000000000000000000000..28420c4ee80a3d07ee1eb57654561c214561c701 GIT binary patch literal 1856 zcmbVNX;2eq7)~H+0!89kM5If?C7NRs5=bOKE+imI5lWO&*(3{WA=!{DBv21vka&xV zB7$5Bj#x$UYNZGD7{Ll2C|FcfVg)G!UgOc0(v6Dk568}QXLrBvd-r{w_nuuFy>Pyh zgR299KyXro%VO{~)b^0aM zdMTWWgy$IG#W@RO)j4Tufrb_m3p0S0(XE+rDB*~$YPmHCZ>tYL=7n{P#_T4I5->zuE8*7>oCa7&>87t3^LfLHXwQo zL3MzQ5mKRP#)H!xSM0&yrz!@J>u zb@;>>@X;8YLSBncoL(Ul$C|qb6GG6A(5b6ZEJc#l^tj?YA|;N7(FT;AEAyGl$>XW^ z_Vc)vc6reu_T0!xj=oUMF-cMF=+(W*ptZDoj=H_?=_}Wv_7ztb?YP~YJ>2)AE5*Kc zYNKxv?`+yx7qQb%J0BkNjww$|Q`or!n?B+Mt*6&nS5x&fkE9)bOvx%ew3MO@O;1Q# zp0BMldJvt8w(VP^`@MN&rei`<(Q<*Cwl1q_L0^fyZ&J@JpMt%n2KsZVxbtQF?RjP1 zE~EFYCm9nd6Xs4WM4VgJ`DBb(yk}N+dRey@%bkBUokH?oQi`rRONV+W{DRmzs9}!#dmAIom5b4 zXx%V+{sq~I9?{Dn+PUlKxAw80p16;;3LgK^zsup$gl<35G3@~H>XY85n@E>T2x8DnK1DNpZQXen zn>aA#aQ$R`59E6-u`stMgt4DKEi~)F%FX8T!GcfkBZ;2Zzi}oVOZhpu)Jr9-oZdxwg<7nZnknqj@9$DN;@Ug6F58R(!OiKv m-ta#ot-BdkS~il9OC)6c=4`2)uG(VzrzzwMWrrk5`F{h75WkWD literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb4.png b/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb4.png new file mode 100644 index 0000000000000000000000000000000000000000..8eb133a8fda451bb34b2ec3b60a698d812a5eeae GIT binary patch literal 1783 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 Hi1dE|*;}^? literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb6.png b/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb6.png new file mode 100644 index 0000000000000000000000000000000000000000..2b7ae271b2068554b4a0f56058075b5dbc933eef GIT binary patch literal 1782 zcmaJ?eM}Q)9B%onAX>%2iqjmmSQTh#p@kMY5U$V)MJT03>y*+SP@uiqUZsE`6#<1! zm}CqI@*z5cx-q8KC?tTH1JnRI6b8trpkU?~b7-d1T@i49j9u>TeSdGB=lOkJt{^Hh z%)!pZ4uios@OhvRU4zUI&IWy-Q|=!@7XreKLt@}WBweP3FxwSy0tE0?vLr|d$rKs; zZ$JSUj3rSiibLWA5o|fEqR7k`ib178*%(Yfpg|*(r$Pvj03|8a9OAR)RwAHOaEKCy zz)PSBfs&QHOf3|X87Y!yrpj3gV&LaMfPsw)s31fJ7*uI$9oxVm&g-(#z4@3*1m+<~ zDu?(Xs5n6s5CUrAlqS2{d=*{$``LG#GHr*FkxQM7X zts;>v1Va~mp%#ajj362|m71QOPD%Hsz}h4#jm2V_HRyCt6yd4MP$M#fr&_mZQ2~T> za;;K>C}A~VR+J^cdW1tnBmIzqO0y)Z)-99?Eg01x(@<#?FLO$ZK!M=@p(@o9T89Xs zkMaJeuuhbrfv7@A2kW(Rv~h`>%&s)-5G^D_V66y-(-x~3l?)@WE*aJUAu&u~i$tkb z!0EcJ^LT-P%~$IXnOY98wx?WPl)zLFa}t z7P%lS*Q+2kvdC3@bw)L0sPNR3Xr79HzIztalzYf0gQ+eL=K-=$sZ-XQ$mA--cx z$)?zK1%>wKz`KsI#Z!ai={)D@WA@|`V_DEdE*|$M!B02C85i$$9AlaNqO3ysJG)eR!$c|9 zwK4MkaeXBo2Qh-i-t51bc9OJ*J_8@@2_MTU&i+-r9urc+b+5`UD=HXB=l0*d5_tQL zYt7-aHk~({uMLFJU7RE99&fun-o>;b>?F6O(PMG1kC?<43-U3M)1p_#Eur#Op(WI%DKlSjfiKSv9|J5EPYg|=ZmlP zol3!h*Et2Z3_&|`s44lPGX$$UK7|&gqroBTD(v$1c!S4Q8!i`W+dk2+|Edd5mN@9e z*pV87@Krx??84-^@z1a!N7jycV)Z@PveFesXv(rYuvpSV!s**|uao;ZRwt#_F5$c! zZzuMX2%O3KePAz1>eIav+cXSJ7N391!kuld4*(?6iu!v$^k6NIJT@LGvVG~NelvO? zf5zdPOBJVwQ<}Oi^Dxnq-&K-2q*-jMmlFu=DjX4TxpTpaG00N z?8Hs`2L-j-VNI`$Rc8~D3A1w@Jv)6}Eb6{=?F}vqEh;Jv9&;}bROH64H8;86DEH|5 ztEIa7d%4-H7h80DuM`f);-;sWUQm!Dv*o7dI#qMGI?(cX$wZ1$Ri zLsKtJS8aXhPK4+`Osvd9k~8tTJHmqU?%9e}ZX+A&e7WT7?;holBP0xIcnhb+_I2<> m|BlOqjkMvpn-O#Sur?T%`gMoGVjdhb|B3kANU$L|KIb3LvZMF_ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb7.png b/src/main/resources/assets/bbs_mod/textures/item/mashkeg_lb7.png new file mode 100644 index 0000000000000000000000000000000000000000..a71ed1d0820f4d9d6db473988f86491c27e823fd GIT binary patch literal 1780 zcmaJ?c~BE~7)>Aw5l|56cpxszAy~;tLf9b)NjRcJ5u(r{4mlPGknEaWB%llnC}

=_o~F>llt4A2gaN5mkpM@)3U&Ib zUtvEA#T?Ygqw#227^Fh942229FlbSdO`-TLFrW%mGK>RCI6_Sgy)QR{5&I1^$4a0U`yoFs=X$+7ulI8HC`7E=0~v+e{D`f#AtP z@KaLJvT#6*=wX1z;CiW8Y&O8>GuYldKA$}w;IP;nCX2lJUTklO$A>sRz~}{%(e&zg zC_)lE8jD;B!9*NKAto~|Esc@JWgz+lCfnE7*QCMWc##M%EM12y3|>0SWlTW=V=BD{ z#WjcyFexgONGdJ_$xJ_$phZ8+>afvcA`gsdP@qgUgJmjd3@DTRKUAyzjK=T?_)EV3 zDU8X}QJ5J4V@RrAMK&(p#S{vK#ClkPBYHW4q>P>z<}pqL}#1^ICJTyIgZz+{>g-KusU%9wA#$jn)3uw?8sm^)3#4&Os{WuQI6&gBgvt?jf1Pub%+&4$=b4ehZ< zPr(VlmG}p(Rwg`sP=3EWw!&2^x?J4yRR^zQYH@VVqJy_eLs!+-@aP6>L0!uL=UQ3O zU6FBSN2{_6bL7MpPDL$_eQz9e912VDq|UB#XHqII*}q$JPN*zdyXWd^tNewm6)MulHZ>-*Rg-&N4K^(-f@(JE*g zrEgA~s{=H{IWD(jn~goq+RmPpvXGb(9TH}Q>H;f>e1f4gYrHa1YnI2q{=u*FnZP@k zsNoV4pE}x4rIrZ2c*Wl>RI_#b4Ld3=h$q#Jvr6W3W89w?(8^O>lCt1?wI`NMGyA$} z_BS`^*#XPV2b~J(`vgVyjPf4jP`8`Z@z$Fy@xA=wJ*^M#zU~k0jK-G~zRk{_Of?VV z1uXT?9C}rHC4O7(VaUqbu&*%iX~Furv%(zAh7~mrdaIlXd+4eV_zt`xMO({=_uxyw z9Y}OEYdLV*0@%K{muB7OWER-9uoZXNddI;@o@FP`+^@KOcO6l^tI}4w2 z;#9Z(C&MX6k84jJ85S04+NJulsr$vovb39j799hZ6sC$gXy|idXb&eQ$sWLGOThZT zVBO0s9dyBUR%mLJbDW$ZjV-6j*Yv$3y0en|nz+99We;ttTVr<$99CAm zpcc{3_r8A9aC(_>*`u1FwiOw<+xIK68xb4Jue}b+pV>e8hk`0h`4PK_9Xzt5hWE(n r5p}Km{cFdyc_Cq^c0suxVhAdQFSE{hTT<|?=|3b5S}ds*#pV11Vo0v# literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv1.png b/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv1.png new file mode 100644 index 0000000000000000000000000000000000000000..c0c6d5fe288c225a102403605e149d6dd11e919b GIT binary patch literal 2075 zcmaJ?c~}!?9-crr1QdjF2ns_)TMu#p2?PQm1W14Yg(z7BAtVDtNG8WX0#+_fD@{dR z(NYftwk<5$Sd@Y+$R$W&cORrkwV;S7r&{Q0fwINz#ERWNmYwT6p7(u!=krZ*bY$py zGeKZtQd4;=wDM~^jj;IkD|jSB$$uH!l{T#pn!lt5u5^n9El(eih%^89CxOeB#BMD(G!lRRl&6dIWdzPWIyHH9dZ z7Q+g8V+&o;ap?#mqY(%yl?t!&z{83(0?Eh6N3TI9yQ2tqWsVdPsNJQ?t*Z(wNGVi^ zWr!G-f_g+|aj2)ihai!?m6a;rqzO$JK`oFGNO+A%iGlv` z_kRj2c{wtO5CbXUEQJs)TyXcrKU5ktz{^R0wfcbR4RH7mGzSB9%(@@nliR%wQ&o6zuICLJ0{B@(H2_QUblb znI5ZL7A(w?KvHCtEBb>=U6ZSC1&Iu`%z_l+Y)BNMfFe-qyguDzmU(OgTqKyzlj@C*|cHfvz9Nj?_JtkG4#w;?gD$omc&MW6J+{f#uoK ztGgbXxh6AS*v$?-$cP&($0QmteyO-xo?W_7JA8Z0A?93wT?+uo7G&GYAHrMp|w#0{`@b4y(R7P3qj733JUPKy@ z*==wEQ&a0^Wd_`C{Awrl_63aYHs1t0Aw$m>{avtE9E~C_S5MTbZ!B6dY53)QQUUc( z2j!2BwdPbMfCKBSSf7p_5@+*o`Z}<)lJVQ$9h_=ReE7j}gZ9eq5xQ&0zCD>;-pPG% zbE}W(-t;q7moxJr-u<$?UmKRPjBEa;*4RA<%oF;-@hU6dowru%m*QPU_YB+_XH5-z zH(~bgw_4|CzvX6YtA+EAQ8(9zcA1oD@4|;>!U8ZA!~O=uk&^C3`>tfMoyXpQs}1H6 z&W7Y5=0rl-myDtA>V{JIgT=boXOrX9T^%XS*#Y$8G@Fl3UQnBT%LUBaFqY25ll_hk zVJD=dma>nvpY@))_4m~M$evFm*kn!3S>NaLclJG+|MRiM4?~T}9Glo4ZkIzMK1mks zKp~!SGkw31g>CXTzc_!=g~i|eGTdwW8LulM2`OpsX5)omujb3G#*qO+LC&V7*#uk5 zCl;S$7$#Pt;WX z;2>mrcCNe3srxBprS$=U@APv~_@&+Kk}-ZUP-@>K>$_x1zh5`Ac&5F%8do;f*?;~U z`J-C%z*dfzp$)9O{%)hwwb;JgX2tbwcGovJAFD1r_t4k$6vj0;t0YFp=A{$pTRM7o z*iiH2@`;us|6a^*n%)?7LZccodS~P*snzyQ8o|}C{^E`a7vokfK8EM8>sj7uo$OP^ z(}fmo&|~As%~WvOK)3v%F8<)lsLO}a=9b6VnOjOz17)w;r?icqEo?B1%SYs|_L&U0 zB`ZJQhJRV^PHJ?MAN$Xx=);Z~%P-P~q4=`LH2Oie$-*q%(ykW)H-}I5U|XA>j9oD* z{%a4{;&X@g-NhHBKG*XO|3jE6n;UXoDax*PO8V|-uJ4VZsS)n&7Z1+=OZY0HXU7q< zP$R?2b_>19doL-MgP&fkOi@a_HgmW?~M}*wapw756^w*UG*Ob!-_Vqh1dNc@z?_!zchH$$P>vil(U5I;k`443p z$LTAL!2I^F#yfrMpJF?8n`D}WFc0mV8&G8n#DBZtFD*~#@@}`{hv&GeEm}-7rXVRY k|Lp0`c+cmUrMLnNu-$%ULfw|XTmQS}1V^%T%;ciq0NFb+CIA2c literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv2.png b/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5474b490f03d89cf1cb545dda80efa806f1ebd GIT binary patch literal 3416 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv3.png b/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv3.png new file mode 100644 index 0000000000000000000000000000000000000000..bfbb488a6313f823477ff629d1c1778c1e9043a3 GIT binary patch literal 4405 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

`F zm;j57or?0AUzIVH^*c%_L6sdo0YW7Y=M^n@s&8#eEL(xiA1=GN#)^NOeirxyX@C9rv9fH=~56%(oC-tMh$Di|hLy((3B_ zfW#CK4~YgdAW?vy2)s?Btr30K$biha%5 zT21ziuZHg?`}cDmKh-Z_RUF-I2R2>OzTK7{Kva6AVQo49W4;edC%?To!1Z9~@q}wz z-^8i)a{Ami9y|VO!xvM&MM>iveo2|_M?PQ*L2q|!?lJn<%Q(+>eP%H1QLw=+$>tu> z$s;un0LoO8OrXc=Q&Hv5A+GOL4__?BIjV28O23@ice_Lv7rlLE?DD)EA4G|!(voh7 ztE8>#vW9PgoO410KTTk6N}{zsMTi1y_ufyR3Dqvqz4f@}IUm8sE#c=1hXv+hG2QdU z2Q}tLMUItp@{!zRk2igT3vs3!aEy|iZEdJNlB~-ngQ{x$bzZW=(NZ!(e~SO~0iEab zmaD9=1x#mVvEo3rNQ4!D`tn48cGaEkz|ak7%%a1=^C?;`8Kajwx>gPgjW=Y8s_&D% zxQf|ryqB;~I-I2B0F?$qdo0dB-@2L4-rAGe&mI}$4V~VWozycQ>UO;uV^m+_r||Yl zd$q`^$5qsY;DnIUVYe2eSsDQ>V<&lB)Oyrx>1rleSzniOXIt8z+p5A}! zbOqpYPND!o_o*u4j_i9;S7N=bGpM#{ob)t+I@`Y>ek=2QPS6WP{0H9JscwwM;P*{U zt|+1M#tFKIQuCOIXJ4*4R${K=TV?{v+e8AWo8K{7pUvU5o};jzL%NRIOwTCPLI{2S za;=(ThtH4N{$NzPXC`{C(aE(B%N?=j1zKj+Y`^+&?hGmM*@vFUsj*LP3j8uSn+_)Q&U3(DGNQGOze!EcCxe^mLIX&i&vu#4pu27L zTmirMbFAGk={Z9RB%0hy&5QPmRD6v_2K6;+Ax=K~(Tg$AwzrG*>FYQAT%#I7M@4h> z_u|G5wboI~2XO<#l1HV8Nw;@jQC?gee1#J@?KT+Ks}zEZy2Sh5EY!OKqWf;GHNWAE y`6*DLB3f6AV@&P#q?HuH+@my$_2V-j51>HFJ*+WV&-nL`3^TM9s@%{u>VE*bzsr~a literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv4.png b/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv4.png new file mode 100644 index 0000000000000000000000000000000000000000..fef9db211614002f68b1a8ea1774996f6321ca5c GIT binary patch literal 6041 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv5.png b/src/main/resources/assets/bbs_mod/textures/item/rhizome_lv5.png new file mode 100644 index 0000000000000000000000000000000000000000..54eb39664cd33bbad5de41c14d5ed68eca922aa0 GIT binary patch literal 6563 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 literal 0 HcmV?d00001 From da9a4b85761a19e51c9c7c34bb02dbe100fbb99a Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 16:42:21 -0400 Subject: [PATCH 10/23] First upload of 1.12.2-1.0.x --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 90ff6e2..cad5e52 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Beer Brewing Simulator Mod - +![bbs logo](../bbs_mod/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png) This Mod is called: Beer Brewing Simulator. And that's exactly what it is. If you are a homebrewer you are familiar with the various calculations of abv, ibu, og, fg, srm, and etc. With this mod you can play and test with 137 types of hops and 7 types of liquid malt extracts. From 6592dff019e6b9de3f52b185f51f6148efb89744 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 16:44:03 -0400 Subject: [PATCH 11/23] First upload of 1.12.2-1.0.x --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cad5e52..f171812 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Beer Brewing Simulator Mod -![bbs logo](../bbs_mod/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png) + +![bbs logo](bbs_mod/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png) + This Mod is called: Beer Brewing Simulator. And that's exactly what it is. If you are a homebrewer you are familiar with the various calculations of abv, ibu, og, fg, srm, and etc. With this mod you can play and test with 137 types of hops and 7 types of liquid malt extracts. From 9d89febbf94aa8cde57b1eb72d8990c3be48a72f Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 16:45:59 -0400 Subject: [PATCH 12/23] First upload of 1.12.2-1.0.x --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f171812..1e12d61 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Beer Brewing Simulator Mod -![bbs logo](bbs_mod/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png) +![bbs logo](https://raw.githubusercontent.com/rafacost/bbs_mod/1.12.2/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png) This Mod is called: Beer Brewing Simulator. And that's exactly what it is. If you are a homebrewer you are familiar with the various calculations of abv, ibu, og, fg, srm, and etc. From 2a9949fca6a81a1c0c9cb258887fadc3f72cfa2d Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 16:48:24 -0400 Subject: [PATCH 13/23] First upload of 1.12.2-1.0.x --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1e12d61..99312da 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Beer Brewing Simulator Mod - -![bbs logo](https://raw.githubusercontent.com/rafacost/bbs_mod/1.12.2/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png) - +

+ BBS Logo +

This Mod is called: Beer Brewing Simulator. And that's exactly what it is. If you are a homebrewer you are familiar with the various calculations of abv, ibu, og, fg, srm, and etc. With this mod you can play and test with 137 types of hops and 7 types of liquid malt extracts. From 0482e9f32733556adb2cbb74f9cfd29ae12959b4 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Mon, 26 Mar 2018 20:15:04 -0400 Subject: [PATCH 14/23] First upload of 1.12.2-1.0.x --- README.md | 2 +- .../com/rafacost3d/bbs_mod/util/Reference.java | 2 +- .../assets/bbs_mod/textures/wiki/mb1.png | Bin 0 -> 4235 bytes .../assets/bbs_mod/textures/wiki/mb2.png | Bin 0 -> 4032 bytes .../assets/bbs_mod/textures/wiki/mb3.png | Bin 0 -> 4217 bytes .../assets/bbs_mod/textures/wiki/mb4.png | Bin 0 -> 3604 bytes .../assets/bbs_mod/textures/wiki/mb5.png | Bin 0 -> 3995 bytes src/main/resources/mcmod.info | 6 +++--- 8 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 src/main/resources/assets/bbs_mod/textures/wiki/mb1.png create mode 100644 src/main/resources/assets/bbs_mod/textures/wiki/mb2.png create mode 100644 src/main/resources/assets/bbs_mod/textures/wiki/mb3.png create mode 100644 src/main/resources/assets/bbs_mod/textures/wiki/mb4.png create mode 100644 src/main/resources/assets/bbs_mod/textures/wiki/mb5.png diff --git a/README.md b/README.md index 99312da..e235446 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ List of Attributes Calculated: - Final Gravity Current known limitations: - - Batch and Boild: For now we have fixed the Batch size and Boil Size for 5 gallons. + - Batch and Boil: For now we have fixed the Batch size and Boil Size for 5 gallons. - Extract Method: All recipes are based on Extract Method. - LME: Only Liquid Malts are available for now. - OneHop: One Type of hops per fermentation. diff --git a/src/main/java/com/rafacost3d/bbs_mod/util/Reference.java b/src/main/java/com/rafacost3d/bbs_mod/util/Reference.java index 14b62be..60fddbd 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/util/Reference.java +++ b/src/main/java/com/rafacost3d/bbs_mod/util/Reference.java @@ -3,7 +3,7 @@ public class Reference { public static final String MODID = "bbs_mod"; - public static final String NAME = "Beer Brewery Simulator"; + public static final String NAME = "Beer Brewing Simulator"; public static final String VERSION = "${version}"; public final static String CLIENT = "com.rafacost3d.bbs_mod.proxy.ClientProxy"; public final static String COMMON = "com.rafacost3d.bbs_mod.proxy.CommonProxy"; diff --git a/src/main/resources/assets/bbs_mod/textures/wiki/mb1.png b/src/main/resources/assets/bbs_mod/textures/wiki/mb1.png new file mode 100644 index 0000000000000000000000000000000000000000..991185c752a9022618e03486dbe80ffdf4ed02e8 GIT binary patch literal 4235 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/wiki/mb2.png b/src/main/resources/assets/bbs_mod/textures/wiki/mb2.png new file mode 100644 index 0000000000000000000000000000000000000000..f343d59d3eeedd909709ce234d1ee0ee85dc4062 GIT binary patch literal 4032 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 Ln(040;(qo&7r~C5 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/bbs_mod/textures/wiki/mb4.png b/src/main/resources/assets/bbs_mod/textures/wiki/mb4.png new file mode 100644 index 0000000000000000000000000000000000000000..02340d061a1de0a4e20a20b532229eddb42a8192 GIT binary patch literal 3604 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 HIfeZn6hrtY literal 0 HcmV?d00001 diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 27270d7..6922dec 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -1,15 +1,15 @@ [ { "modid": "bbs_mod", - "name": "Beer Brewery Simulator", - "description": "Base Mod for Beer Brewery Simulator Modpack.", + "name": "Beer Brewing Simulator", + "description": "Simulate before you brew", "version": "${version}", "mcversion": "${mcversion}", "url": "https://github.com/rafacost/bbs_mod", "updateUrl": "https://github.com/rafacost/bbs_mod/version.json", "authorList": ["rafacost3d"], "credits": "All rights reserved for rafacost3d", - "logoFile": "", + "logoFile": "https://raw.githubusercontent.com/rafacost/bbs_mod/1.12.2/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png", "screenshots": [], "dependencies": [] } From e95ec4083249a156e2206826818e543cf119bd70 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Fri, 30 Mar 2018 19:53:35 -0400 Subject: [PATCH 15/23] Implemented ISidedInventory for MicroBrewer --- CHANGELOG.md | 4 + gradle.properties | 6 +- .../rafacost3d/bbs_mod/init/BlocksInit.java | 4 +- .../bbs_mod/integration/jei/JeiBBSPlugin.java | 3 + .../{ => MicroBrewer}/MicroBrewerBlock.java | 3 +- .../MicroBrewerContainer.java | 6 +- .../{ => MicroBrewer}/MicroBrewerGui.java | 4 +- .../{ => MicroBrewer}/MicroBrewerRecipes.java | 5 +- .../TileEntityMicroBrewer.java | 78 +++++++++++++++++-- .../slots/SlotMicroBrewerFuel.java | 4 +- .../slots/SlotMicroBrewerOutput.java | 2 +- .../rafacost3d/bbs_mod/proxy/CommonProxy.java | 6 +- .../rafacost3d/bbs_mod/proxy/GuiProxy.java | 6 +- 13 files changed, 97 insertions(+), 34 deletions(-) create mode 100644 CHANGELOG.md rename src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/{ => MicroBrewer}/MicroBrewerBlock.java (98%) rename src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/{ => MicroBrewer}/MicroBrewerContainer.java (95%) rename src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/{ => MicroBrewer}/MicroBrewerGui.java (95%) rename src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/{ => MicroBrewer}/MicroBrewerRecipes.java (99%) rename src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/{ => MicroBrewer}/TileEntityMicroBrewer.java (86%) rename src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/{ => MicroBrewer}/slots/SlotMicroBrewerFuel.java (77%) rename src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/{ => MicroBrewer}/slots/SlotMicroBrewerOutput.java (92%) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..853076d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,4 @@ +# CHANGELOG + +## 1.1.185 +* Implemented ISidedInventory for MicroBrewer, now you can automate it. \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index d14afb4..1af97ec 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -#Mon Mar 26 13:29:57 EDT 2018 +#Fri Mar 30 19:31:54 EDT 2018 MAJOR=1 org.gradle.jvmargs=-Xmx3G -MINOR=0 +MINOR=1 mc_version=1.12.2 jei_version=4.8.5.147 -BN=181 +BN=185 diff --git a/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java b/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java index 213785f..7ec34ca 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java +++ b/src/main/java/com/rafacost3d/bbs_mod/init/BlocksInit.java @@ -1,8 +1,6 @@ package com.rafacost3d.bbs_mod.init; -import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackBlock; -import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerBlock; -import com.rafacost3d.bbs_mod.objects.blocks.ModelBlock; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerBlock; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java index 786f7ce..1d5d790 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java @@ -1,4 +1,5 @@ package com.rafacost3d.bbs_mod.integration.jei; +import com.rafacost3d.bbs_mod.BBSMod; import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; import mezz.jei.api.*; import mezz.jei.api.ingredients.IIngredientBlacklist; @@ -11,6 +12,8 @@ public class JeiBBSPlugin extends BlankModPlugin { @Override public void register(@Nonnull IModRegistry registry) { + + BBSMod.logger.info(">> Loading Beer Brewing Simulator Jei Plugin"); IIngredientBlacklist blacklist = registry.getJeiHelpers().getIngredientBlacklist(); blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltpilsen"))); blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltmunich"))); diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerBlock.java similarity index 98% rename from src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.java rename to src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerBlock.java index 92bbb3e..5dc0ccc 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerBlock.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerBlock.java @@ -1,4 +1,4 @@ -package com.rafacost3d.bbs_mod.objects.blocks.machines; +package com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer; import com.rafacost3d.bbs_mod.BBSMod; import com.rafacost3d.bbs_mod.creativetabs.CreativeTabsBBS; @@ -9,7 +9,6 @@ import net.minecraft.block.properties.IProperty; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.properties.PropertyDirection; -import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; import net.minecraft.client.renderer.block.model.ModelResourceLocation; diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerContainer.java similarity index 95% rename from src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.java rename to src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerContainer.java index baed7a0..0cffa8e 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerContainer.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerContainer.java @@ -1,7 +1,7 @@ -package com.rafacost3d.bbs_mod.objects.blocks.machines; +package com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer; -import com.rafacost3d.bbs_mod.objects.blocks.machines.slots.SlotMicroBrewerFuel; -import com.rafacost3d.bbs_mod.objects.blocks.machines.slots.SlotMicroBrewerOutput; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.slots.SlotMicroBrewerFuel; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.slots.SlotMicroBrewerOutput; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerGui.java similarity index 95% rename from src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.java rename to src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerGui.java index 44aebf3..8071c08 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerGui.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerGui.java @@ -1,4 +1,4 @@ -package com.rafacost3d.bbs_mod.objects.blocks.machines; +package com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer; import com.rafacost3d.bbs_mod.util.Reference; import net.minecraft.client.gui.inventory.GuiContainer; @@ -22,7 +22,7 @@ public MicroBrewerGui(InventoryPlayer player, TileEntityMicroBrewer tileentity) @Override protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY) { - String tileName = "Micro Brewer"; + String tileName = "MicroBrewer"; this.fontRenderer.drawString(tileName, (this.xSize / 2 - this.fontRenderer.getStringWidth(tileName) / 2) + 3, 8, 4210752); this.fontRenderer.drawString(this.player.getDisplayName().getUnformattedText(), 122, this.ySize - 96 + 2, 4210752); } diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerRecipes.java similarity index 99% rename from src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java rename to src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerRecipes.java index 5310439..ccdb6b6 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewerRecipes.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerRecipes.java @@ -1,16 +1,13 @@ -package com.rafacost3d.bbs_mod.objects.blocks.machines; +package com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer; import com.google.common.collect.HashBasedTable; import com.google.common.collect.Maps; import com.google.common.collect.Table; import com.rafacost3d.bbs_mod.init.ItemInit; import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; -import com.rafacost3d.bbs_mod.objects.items.MashKegItem; import net.minecraft.init.Blocks; import net.minecraft.init.Items; -import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; import java.util.Map; diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/TileEntityMicroBrewer.java similarity index 86% rename from src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java rename to src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/TileEntityMicroBrewer.java index bd0820a..26862c3 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/TileEntityMicroBrewer.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/TileEntityMicroBrewer.java @@ -1,20 +1,19 @@ -package com.rafacost3d.bbs_mod.objects.blocks.machines; +package com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer; import com.rafacost3d.bbs_mod.init.ItemInit; -import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerRecipes; -import com.rafacost3d.bbs_mod.objects.items.MashKegItem; import com.rafacost3d.bbs_mod.util.BeerMath; import net.minecraft.block.Block; import net.minecraft.block.material.Material; -import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.init.Blocks; import net.minecraft.init.Items; -import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.ItemStackHelper; +import net.minecraft.inventory.*; import net.minecraft.item.*; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; +import net.minecraft.tileentity.TileEntityLockable; +import net.minecraft.util.EnumFacing; import net.minecraft.util.ITickable; import net.minecraft.util.NonNullList; import net.minecraft.util.math.MathHelper; @@ -25,8 +24,11 @@ import net.minecraftforge.fml.relauncher.SideOnly; -public class TileEntityMicroBrewer extends TileEntity implements IInventory, ITickable { +public class TileEntityMicroBrewer extends TileEntityLockable implements ITickable, ISidedInventory { + private static final int[] SLOTS_TOP = new int[] {0}; + private static final int[] SLOTS_BOTTOM = new int[] {2, 1}; + private static final int[] SLOTS_SIDES = new int[] {3}; private NonNullList inventory = NonNullList.withSize(4, ItemStack.EMPTY); private String customName; @@ -35,6 +37,11 @@ public class TileEntityMicroBrewer extends TileEntity implements IInventory, ITi private int cookTime; private int totalCookTime; + public Container createContainer(InventoryPlayer playerInventory, EntityPlayer playerIn) + { + return new ContainerFurnace(playerInventory, this); + } + @Override public String getName() { return this.hasCustomName() ? this.customName : "tile.bbs_mod.microbrewer.name"; @@ -480,4 +487,61 @@ public void clear() { this.inventory.clear(); } + + public int[] getSlotsForFace(EnumFacing side) + { + if (side == EnumFacing.DOWN) + { + return SLOTS_BOTTOM; + } + else + { + return side == EnumFacing.UP ? SLOTS_TOP : SLOTS_SIDES; + } + } + + /** + * Returns true if automation can insert the given item in the given slot from the given side. + */ + public boolean canInsertItem(int index, ItemStack itemStackIn, EnumFacing direction) + { + return this.isItemValidForSlot(index, itemStackIn); + } + + /** + * Returns true if automation can extract the given item in the given slot from the given side. + */ + public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction) + { + if (direction == EnumFacing.DOWN && index == 1) + { + Item item = stack.getItem(); + + if (item != Items.WATER_BUCKET && item != Items.BUCKET) + { + return false; + } + } + + return true; + } + + net.minecraftforge.items.IItemHandler handlerTop = new net.minecraftforge.items.wrapper.SidedInvWrapper(this, net.minecraft.util.EnumFacing.UP); + net.minecraftforge.items.IItemHandler handlerBottom = new net.minecraftforge.items.wrapper.SidedInvWrapper(this, net.minecraft.util.EnumFacing.DOWN); + net.minecraftforge.items.IItemHandler handlerSide = new net.minecraftforge.items.wrapper.SidedInvWrapper(this, net.minecraft.util.EnumFacing.WEST); + + @SuppressWarnings("unchecked") + @Override + @javax.annotation.Nullable + public T getCapability(net.minecraftforge.common.capabilities.Capability capability, @javax.annotation.Nullable net.minecraft.util.EnumFacing facing) + { + if (facing != null && capability == net.minecraftforge.items.CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) + if (facing == EnumFacing.DOWN) + return (T) handlerBottom; + else if (facing == EnumFacing.UP) + return (T) handlerTop; + else + return (T) handlerSide; + return super.getCapability(capability, facing); + } } \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/slots/SlotMicroBrewerFuel.java similarity index 77% rename from src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.java rename to src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/slots/SlotMicroBrewerFuel.java index 68b0405..a895cc4 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerFuel.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/slots/SlotMicroBrewerFuel.java @@ -1,6 +1,6 @@ -package com.rafacost3d.bbs_mod.objects.blocks.machines.slots; +package com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.slots; -import com.rafacost3d.bbs_mod.objects.blocks.machines.TileEntityMicroBrewer; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.TileEntityMicroBrewer; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.Slot; import net.minecraft.item.ItemStack; diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/slots/SlotMicroBrewerOutput.java similarity index 92% rename from src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.java rename to src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/slots/SlotMicroBrewerOutput.java index d2d0753..c44292f 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/slots/SlotMicroBrewerOutput.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/slots/SlotMicroBrewerOutput.java @@ -1,4 +1,4 @@ -package com.rafacost3d.bbs_mod.objects.blocks.machines.slots; +package com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.slots; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java index 7a1c40f..bbc4d08 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java +++ b/src/main/java/com/rafacost3d/bbs_mod/proxy/CommonProxy.java @@ -6,10 +6,8 @@ import com.rafacost3d.bbs_mod.init.BlocksInit; import com.rafacost3d.bbs_mod.init.ConfigInit; import com.rafacost3d.bbs_mod.objects.blocks.*; -import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackBlock; -import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackTileEntity; -import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerBlock; -import com.rafacost3d.bbs_mod.objects.blocks.machines.TileEntityMicroBrewer; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerBlock; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.TileEntityMicroBrewer; import com.rafacost3d.bbs_mod.objects.crops.BlockRegistry; import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; import com.rafacost3d.bbs_mod.objects.crops.ItemRegistry; diff --git a/src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java b/src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java index 13e4899..c062ad4 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java +++ b/src/main/java/com/rafacost3d/bbs_mod/proxy/GuiProxy.java @@ -3,9 +3,9 @@ import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackContainer; import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackGui; import com.rafacost3d.bbs_mod.objects.blocks.containers.MicroPackTileEntity; -import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerContainer; -import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewerGui; -import com.rafacost3d.bbs_mod.objects.blocks.machines.TileEntityMicroBrewer; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerContainer; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerGui; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.TileEntityMicroBrewer; import com.rafacost3d.bbs_mod.util.Reference; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.tileentity.TileEntity; From b13e85d6a99382dae49384acadca789c817c54a1 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Fri, 30 Mar 2018 19:59:35 -0400 Subject: [PATCH 16/23] Implemented ISidedInventory for MicroBrewer --- version.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/version.json b/version.json index 0a2ab19..116bb89 100644 --- a/version.json +++ b/version.json @@ -1,10 +1,11 @@ { "homepage": "https://github.com/rafacost/bbs_mod/releases", "1.12.2": { + "1.1.185": "https://github.com/rafacost/bbs_mod/releases/tag/1.1.185", "1.0": "https://github.com/rafacost/bbs_mod/releases/tag/1.0" }, "promos": { - "1.12.2-latest": "1.0", - "1.12.2-recommended": "1.0" + "1.12.2-latest": "1.1.185", + "1.12.2-recommended": "1.1.185" } } \ No newline at end of file From ad8a8fef043773583af267a68b2c2a4319144e87 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sat, 14 Apr 2018 18:28:13 -0400 Subject: [PATCH 17/23] Completed Jei integration for MicroBrewerRecipes --- build.gradle | 2 +- gradle.properties | 4 +- .../bbs_mod/integration/jei/JeiBBSPlugin.java | 28 ++++++++ .../integration/jei/RecipeCategories.java | 8 +++ .../AbstractMicroBrewerRecipeCategory.java | 32 ++++++++++ .../jei/microbrewer/MicroBrewerRecipe.java | 23 +++++++ .../MicroBrewerRecipeCategory.java | 60 ++++++++++++++++++ .../microbrewer/MicroBrewerRecipeMaker.java | 36 +++++++++++ .../MicroBrewer/MicroBrewerRecipes.java | 5 +- .../bbs_mod/textures/gui/microbrewergui.png | Bin 1997 -> 2316 bytes 10 files changed, 193 insertions(+), 5 deletions(-) create mode 100644 src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipe.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java create mode 100644 src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java diff --git a/build.gradle b/build.gradle index 5e6c16e..11a5d74 100644 --- a/build.gradle +++ b/build.gradle @@ -54,7 +54,7 @@ repositories { } dependencies { - // compile against the JEI API but do not include it at runtime +// compile against the JEI API but do not include it at runtime deobfProvided "mezz.jei:jei_${mc_version}:${jei_version}:api" // at runtime, use the full JEI jar runtime "mezz.jei:jei_${mc_version}:${jei_version}" diff --git a/gradle.properties b/gradle.properties index 1af97ec..b08cae7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -#Fri Mar 30 19:31:54 EDT 2018 +#Sat Apr 14 18:17:05 EDT 2018 MAJOR=1 org.gradle.jvmargs=-Xmx3G MINOR=1 mc_version=1.12.2 jei_version=4.8.5.147 -BN=185 +BN=193 diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java index 1d5d790..7b8ebed 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java @@ -1,14 +1,32 @@ package com.rafacost3d.bbs_mod.integration.jei; import com.rafacost3d.bbs_mod.BBSMod; +import com.rafacost3d.bbs_mod.init.BlocksInit; +import com.rafacost3d.bbs_mod.integration.jei.microbrewer.MicroBrewerRecipeCategory; +import com.rafacost3d.bbs_mod.integration.jei.microbrewer.MicroBrewerRecipeMaker; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerContainer; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerGui; import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; import mezz.jei.api.*; import mezz.jei.api.ingredients.IIngredientBlacklist; +import mezz.jei.api.ingredients.IIngredientRegistry; +import mezz.jei.api.recipe.IRecipeCategory; +import mezz.jei.api.recipe.IRecipeCategoryRegistration; +import mezz.jei.api.recipe.transfer.IRecipeTransferRegistry; import net.minecraft.item.ItemStack; import javax.annotation.Nonnull; @mezz.jei.api.JEIPlugin public class JeiBBSPlugin extends BlankModPlugin { + + @Override + public void registerCategories(IRecipeCategoryRegistration registry){ + final IJeiHelpers helpers = registry.getJeiHelpers(); + final IGuiHelper gui = helpers.getGuiHelper(); + registry.addRecipeCategories(new MicroBrewerRecipeCategory(gui)); + } + + @Override public void register(@Nonnull IModRegistry registry) { @@ -20,6 +38,16 @@ public void register(@Nonnull IModRegistry registry) { blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltamber"))); blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltdark"))); + final IIngredientRegistry ingredientRegistry = registry.getIngredientRegistry(); + final IJeiHelpers jeiHelpers = registry.getJeiHelpers(); + //IRecipeTransferRegistry recipeTransfer = registry.getRecipeTransferRegistry(); + + registry.addRecipeCategoryCraftingItem(new ItemStack(BlocksInit.microBrewerBlock), RecipeCategories.MICRO); + registry.addRecipes(MicroBrewerRecipeMaker.getRecipes(jeiHelpers), RecipeCategories.MICRO); + registry.addRecipeClickArea(MicroBrewerGui.class, 44, 33, 24, 17, RecipeCategories.MICRO); + //recipeTransfer.addRecipeTransferHandler(MicroBrewerContainer.class, RecipeCategories.MICRO, 0, 1, 3, 36); + + registry.addDescription(new ItemStack(CropRegistry.getFood("admiral")), "Hop Type: " + "Bittering", "Alpha Acid: " + "14.5", "Description: \n" + "Citrus, Herbal"); registry.addDescription(new ItemStack(CropRegistry.getFood("ahtanum")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Earthy, Floral, Citrus"); diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java new file mode 100644 index 0000000..08a3b71 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java @@ -0,0 +1,8 @@ +package com.rafacost3d.bbs_mod.integration.jei; + + +import com.rafacost3d.bbs_mod.util.Reference; + +public class RecipeCategories { + public static final String MICRO = Reference.MODID + ".microbrewer"; +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java new file mode 100644 index 0000000..0696ba8 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java @@ -0,0 +1,32 @@ +package com.rafacost3d.bbs_mod.integration.jei.microbrewer; + +import com.rafacost3d.bbs_mod.util.Reference; +import mezz.jei.api.IGuiHelper; + +import mezz.jei.api.gui.IDrawableAnimated; +import mezz.jei.api.gui.IDrawableStatic; +import mezz.jei.api.recipe.IRecipeCategory; +import mezz.jei.api.recipe.IRecipeWrapper; +import net.minecraft.util.ResourceLocation; + +public abstract class AbstractMicroBrewerRecipeCategory implements IRecipeCategory { + + protected static final ResourceLocation TEXTURES = new ResourceLocation(Reference.MODID + ":textures/gui/microbrewergui.png"); + protected static final int input1=0; + protected static final int input2=1; + protected static final int fuel=2; + protected static final int output=3; + + protected final IDrawableStatic staticFlame; + protected final IDrawableAnimated animatedFlame; + protected final IDrawableAnimated animatedArrow; + + public AbstractMicroBrewerRecipeCategory(IGuiHelper helper){ + staticFlame = helper.createDrawable(TEXTURES, 176,0,14,14); + animatedFlame = helper.createAnimatedDrawable(staticFlame, 300, IDrawableAnimated.StartDirection.TOP, true); + + IDrawableStatic staticArrow = helper.createDrawable(TEXTURES, 176, 14 ,24, 17 ); + animatedArrow = helper.createAnimatedDrawable(staticArrow, 200, IDrawableAnimated.StartDirection.LEFT, false); + } + +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipe.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipe.java new file mode 100644 index 0000000..892f9b6 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipe.java @@ -0,0 +1,23 @@ +package com.rafacost3d.bbs_mod.integration.jei.microbrewer; + +import mezz.jei.api.ingredients.IIngredients; +import mezz.jei.api.recipe.IRecipeWrapper; +import net.minecraft.item.ItemStack; + +import java.util.List; + +public class MicroBrewerRecipe implements IRecipeWrapper { + private final List inputs; + private final ItemStack output; + + public MicroBrewerRecipe(List inputs, ItemStack output){ + this.inputs = inputs; + this.output = output; + } + + @Override + public void getIngredients(IIngredients ingredients){ + ingredients.setInputs(ItemStack.class, inputs); + ingredients.setOutput(ItemStack.class, output); + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java new file mode 100644 index 0000000..fc450ce --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java @@ -0,0 +1,60 @@ +package com.rafacost3d.bbs_mod.integration.jei.microbrewer; + +import com.rafacost3d.bbs_mod.integration.jei.RecipeCategories; +import com.rafacost3d.bbs_mod.util.Reference; +import mezz.jei.api.IGuiHelper; +import mezz.jei.api.gui.IDrawable; +import mezz.jei.api.gui.IGuiItemStackGroup; +import mezz.jei.api.gui.IRecipeLayout; +import mezz.jei.api.ingredients.IIngredients; +import net.minecraft.client.Minecraft; + +import javax.annotation.Nullable; + +public class MicroBrewerRecipeCategory extends AbstractMicroBrewerRecipeCategory { + private final IDrawable background; + private final String name; + + public MicroBrewerRecipeCategory(IGuiHelper helper) { + super(helper); + background = helper.createDrawable(TEXTURES, 4, 12, 150, 60); + name = "MicroBrewer"; + } + + @Override + public String getUid() { + return RecipeCategories.MICRO; + } + + @Override + public String getTitle() { + return name; + } + + @Override + public String getModName() { + return Reference.NAME; + } + + @Override + public IDrawable getBackground() { + return background; + } + + + @Override + public void drawExtras(Minecraft minecraft){ + animatedFlame.draw(minecraft,4,42); + animatedArrow.draw(minecraft, 40, 23); + } + + @Override + public void setRecipe(IRecipeLayout iRecipeLayout, MicroBrewerRecipe microBrewerRecipe, IIngredients iIngredients) { + IGuiItemStackGroup stacks = iRecipeLayout.getItemStacks(); + stacks.init(input1, true, 21, 3); + stacks.init(input2, true, 21, 40); + stacks.init(output, false, 76,23); + stacks.set(iIngredients); + } + +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java new file mode 100644 index 0000000..358a0a1 --- /dev/null +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java @@ -0,0 +1,36 @@ +package com.rafacost3d.bbs_mod.integration.jei.microbrewer; + +import com.google.common.collect.Lists; +import com.google.common.collect.Table; +import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerRecipes; +import mezz.jei.api.IJeiHelpers; +import mezz.jei.api.recipe.IStackHelper; +import net.minecraft.item.ItemStack; + +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; + +public class MicroBrewerRecipeMaker { + public static List getRecipes(IJeiHelpers helpers) + { + IStackHelper stackHelper = helpers.getStackHelper(); + MicroBrewerRecipes instance = MicroBrewerRecipes.getInstance(); + Table recipes = instance.getDualSmeltingList(); + List jeiRecipes = Lists.newArrayList(); + + for(Entry> entry : recipes.columnMap().entrySet()) + { + for(Entry ent : entry.getValue().entrySet()) + { + ItemStack input1 = entry.getKey(); + ItemStack input2 = ent.getKey(); + ItemStack output = ent.getValue(); + List inputs = Lists.newArrayList(input1, input2); + MicroBrewerRecipe recipe = new MicroBrewerRecipe(inputs, output); + jeiRecipes.add(recipe); + } + } + return jeiRecipes; + } +} diff --git a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerRecipes.java b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerRecipes.java index ccdb6b6..ab05a45 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerRecipes.java +++ b/src/main/java/com/rafacost3d/bbs_mod/objects/blocks/machines/MicroBrewer/MicroBrewerRecipes.java @@ -24,9 +24,10 @@ public static MicroBrewerRecipes getInstance() private MicroBrewerRecipes() { + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("malt")), new ItemStack(CropRegistry.getFood("malt")), new ItemStack(CropRegistry.getFood("maltpilsen")), 5.0F, 20); - addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltpilsen")), new ItemStack(CropRegistry.getFood("maltpilsen")), new ItemStack(CropRegistry.getFood("maltmunich")), 5.0F, 20);addMicroBrewerRecipe(new ItemStack(Items.WHEAT), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_WHEAT), 5.0F, 20); - addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltmunich")), new ItemStack(CropRegistry.getFood("maltmunich")), new ItemStack(CropRegistry.getFood("maltamber")), 5.0F, 20);addMicroBrewerRecipe(new ItemStack(Items.WHEAT), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_WHEAT), 5.0F, 240); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltpilsen")), new ItemStack(CropRegistry.getFood("maltpilsen")), new ItemStack(CropRegistry.getFood("maltmunich")), 5.0F, 20); + addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltmunich")), new ItemStack(CropRegistry.getFood("maltmunich")), new ItemStack(CropRegistry.getFood("maltamber")), 5.0F, 20); addMicroBrewerRecipe(new ItemStack(CropRegistry.getFood("maltamber")), new ItemStack(CropRegistry.getFood("maltamber")), new ItemStack(CropRegistry.getFood("maltdark")), 5.0F, 20); addMicroBrewerRecipe(new ItemStack(Items.WHEAT), new ItemStack(Items.SUGAR), new ItemStack(ItemInit.LME_WHEAT), 5.0F, 240); diff --git a/src/main/resources/assets/bbs_mod/textures/gui/microbrewergui.png b/src/main/resources/assets/bbs_mod/textures/gui/microbrewergui.png index b76098d3015de40e07415d690b479988b105593d..7a65ecc96daf1696789c6aa08b569a864d5a833c 100644 GIT binary patch delta 1647 zcmb`De=yW}7{@=~?=HSk?RQvQDb`NmrXoMKRtRgC)f`G3E@^Xq)g5cJ*2Z1m?;fSg zO?2B4%95_;sP!wZ5Uy*Tu1sY7T+7xS3QLMzYR{fb&D_n6oBQLQf1Y{X&--~j^E~aO zZwzyMA!^kgYe+N*QAJ0g&qVd`Hc=XEMxoOj?RU~xPEOk$nD+K8I>VVo^K@c4FljWV zy`%Sb(QbIddlPL%({2j?*B@>l$j29Rkvnz`GX>xpY0?(J}Mis;-+D09T+VyVM zaiv*N5`lqrEpmDR(7}C~o|W$SNMWfjDh&ujNvBCkppy^%r8IgFe_BbO~T`*=ZLDi#-qB1*bW{d~A*T3yo_ z=d>kTl~PeNGe>uEb32$YE1#I`?jPvjBx`xuC5$s(KpIe4=JRGGc0oN50euH>jMAPx z6}CgZOYa4JRBT)4s7C>(+0Omy!^Z-(O8Ic1nWV`5%>>EC51=7xtiY{NTW6@>75s?v zgJ5VU1mn-@wPAd9dqWbOxK962G%1$*YkRIpSXhDsir_(&Rxx2wWE*jHKA1<0D_hjlL01n|Rdz*FUUj&5B zMptm=G+iZ(fwPk^BUe1+($rL>otw!0g&#k506-p2b;-{s%pX)xU3c%6xV@pN%5~j+ z!SC`)nM~##e^D$pYv^1=BePKytQnDtO%sjMe`=}KM}$~zJ~1O0K>!NFAOm*>?CQAv z1x6hNJR@yMsk_zK=tRUXWX+9^#>A$Xnwr9Z(GgR1HAr&`sqlX0o|6-^-=2$dC|ttF|(Vw(sEt|7?1J9#BGODad)ivp$*1{N~=_144s z;DNyNF2q@9cluD^Fg(AH&8CA4u*n=SfFTK3g0J;(6kLN1pl|tC;_{TvhaflL2BF}? z$AlJ?@-kAMd_F|;45GhG2YWRXKz2uflmvUsc%A2;FhIK;BFU5)R^o2jlxi6$Wa zZF1GC#HNo_`(HbW5CB_%k8+{S}`^bv8e z=lfx`J>{t-K#!A(*Vs#JiLe5{8;mt_5P$#=0APRu8~`Gq006z0;zs+kgc6BleY3}b z5csIIoFC3s<-^4SLO~nW({Mwq*Xv)PoDUOtt%z8rLLAd2w&Cn#Dp;r;T$t~r z7DdTx+8A-xSa`E*fqxyD%})hVvyKd7?#-^78@Isugufh#{qt}X@F4_HJU=Er_8*fy z8F6i(qP%m)!qw37UlgUTF00~#IZ9s1rSY8VEYWbzB$_p2F5dQ-I7q(8% zGCLGAzMu#-?n9TKPq{tiu57c0(vH>KkBS^)MD|$kjrrrmu(>5-1!N?gh4gJEzV6on h|6f@D4TU2byB6SePQLFX;iSpimM_bnDPeHF`V$^YWh?*y literal 1997 zcmbVNe@qi+82(zALlh;NMRWmgWf4i%Uau_&y|i#`uO~REq%_!w7>@RkleSl{S6g+- z>Tq*7gIh*0`@z6}tV@g`%c9#bvCcU%XB4xcYzpH1JE)-OO0U&j;k*eQBE7hD+?b)x7eP&5<@sX|&6FRVi`y;xHlH+>=r2&*Ah3LI<-(8q*B4_G` zD!!zJcgfp(8kS!7H(gylBjm+rzcWPd=x?x}Ad`-dboBkcvfv*qt3B<~aC>Iv!Aj4S zx@_*6wCoLDXo+9F63siN{-UPuPU=7 zHv{gyy!e=*{RfaS^WdqG-nK(?V)x|D;rs7Z|JgP2`AG{oIsGKP$ohpdD`Jp%_RX91 zAD=ABI84r}**Sc_*6EdM}Em{my=zGlYUf!?!RA%RkY1{t+Q{x zt2KJ=ZpFZYe!1uF%~+i5XbOH()phIbX)Q_zm9RYV#9RU&8_O9kkd~zYLZhV@W@g?_e=A)?k|5x z3_}cz0B+IhrZ@nNN zb@Wbi&-Tb(d1dsiU{+K`R2d;3>I-MP`eG0fDiM?kMU9kg2{@`GUSu1{mSE=TpD z(N>Y6-H$xkMai?@-;gomqgk!-2Y@xSo!+=@$(83L@xQ9Fs>`z?dilX^ElpLjr5C6d zQ>N+eGkuD{X?g0rJd+}{OO8Bk0v}U!T(d-Epyit-*Dv*-NQeKgpu}pU4w$Ro_!rlT BRM7wc From c55431f91b6305b11549007450ce7e52c17d91f7 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sat, 14 Apr 2018 18:50:17 -0400 Subject: [PATCH 18/23] Completed Jei integration for MicroBrewerRecipes --- gradle.properties | 6 +++--- version.json | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index b08cae7..3ffb8fa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -#Sat Apr 14 18:17:05 EDT 2018 +#Sat Apr 14 18:35:13 EDT 2018 MAJOR=1 org.gradle.jvmargs=-Xmx3G -MINOR=1 +MINOR=2 mc_version=1.12.2 jei_version=4.8.5.147 -BN=193 +BN=194 diff --git a/version.json b/version.json index 116bb89..3e5978f 100644 --- a/version.json +++ b/version.json @@ -1,11 +1,12 @@ { "homepage": "https://github.com/rafacost/bbs_mod/releases", "1.12.2": { + "1.2.194": "https://github.com/rafacost/bbs_mod/releases/tag/1.2.194", "1.1.185": "https://github.com/rafacost/bbs_mod/releases/tag/1.1.185", "1.0": "https://github.com/rafacost/bbs_mod/releases/tag/1.0" }, "promos": { - "1.12.2-latest": "1.1.185", - "1.12.2-recommended": "1.1.185" + "1.12.2-latest": "1.2.194", + "1.12.2-recommended": "1.2.194" } } \ No newline at end of file From 8a7297f97b4aa0dc83abad854109a72d586c7202 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sat, 14 Apr 2018 19:52:57 -0400 Subject: [PATCH 19/23] Fixed BBS logo not showing --- gradle.properties | 4 ++-- src/main/resources/mcmod.info | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gradle.properties b/gradle.properties index 3ffb8fa..030c170 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -#Sat Apr 14 18:35:13 EDT 2018 +#Sat Apr 14 19:44:46 EDT 2018 MAJOR=1 org.gradle.jvmargs=-Xmx3G MINOR=2 mc_version=1.12.2 jei_version=4.8.5.147 -BN=194 +BN=195 diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 6922dec..859ed5f 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -3,13 +3,13 @@ "modid": "bbs_mod", "name": "Beer Brewing Simulator", "description": "Simulate before you brew", - "version": "${version}", - "mcversion": "${mcversion}", + "version":"${version}", + "mcversion":"${mcversion}", "url": "https://github.com/rafacost/bbs_mod", - "updateUrl": "https://github.com/rafacost/bbs_mod/version.json", + "updateUrl": "https://raw.githubusercontent.com/rafacost/bbs_mod/1.12.2/version.json", "authorList": ["rafacost3d"], "credits": "All rights reserved for rafacost3d", - "logoFile": "https://raw.githubusercontent.com/rafacost/bbs_mod/1.12.2/src/main/resources/assets/bbs_mod/textures/gui/bbs_logo.png", + "logoFile": "assets/bbs_mod/textures/gui/bbs_logo.png", "screenshots": [], "dependencies": [] } From 000db33ad4a958afd82210192aa47dfb843df109 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sat, 14 Apr 2018 21:25:45 -0400 Subject: [PATCH 20/23] Fixed BBS logo not showing --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 853076d..35003db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ # CHANGELOG +## 1.2.194 +* Implemented MicroBrewerRecipes for JEI ## 1.1.185 * Implemented ISidedInventory for MicroBrewer, now you can automate it. \ No newline at end of file From 6e1ab57f17755580e1327e2bd88ddea448e58dbb Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sun, 15 Apr 2018 13:52:18 -0400 Subject: [PATCH 21/23] Fixed BBS logo not showing --- build.gradle | 2 +- gradle.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 11a5d74..06b85ff 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ compileJava { sourceCompatibility = targetCompatibility = '1.8' } minecraft { - version = "1.12.2-14.23.2.2611" + version = "1.12.2-14.23.3.2655" runDir = "run" mappings = "snapshot_20171003" } diff --git a/gradle.properties b/gradle.properties index 030c170..0f1b5bd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -#Sat Apr 14 19:44:46 EDT 2018 +#Sun Apr 15 12:56:52 EDT 2018 MAJOR=1 org.gradle.jvmargs=-Xmx3G MINOR=2 mc_version=1.12.2 jei_version=4.8.5.147 -BN=195 +BN=196 From 2d0d9f77b5b24b18cb0012807ebdb9eed741e173 Mon Sep 17 00:00:00 2001 From: Rafael Costa Date: Sun, 15 Apr 2018 15:20:16 -0400 Subject: [PATCH 22/23] Fixed Mapping Bug and Updated to Forge Recommended 1.12.2-14.23.3.2655 --- CHANGELOG.md | 2 ++ gradle.properties | 4 ++-- .../bbs_mod/integration/jei/JeiBBSPlugin.java | 19 ++----------------- .../integration/jei/RecipeCategories.java | 3 +-- .../AbstractMicroBrewerRecipeCategory.java | 8 +------- .../MicroBrewerRecipeCategory.java | 6 +----- .../microbrewer/MicroBrewerRecipeMaker.java | 5 +---- version.json | 6 +++--- 8 files changed, 13 insertions(+), 40 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35003db..827a383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # CHANGELOG +## 1.2.197 +* Fixed Mapping Bug and Updated to Forge Recommended 1.12.2-14.23.3.2655 ## 1.2.194 * Implemented MicroBrewerRecipes for JEI ## 1.1.185 diff --git a/gradle.properties b/gradle.properties index 0f1b5bd..a65820f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ -#Sun Apr 15 12:56:52 EDT 2018 +#Sun Apr 15 15:08:32 EDT 2018 MAJOR=1 org.gradle.jvmargs=-Xmx3G MINOR=2 mc_version=1.12.2 jei_version=4.8.5.147 -BN=196 +BN=198 diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java index 7b8ebed..2a7bdfe 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/JeiBBSPlugin.java @@ -3,21 +3,16 @@ import com.rafacost3d.bbs_mod.init.BlocksInit; import com.rafacost3d.bbs_mod.integration.jei.microbrewer.MicroBrewerRecipeCategory; import com.rafacost3d.bbs_mod.integration.jei.microbrewer.MicroBrewerRecipeMaker; -import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerContainer; import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerGui; import com.rafacost3d.bbs_mod.objects.crops.CropRegistry; import mezz.jei.api.*; import mezz.jei.api.ingredients.IIngredientBlacklist; -import mezz.jei.api.ingredients.IIngredientRegistry; -import mezz.jei.api.recipe.IRecipeCategory; import mezz.jei.api.recipe.IRecipeCategoryRegistration; -import mezz.jei.api.recipe.transfer.IRecipeTransferRegistry; import net.minecraft.item.ItemStack; - import javax.annotation.Nonnull; @mezz.jei.api.JEIPlugin -public class JeiBBSPlugin extends BlankModPlugin { +public class JeiBBSPlugin implements IModPlugin { @Override public void registerCategories(IRecipeCategoryRegistration registry){ @@ -26,11 +21,8 @@ public void registerCategories(IRecipeCategoryRegistration registry){ registry.addRecipeCategories(new MicroBrewerRecipeCategory(gui)); } - @Override public void register(@Nonnull IModRegistry registry) { - - BBSMod.logger.info(">> Loading Beer Brewing Simulator Jei Plugin"); IIngredientBlacklist blacklist = registry.getJeiHelpers().getIngredientBlacklist(); blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltpilsen"))); @@ -38,16 +30,11 @@ public void register(@Nonnull IModRegistry registry) { blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltamber"))); blacklist.addIngredientToBlacklist(new ItemStack(CropRegistry.getSeed("maltdark"))); - final IIngredientRegistry ingredientRegistry = registry.getIngredientRegistry(); final IJeiHelpers jeiHelpers = registry.getJeiHelpers(); - //IRecipeTransferRegistry recipeTransfer = registry.getRecipeTransferRegistry(); registry.addRecipeCategoryCraftingItem(new ItemStack(BlocksInit.microBrewerBlock), RecipeCategories.MICRO); registry.addRecipes(MicroBrewerRecipeMaker.getRecipes(jeiHelpers), RecipeCategories.MICRO); registry.addRecipeClickArea(MicroBrewerGui.class, 44, 33, 24, 17, RecipeCategories.MICRO); - //recipeTransfer.addRecipeTransferHandler(MicroBrewerContainer.class, RecipeCategories.MICRO, 0, 1, 3, 36); - - registry.addDescription(new ItemStack(CropRegistry.getFood("admiral")), "Hop Type: " + "Bittering", "Alpha Acid: " + "14.5", "Description: \n" + "Citrus, Herbal"); registry.addDescription(new ItemStack(CropRegistry.getFood("ahtanum")), "Hop Type: " + "Aroma", "Alpha Acid: " + "5.5", "Description: \n" + "Earthy, Floral, Citrus"); @@ -186,7 +173,5 @@ public void register(@Nonnull IModRegistry registry) { registry.addDescription(new ItemStack(CropRegistry.getFood("zenith")), "Hop Type: " + "Bittering", "Alpha Acid: " + "9", "Description: \n" + "Floral, Spicy"); registry.addDescription(new ItemStack(CropRegistry.getFood("zeus")), "Hop Type: " + "Bittering", "Alpha Acid: " + "16", "Description: \n" + "Spicy, Herbal"); registry.addDescription(new ItemStack(CropRegistry.getFood("zythos")), "Hop Type: " + "Aroma", "Alpha Acid: " + "17", "Description: \n" + "Citrus, Tropical Fruit"); - - } -} +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java index 08a3b71..3ac4e34 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/RecipeCategories.java @@ -1,8 +1,7 @@ package com.rafacost3d.bbs_mod.integration.jei; - import com.rafacost3d.bbs_mod.util.Reference; public class RecipeCategories { public static final String MICRO = Reference.MODID + ".microbrewer"; -} +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java index 0696ba8..e55b829 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/AbstractMicroBrewerRecipeCategory.java @@ -2,7 +2,6 @@ import com.rafacost3d.bbs_mod.util.Reference; import mezz.jei.api.IGuiHelper; - import mezz.jei.api.gui.IDrawableAnimated; import mezz.jei.api.gui.IDrawableStatic; import mezz.jei.api.recipe.IRecipeCategory; @@ -10,23 +9,18 @@ import net.minecraft.util.ResourceLocation; public abstract class AbstractMicroBrewerRecipeCategory implements IRecipeCategory { - protected static final ResourceLocation TEXTURES = new ResourceLocation(Reference.MODID + ":textures/gui/microbrewergui.png"); protected static final int input1=0; protected static final int input2=1; protected static final int fuel=2; protected static final int output=3; - protected final IDrawableStatic staticFlame; protected final IDrawableAnimated animatedFlame; protected final IDrawableAnimated animatedArrow; - public AbstractMicroBrewerRecipeCategory(IGuiHelper helper){ staticFlame = helper.createDrawable(TEXTURES, 176,0,14,14); animatedFlame = helper.createAnimatedDrawable(staticFlame, 300, IDrawableAnimated.StartDirection.TOP, true); - IDrawableStatic staticArrow = helper.createDrawable(TEXTURES, 176, 14 ,24, 17 ); animatedArrow = helper.createAnimatedDrawable(staticArrow, 200, IDrawableAnimated.StartDirection.LEFT, false); } - -} +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java index fc450ce..d8f9244 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeCategory.java @@ -9,8 +9,6 @@ import mezz.jei.api.ingredients.IIngredients; import net.minecraft.client.Minecraft; -import javax.annotation.Nullable; - public class MicroBrewerRecipeCategory extends AbstractMicroBrewerRecipeCategory { private final IDrawable background; private final String name; @@ -41,7 +39,6 @@ public IDrawable getBackground() { return background; } - @Override public void drawExtras(Minecraft minecraft){ animatedFlame.draw(minecraft,4,42); @@ -56,5 +53,4 @@ public void setRecipe(IRecipeLayout iRecipeLayout, MicroBrewerRecipe microBrewer stacks.init(output, false, 76,23); stacks.set(iIngredients); } - -} +} \ No newline at end of file diff --git a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java index 358a0a1..e6693ff 100644 --- a/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java +++ b/src/main/java/com/rafacost3d/bbs_mod/integration/jei/microbrewer/MicroBrewerRecipeMaker.java @@ -4,9 +4,7 @@ import com.google.common.collect.Table; import com.rafacost3d.bbs_mod.objects.blocks.machines.MicroBrewer.MicroBrewerRecipes; import mezz.jei.api.IJeiHelpers; -import mezz.jei.api.recipe.IStackHelper; import net.minecraft.item.ItemStack; - import java.util.List; import java.util.Map; import java.util.Map.Entry; @@ -14,7 +12,6 @@ public class MicroBrewerRecipeMaker { public static List getRecipes(IJeiHelpers helpers) { - IStackHelper stackHelper = helpers.getStackHelper(); MicroBrewerRecipes instance = MicroBrewerRecipes.getInstance(); Table recipes = instance.getDualSmeltingList(); List jeiRecipes = Lists.newArrayList(); @@ -33,4 +30,4 @@ public static List getRecipes(IJeiHelpers helpers) } return jeiRecipes; } -} +} \ No newline at end of file diff --git a/version.json b/version.json index 3e5978f..35adea1 100644 --- a/version.json +++ b/version.json @@ -1,12 +1,12 @@ { "homepage": "https://github.com/rafacost/bbs_mod/releases", "1.12.2": { - "1.2.194": "https://github.com/rafacost/bbs_mod/releases/tag/1.2.194", + "1.2.197": "https://github.com/rafacost/bbs_mod/releases/tag/1.2.197", "1.1.185": "https://github.com/rafacost/bbs_mod/releases/tag/1.1.185", "1.0": "https://github.com/rafacost/bbs_mod/releases/tag/1.0" }, "promos": { - "1.12.2-latest": "1.2.194", - "1.12.2-recommended": "1.2.194" + "1.12.2-latest": "1.2.197", + "1.12.2-recommended": "1.2.197" } } \ No newline at end of file From 79aab1be4ecdbcef3a883498fa6ba40f9f696875 Mon Sep 17 00:00:00 2001 From: RafaCost3D Date: Sun, 25 Nov 2018 17:53:24 -0500 Subject: [PATCH 23/23] Update version.json --- version.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/version.json b/version.json index 35adea1..e8e608c 100644 --- a/version.json +++ b/version.json @@ -1,12 +1,13 @@ { "homepage": "https://github.com/rafacost/bbs_mod/releases", "1.12.2": { + "1.3.202": "https://github.com/rafacost/bbs_mod/releases/tag/1.3.202", "1.2.197": "https://github.com/rafacost/bbs_mod/releases/tag/1.2.197", "1.1.185": "https://github.com/rafacost/bbs_mod/releases/tag/1.1.185", "1.0": "https://github.com/rafacost/bbs_mod/releases/tag/1.0" }, "promos": { - "1.12.2-latest": "1.2.197", - "1.12.2-recommended": "1.2.197" + "1.12.2-latest": "1.3.202", + "1.12.2-recommended": "1.3.202" } -} \ No newline at end of file +}