├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── com │ └── simibubi │ └── mightyarchitect │ ├── AllBlocks.java │ ├── AllPackets.java │ ├── AllSpecialTextures.java │ ├── Events.java │ ├── Keybinds.java │ ├── MightyClient.java │ ├── TheMightyArchitect.java │ ├── block │ ├── DesignAnchorBlock.java │ └── SliceMarkerBlock.java │ ├── control │ ├── ArchitectKits.java │ ├── ArchitectManager.java │ ├── ArchitectMenu.java │ ├── Schematic.java │ ├── SchematicRenderer.java │ ├── TemplateBlockAccess.java │ ├── compose │ │ ├── Cuboid.java │ │ ├── CylinderStack.java │ │ ├── GroundPlan.java │ │ ├── Room.java │ │ ├── Stack.java │ │ └── planner │ │ │ ├── AbstractRoomFaceSelectionTool.java │ │ │ ├── ComposerToolBase.java │ │ │ ├── CopyDesignTool.java │ │ │ ├── CylinderRoomTool.java │ │ │ ├── GroundPlanningToolBase.java │ │ │ ├── HeightTool.java │ │ │ ├── IComposerTool.java │ │ │ ├── LayerStyleTool.java │ │ │ ├── MoveReshapeTool.java │ │ │ ├── PalettePainterTool.java │ │ │ ├── RerollTargetTool.java │ │ │ ├── RerollTool.java │ │ │ ├── RoofTool.java │ │ │ ├── RoomTool.java │ │ │ ├── StackTool.java │ │ │ ├── Tools.java │ │ │ └── WallDecorationToolBase.java │ ├── design │ │ ├── AssembledSketch.java │ │ ├── DesignExporter.java │ │ ├── DesignLayer.java │ │ ├── DesignPicker.java │ │ ├── DesignQuery.java │ │ ├── DesignResourceLoader.java │ │ ├── DesignSlice.java │ │ ├── DesignTheme.java │ │ ├── DesignType.java │ │ ├── RoomDesignCache.java │ │ ├── Sketch.java │ │ ├── TemporaryDesignCache.java │ │ ├── ThemeStatistics.java │ │ ├── ThemeStorage.java │ │ ├── ThemeValidator.java │ │ └── partials │ │ │ ├── Corner.java │ │ │ ├── Design.java │ │ │ ├── Facade.java │ │ │ ├── FlatRoof.java │ │ │ ├── Roof.java │ │ │ ├── Tower.java │ │ │ ├── TowerFlatRoof.java │ │ │ ├── TowerRoof.java │ │ │ ├── Trim.java │ │ │ └── Wall.java │ ├── palette │ │ ├── BlockLookup.java │ │ ├── BlockOrientation.java │ │ ├── GradientPaletteMapping.java │ │ ├── MultiPaletteMapping.java │ │ ├── NoisePaletteMapping.java │ │ ├── Palette.java │ │ ├── PaletteBlockInfo.java │ │ ├── PaletteBlockShape.java │ │ ├── PaletteDefinition.java │ │ ├── PaletteEditScreen.java │ │ ├── PaletteEntryButton.java │ │ ├── PaletteMapping.java │ │ ├── PalettePickerItemList.java │ │ ├── PaletteStorage.java │ │ └── SimplePaletteMapping.java │ ├── phase │ │ ├── ArchitectPhases.java │ │ ├── IArchitectPhase.java │ │ ├── IDrawBlockHighlights.java │ │ ├── IRenderGameOverlay.java │ │ ├── PhaseBase.java │ │ ├── PhaseComposing.java │ │ ├── PhaseCreatingPalette.java │ │ ├── PhaseEmpty.java │ │ ├── PhasePaused.java │ │ ├── PhasePreviewing.java │ │ ├── PrintingToMultiplayer.java │ │ └── export │ │ │ ├── PhaseEditTheme.java │ │ │ ├── PhaseListThemesForEditing.java │ │ │ └── PhaseManageThemes.java │ └── weathering │ │ ├── BlockShapeWeatherer.java │ │ ├── ClimbingFoliage.java │ │ ├── CornerErosionWeatherer.java │ │ ├── FloatingBlockCleanup.java │ │ ├── FoliageTest.java │ │ ├── HolePunchingWeatherer.java │ │ ├── PhaseWeathering.java │ │ ├── StepwiseWeathering.java │ │ ├── TreeFeatureFoliage.java │ │ └── WeathererCollection.java │ ├── foundation │ ├── BufferSourceAccess.java │ ├── DummyLevelEntityGetter.java │ ├── MatrixStacker.java │ ├── RenderTypes.java │ ├── SpriteShiftEntry.java │ ├── SuperByteBuffer.java │ ├── WrappedWorld.java │ └── utility │ │ ├── AngleHelper.java │ │ ├── AnimationTickHolder.java │ │ ├── BlockHelper.java │ │ ├── BuildingHelper.java │ │ ├── Color.java │ │ ├── ColorHelper.java │ │ ├── DesignHelper.java │ │ ├── FilesHelper.java │ │ ├── Iterate.java │ │ ├── Keyboard.java │ │ ├── Lang.java │ │ ├── LangBuilder.java │ │ ├── LangNumberFormat.java │ │ ├── LerpedFloat.java │ │ ├── RaycastHelper.java │ │ ├── ShaderManager.java │ │ ├── Shaders.java │ │ ├── TessellatorHelper.java │ │ ├── VecHelper.java │ │ └── outliner │ │ ├── AABBOutline.java │ │ ├── BlockClusterOutline.java │ │ ├── ChasingAABBOutline.java │ │ ├── ChasingLineOutline.java │ │ ├── EndChasingLineOutline.java │ │ ├── LineOutline.java │ │ ├── Outline.java │ │ ├── OutlinedText.java │ │ └── Outliner.java │ ├── gui │ ├── ArchitectMenuScreen.java │ ├── DesignExporterScreen.java │ ├── GradientBoxRenderer.java │ ├── GuiGameElement.java │ ├── NewSuperIconButton.java │ ├── PalettePickerScreen.java │ ├── ScreenHelper.java │ ├── ScreenResources.java │ ├── SimpleScreen.java │ ├── TextInputPromptScreen.java │ ├── ThemeSettingsScreen.java │ ├── ToolSelectionScreen.java │ └── widgets │ │ ├── IconButton.java │ │ ├── Indicator.java │ │ ├── Label.java │ │ ├── ScrollInput.java │ │ ├── SelectionScrollInput.java │ │ └── SimpleWidget.java │ └── networking │ ├── InstantPrintPacket.java │ ├── PlaceSignPacket.java │ └── SetHotbarItemPacket.java └── resources ├── META-INF ├── accesstransformer.cfg └── mods.toml ├── assets └── mightyarchitect │ ├── blockstates │ ├── design_anchor.json │ └── slice_marker.json │ ├── lang │ └── en_us.json │ ├── models │ ├── block │ │ ├── design_anchor.json │ │ ├── slice_marker.json │ │ ├── slice_marker_clone1.json │ │ ├── slice_marker_clone3.json │ │ ├── slice_marker_compass.json │ │ ├── slice_marker_maskabove.json │ │ ├── slice_marker_maskbelow.json │ │ ├── slice_marker_optional.json │ │ ├── slice_marker_particle.json │ │ └── slice_marker_standard.json │ └── item │ │ ├── design_anchor.json │ │ └── slice_marker.json │ ├── shaders │ ├── core │ │ ├── glowing_shader.fsh │ │ ├── glowing_shader.json │ │ └── glowing_shader.vsh │ ├── post │ │ └── blueprint.json │ └── program │ │ ├── blueprint.fsh │ │ └── blueprint.json │ └── textures │ ├── block │ ├── marker │ │ ├── blank.png │ │ ├── checkerboard.png │ │ ├── exporter.png │ │ ├── foundation.png │ │ ├── highlighted_checkerboard.png │ │ ├── inner.png │ │ ├── inner_selected.png │ │ ├── inner_super_selected.png │ │ ├── inner_transparent.png │ │ ├── normal.png │ │ ├── palette_changed.png │ │ ├── palette_unchanged.png │ │ ├── select.png │ │ ├── selection.png │ │ ├── thin_checkerboard.png │ │ ├── tower_foundation.png │ │ ├── tower_normal.png │ │ └── trim.png │ ├── slice_marker_clone1.png │ ├── slice_marker_clone3.png │ ├── slice_marker_maskabove.png │ ├── slice_marker_maskbelow.png │ ├── slice_marker_optional.png │ ├── slice_marker_plain.png │ ├── slice_marker_side.png │ └── slice_marker_top.png │ └── gui │ ├── background.png │ ├── composer.png │ ├── design_exporter.png │ ├── icons.png │ ├── palette_picker.png │ ├── player_inventory.png │ ├── theme_editor.png │ └── widgets.png ├── logo.png ├── old palettes ├── p0.json ├── p1.json ├── p10.json ├── p11.json ├── p12.json ├── p13.json ├── p14.json ├── p15.json ├── p16.json ├── p17.json ├── p18.json ├── p19.json ├── p2.json ├── p20.json ├── p3.json ├── p4.json ├── p5.json ├── p6.json ├── p7.json ├── p8.json └── p9.json ├── old themes ├── cattingham_palace │ ├── foundation │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ └── design_8.json │ │ ├── facade │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ └── design_3.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_19.json │ │ │ ├── design_2.json │ │ │ ├── design_20.json │ │ │ ├── design_21.json │ │ │ ├── design_22.json │ │ │ ├── design_23.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ ├── open │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ └── design_2.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_19.json │ │ │ ├── design_2.json │ │ │ ├── design_20.json │ │ │ ├── design_21.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ └── design_5.json │ ├── palette.json │ ├── palette2.json │ ├── regular │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ └── design_2.json │ │ ├── facade │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_19.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_19.json │ │ │ ├── design_2.json │ │ │ ├── design_20.json │ │ │ ├── design_21.json │ │ │ ├── design_22.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_19.json │ │ │ ├── design_2.json │ │ │ ├── design_20.json │ │ │ ├── design_21.json │ │ │ ├── design_22.json │ │ │ ├── design_23.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ ├── roofing │ │ ├── flatroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ └── design_3.json │ │ ├── roof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ ├── towerflatroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ └── design_7.json │ │ └── towerroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ └── design_7.json │ └── theme.json ├── fallback_theme │ ├── foundation │ │ ├── corner │ │ │ ├── design.json │ │ │ └── design_1.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ └── design_1.json │ ├── open │ │ ├── corner │ │ │ ├── design.json │ │ │ └── design_1.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ └── design_1.json │ ├── palette.json │ ├── palette2.json │ ├── regular │ │ ├── corner │ │ │ ├── design.json │ │ │ └── design_1.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ └── design_1.json │ ├── roofing │ │ ├── flatroof │ │ │ └── design.json │ │ ├── roof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ └── design_6.json │ │ ├── towerflatroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ └── design_4.json │ │ └── towerroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ └── design_4.json │ ├── special │ │ ├── corner │ │ │ ├── design.json │ │ │ └── design_1.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ └── design_1.json │ └── theme.json ├── medieval │ ├── foundation │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ ├── facade │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ └── design_2.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ ├── open │ │ ├── corner │ │ │ ├── design.json │ │ │ └── design_1.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_19.json │ │ │ ├── design_2.json │ │ │ ├── design_20.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ ├── palette.json │ ├── palette2.json │ ├── regular │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ ├── facade │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ └── design_2.json │ │ ├── tower │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_14.json │ │ │ ├── design_15.json │ │ │ ├── design_16.json │ │ │ ├── design_17.json │ │ │ ├── design_18.json │ │ │ ├── design_19.json │ │ │ ├── design_2.json │ │ │ ├── design_20.json │ │ │ ├── design_21.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ ├── roofing │ │ ├── flatroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ └── design_6.json │ │ ├── roof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_12.json │ │ │ ├── design_13.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ │ ├── towerflatroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ └── design_6.json │ │ └── towerroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ └── design_6.json │ └── theme.json ├── modern │ ├── foundation │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ └── design_6.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_10.json │ │ │ ├── design_11.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ ├── palette.json │ ├── palette2.json │ ├── regular │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ └── design_6.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ ├── design_5.json │ │ │ ├── design_6.json │ │ │ ├── design_7.json │ │ │ ├── design_8.json │ │ │ └── design_9.json │ ├── roofing │ │ └── flatroof │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ └── design_4.json │ ├── special │ │ ├── corner │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ └── design_3.json │ │ └── wall │ │ │ ├── design.json │ │ │ ├── design_1.json │ │ │ ├── design_2.json │ │ │ ├── design_3.json │ │ │ ├── design_4.json │ │ │ └── design_5.json │ └── theme.json └── town_house │ ├── foundation │ ├── corner │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ └── design_7.json │ ├── facade │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ └── design_6.json │ ├── tower │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_10.json │ │ ├── design_11.json │ │ ├── design_12.json │ │ ├── design_13.json │ │ ├── design_14.json │ │ ├── design_15.json │ │ ├── design_16.json │ │ ├── design_17.json │ │ ├── design_18.json │ │ ├── design_19.json │ │ ├── design_2.json │ │ ├── design_20.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ ├── design_8.json │ │ └── design_9.json │ └── wall │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_10.json │ │ ├── design_11.json │ │ ├── design_12.json │ │ ├── design_13.json │ │ ├── design_14.json │ │ ├── design_15.json │ │ ├── design_16.json │ │ ├── design_17.json │ │ ├── design_18.json │ │ ├── design_19.json │ │ ├── design_2.json │ │ ├── design_20.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ ├── design_8.json │ │ └── design_9.json │ ├── palette.json │ ├── palette2.json │ ├── regular │ ├── corner │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_10.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ ├── design_8.json │ │ └── design_9.json │ ├── facade │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_2.json │ │ └── design_3.json │ ├── tower │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_10.json │ │ ├── design_11.json │ │ ├── design_12.json │ │ ├── design_13.json │ │ ├── design_14.json │ │ ├── design_15.json │ │ ├── design_16.json │ │ ├── design_17.json │ │ ├── design_18.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ ├── design_8.json │ │ └── design_9.json │ └── wall │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_10.json │ │ ├── design_11.json │ │ ├── design_12.json │ │ ├── design_13.json │ │ ├── design_14.json │ │ ├── design_15.json │ │ ├── design_16.json │ │ ├── design_17.json │ │ ├── design_18.json │ │ ├── design_19.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ ├── design_8.json │ │ └── design_9.json │ ├── roofing │ ├── flatroof │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ └── design_5.json │ ├── roof │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_10.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ ├── design_8.json │ │ └── design_9.json │ ├── towerflatroof │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ └── design_8.json │ └── towerroof │ │ ├── design.json │ │ ├── design_1.json │ │ ├── design_2.json │ │ ├── design_3.json │ │ ├── design_4.json │ │ ├── design_5.json │ │ ├── design_6.json │ │ ├── design_7.json │ │ ├── design_8.json │ │ └── design_9.json │ └── theme.json └── pack.mcmeta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/AllBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/AllBlocks.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/AllPackets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/AllPackets.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/AllSpecialTextures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/AllSpecialTextures.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/Events.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/Events.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/Keybinds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/Keybinds.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/MightyClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/MightyClient.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/TheMightyArchitect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/TheMightyArchitect.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/block/DesignAnchorBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/block/DesignAnchorBlock.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/block/SliceMarkerBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/block/SliceMarkerBlock.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/ArchitectKits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/ArchitectKits.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/ArchitectManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/ArchitectManager.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/ArchitectMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/ArchitectMenu.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/Schematic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/Schematic.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/SchematicRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/SchematicRenderer.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/TemplateBlockAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/TemplateBlockAccess.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/compose/Cuboid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/compose/Cuboid.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/compose/CylinderStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/compose/CylinderStack.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/compose/GroundPlan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/compose/GroundPlan.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/compose/Room.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/compose/Room.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/compose/Stack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/compose/Stack.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/compose/planner/Tools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/compose/planner/Tools.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/DesignExporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/DesignExporter.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/DesignLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/DesignLayer.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/DesignPicker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/DesignPicker.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/DesignQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/DesignQuery.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/DesignSlice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/DesignSlice.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/DesignTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/DesignTheme.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/DesignType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/DesignType.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/Sketch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/Sketch.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/ThemeStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/ThemeStorage.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/ThemeValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/ThemeValidator.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/partials/Roof.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/partials/Roof.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/design/partials/Tower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/design/partials/Tower.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/palette/BlockLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/palette/BlockLookup.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/palette/Palette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/palette/Palette.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/phase/PhaseBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/phase/PhaseBase.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/phase/PhaseEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/phase/PhaseEmpty.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/control/phase/PhasePaused.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/control/phase/PhasePaused.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/MatrixStacker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/MatrixStacker.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/RenderTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/RenderTypes.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/SpriteShiftEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/SpriteShiftEntry.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/SuperByteBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/SuperByteBuffer.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/WrappedWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/WrappedWorld.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/utility/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/utility/Color.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/utility/Iterate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/utility/Iterate.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/utility/Keyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/utility/Keyboard.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/utility/Lang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/utility/Lang.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/foundation/utility/Shaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/foundation/utility/Shaders.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/ArchitectMenuScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/ArchitectMenuScreen.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/DesignExporterScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/DesignExporterScreen.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/GradientBoxRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/GradientBoxRenderer.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/GuiGameElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/GuiGameElement.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/NewSuperIconButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/NewSuperIconButton.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/PalettePickerScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/PalettePickerScreen.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/ScreenHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/ScreenHelper.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/ScreenResources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/ScreenResources.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/SimpleScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/SimpleScreen.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/TextInputPromptScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/TextInputPromptScreen.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/ThemeSettingsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/ThemeSettingsScreen.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/ToolSelectionScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/ToolSelectionScreen.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/widgets/IconButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/widgets/IconButton.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/widgets/Indicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/widgets/Indicator.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/widgets/Label.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/widgets/Label.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/widgets/ScrollInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/widgets/ScrollInput.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/gui/widgets/SimpleWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/gui/widgets/SimpleWidget.java -------------------------------------------------------------------------------- /src/main/java/com/simibubi/mightyarchitect/networking/PlaceSignPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/java/com/simibubi/mightyarchitect/networking/PlaceSignPacket.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/blockstates/design_anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/blockstates/design_anchor.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/blockstates/slice_marker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/blockstates/slice_marker.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/models/block/design_anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/models/block/design_anchor.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/models/block/slice_marker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/models/block/slice_marker.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/models/item/design_anchor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mightyarchitect:block/design_anchor" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/models/item/slice_marker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/models/item/slice_marker.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/shaders/core/glowing_shader.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/shaders/core/glowing_shader.fsh -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/shaders/core/glowing_shader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/shaders/core/glowing_shader.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/shaders/core/glowing_shader.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/shaders/core/glowing_shader.vsh -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/shaders/post/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/shaders/post/blueprint.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/shaders/program/blueprint.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/shaders/program/blueprint.fsh -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/shaders/program/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/shaders/program/blueprint.json -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/block/marker/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/block/marker/blank.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/block/marker/inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/block/marker/inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/block/marker/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/block/marker/normal.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/block/marker/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/block/marker/select.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/block/marker/trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/block/marker/trim.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/background.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/composer.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/design_exporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/design_exporter.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/icons.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/palette_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/palette_picker.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/player_inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/player_inventory.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/theme_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/theme_editor.png -------------------------------------------------------------------------------- /src/main/resources/assets/mightyarchitect/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/assets/mightyarchitect/textures/gui/widgets.png -------------------------------------------------------------------------------- /src/main/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/logo.png -------------------------------------------------------------------------------- /src/main/resources/old palettes/p0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p0.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p1.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p10.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p11.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p12.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p13.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p14.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p15.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p16.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p17.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p18.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p19.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p2.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p20.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p3.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p4.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p5.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p6.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p7.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p8.json -------------------------------------------------------------------------------- /src/main/resources/old palettes/p9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old palettes/p9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/foundation/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/foundation/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_19.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_20.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_21.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/open/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/open/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/palette.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/palette2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/palette2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/facade/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/facade/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_19.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_20.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_21.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_22.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_23.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/regular/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/regular/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/roofing/roof/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/roofing/roof/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/cattingham_palace/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/cattingham_palace/theme.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/foundation/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/foundation/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/open/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/open/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/palette.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/palette2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/palette2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/regular/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/regular/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/flatroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/flatroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/roof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/roof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/roof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/roof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/roof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/roof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/roof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/roof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/roof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/roof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/roof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/roof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/roof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/roof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/roofing/towerroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/roofing/towerroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/special/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/special/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/fallback_theme/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/fallback_theme/theme.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/corner/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/corner/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/facade/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/facade/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/facade/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/facade/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/facade/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/facade/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/foundation/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/foundation/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_19.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_20.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/open/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/open/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/palette.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/palette2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/palette2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/corner/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/corner/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/facade/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/facade/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/facade/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/facade/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/facade/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/facade/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_19.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_20.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_21.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/regular/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/regular/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/flatroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/flatroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/flatroof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/flatroof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/flatroof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/flatroof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/flatroof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/flatroof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/flatroof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/flatroof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/flatroof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/flatroof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/flatroof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/flatroof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/roof/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/roof/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerflatroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerflatroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerflatroof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerflatroof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerflatroof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerflatroof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerflatroof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerflatroof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerflatroof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerflatroof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerflatroof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerflatroof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerflatroof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerflatroof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerroof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerroof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerroof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerroof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerroof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerroof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerroof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerroof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerroof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerroof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/roofing/towerroof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/roofing/towerroof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/medieval/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/medieval/theme.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/corner/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/corner/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/corner/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/corner/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/corner/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/corner/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/corner/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/corner/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/foundation/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/foundation/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/palette.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/palette2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/palette2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/corner/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/corner/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/corner/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/corner/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/corner/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/corner/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/corner/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/corner/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/regular/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/regular/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/roofing/flatroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/roofing/flatroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/roofing/flatroof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/roofing/flatroof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/roofing/flatroof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/roofing/flatroof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/roofing/flatroof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/roofing/flatroof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/roofing/flatroof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/roofing/flatroof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/corner/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/corner/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/special/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/special/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/modern/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/modern/theme.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/corner/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/corner/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/facade/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/facade/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/facade/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/facade/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/facade/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/facade/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/facade/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/facade/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/facade/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/facade/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/facade/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/facade/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/facade/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/facade/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_19.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_20.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_19.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_20.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/foundation/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/foundation/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/palette.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/palette2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/palette2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/corner/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/corner/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/facade/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/facade/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/facade/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/facade/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/facade/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/facade/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/facade/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/facade/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/tower/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/tower/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_11.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_12.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_13.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_14.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_15.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_16.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_17.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_18.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_19.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/regular/wall/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/regular/wall/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/flatroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/flatroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/flatroof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/flatroof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/flatroof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/flatroof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/flatroof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/flatroof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/flatroof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/flatroof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/flatroof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/flatroof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_10.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/roof/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/roof/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerflatroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerflatroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_1.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_2.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_3.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_4.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_5.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_6.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_7.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_8.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/roofing/towerroof/design_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/roofing/towerroof/design_9.json -------------------------------------------------------------------------------- /src/main/resources/old themes/town_house/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/old themes/town_house/theme.json -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/TheMightyArchitect/HEAD/src/main/resources/pack.mcmeta --------------------------------------------------------------------------------