├── .architectury-transformer └── debug.log ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── gradle.yml ├── .gitignore ├── LICENSE.md ├── build.gradle.kts ├── common ├── build.gradle.kts └── src │ └── main │ ├── config │ └── org │ │ └── dimdev │ │ └── dimdoors │ │ └── client │ │ └── util │ │ ├── Category.java │ │ ├── Expose.java │ │ ├── IntSet.java │ │ ├── Private.java │ │ ├── RequiresRestart.java │ │ ├── Title.java │ │ ├── Tooltip.java │ │ └── Tooltips.java │ ├── generated │ ├── .cache │ │ ├── 397bd37486333f7893ebf0a66cef598e8a391c11 │ │ ├── 3dad05300b54e7e69c4ef97dfd4c2c3fa20d6438 │ │ ├── 898aad242e27bc0f47ec897c01669fc0cf08105b │ │ ├── 98cdb259f8728926214a99c1f7fcef1c9186eae7 │ │ ├── a754887a373cf9742939cbe9586f86b5c3844afc │ │ ├── b123d588c0f76272245a30abcade1ebc4acd0a3b │ │ ├── c44850957e3e875aee16c04fb046bba622b1e204 │ │ ├── c6f2996b6c9979691cc9388d7b14d1d055ccc0a0 │ │ └── d9175cf46bb93592c2bf017439d9f3766ee8dd96 │ ├── assets │ │ ├── dimdoors │ │ │ ├── blockstates │ │ │ │ ├── amalgam_block.json │ │ │ │ ├── amalgam_door.json │ │ │ │ ├── amalgam_ore.json │ │ │ │ ├── amalgam_slab.json │ │ │ │ ├── amalgam_stairs.json │ │ │ │ ├── amalgam_trapdoor.json │ │ │ │ ├── clay_button.json │ │ │ │ ├── clay_fence.json │ │ │ │ ├── clay_gate.json │ │ │ │ ├── clay_slab.json │ │ │ │ ├── clay_stairs.json │ │ │ │ ├── clay_wall.json │ │ │ │ ├── clod_block.json │ │ │ │ ├── clod_ore.json │ │ │ │ ├── dark_sand.json │ │ │ │ ├── dark_sand_button.json │ │ │ │ ├── dark_sand_fence.json │ │ │ │ ├── dark_sand_slab.json │ │ │ │ ├── dark_sand_stairs.json │ │ │ │ ├── dark_sand_wall.json │ │ │ │ ├── deepslate_slab.json │ │ │ │ ├── deepslate_stairs.json │ │ │ │ ├── deepslate_wall.json │ │ │ │ ├── driftwood_button.json │ │ │ │ ├── driftwood_door.json │ │ │ │ ├── driftwood_fence.json │ │ │ │ ├── driftwood_gate.json │ │ │ │ ├── driftwood_leaves.json │ │ │ │ ├── driftwood_log.json │ │ │ │ ├── driftwood_planks.json │ │ │ │ ├── driftwood_sapling.json │ │ │ │ ├── driftwood_slab.json │ │ │ │ ├── driftwood_stairs.json │ │ │ │ ├── driftwood_trapdoor.json │ │ │ │ ├── driftwood_wood.json │ │ │ │ ├── end_stone_slab.json │ │ │ │ ├── end_stone_stairs.json │ │ │ │ ├── end_stone_wall.json │ │ │ │ ├── gold_door.json │ │ │ │ ├── gravel_button.json │ │ │ │ ├── gravel_fence.json │ │ │ │ ├── gravel_slab.json │ │ │ │ ├── gravel_stairs.json │ │ │ │ ├── gravel_wall.json │ │ │ │ ├── gritty_stone.json │ │ │ │ ├── mud_button.json │ │ │ │ ├── mud_fence.json │ │ │ │ ├── mud_gate.json │ │ │ │ ├── mud_slab.json │ │ │ │ ├── mud_stairs.json │ │ │ │ ├── netherrack_fence.json │ │ │ │ ├── netherrack_slab.json │ │ │ │ ├── netherrack_stairs.json │ │ │ │ ├── netherrack_wall.json │ │ │ │ ├── quartz_door.json │ │ │ │ ├── reality_sponge.json │ │ │ │ ├── red_sand_slab.json │ │ │ │ ├── red_sand_stairs.json │ │ │ │ ├── red_sand_wall.json │ │ │ │ ├── rust.json │ │ │ │ ├── sand_slab.json │ │ │ │ ├── sand_stairs.json │ │ │ │ ├── sand_wall.json │ │ │ │ ├── stone_door.json │ │ │ │ ├── unraveled_button.json │ │ │ │ ├── unraveled_fence.json │ │ │ │ ├── unraveled_gate.json │ │ │ │ ├── unraveled_slab.json │ │ │ │ ├── unraveled_spike.json │ │ │ │ ├── unraveled_stairs.json │ │ │ │ └── unravelled_fabric.json │ │ │ └── models │ │ │ │ ├── block │ │ │ │ ├── amalgam_block.json │ │ │ │ ├── amalgam_door_bottom_left.json │ │ │ │ ├── amalgam_door_bottom_left_open.json │ │ │ │ ├── amalgam_door_bottom_right.json │ │ │ │ ├── amalgam_door_bottom_right_open.json │ │ │ │ ├── amalgam_door_top_left.json │ │ │ │ ├── amalgam_door_top_left_open.json │ │ │ │ ├── amalgam_door_top_right.json │ │ │ │ ├── amalgam_door_top_right_open.json │ │ │ │ ├── amalgam_ore.json │ │ │ │ ├── amalgam_slab.json │ │ │ │ ├── amalgam_slab_top.json │ │ │ │ ├── amalgam_stairs.json │ │ │ │ ├── amalgam_stairs_inner.json │ │ │ │ ├── amalgam_stairs_outer.json │ │ │ │ ├── amalgam_trapdoor_bottom.json │ │ │ │ ├── amalgam_trapdoor_open.json │ │ │ │ ├── amalgam_trapdoor_top.json │ │ │ │ ├── clay_button.json │ │ │ │ ├── clay_button_inventory.json │ │ │ │ ├── clay_button_pressed.json │ │ │ │ ├── clay_fence_inventory.json │ │ │ │ ├── clay_fence_post.json │ │ │ │ ├── clay_fence_side.json │ │ │ │ ├── clay_gate.json │ │ │ │ ├── clay_gate_open.json │ │ │ │ ├── clay_gate_wall.json │ │ │ │ ├── clay_gate_wall_open.json │ │ │ │ ├── clay_slab.json │ │ │ │ ├── clay_slab_top.json │ │ │ │ ├── clay_stairs.json │ │ │ │ ├── clay_stairs_inner.json │ │ │ │ ├── clay_stairs_outer.json │ │ │ │ ├── clay_wall_inventory.json │ │ │ │ ├── clay_wall_post.json │ │ │ │ ├── clay_wall_side.json │ │ │ │ ├── clay_wall_side_tall.json │ │ │ │ ├── clod_block.json │ │ │ │ ├── clod_ore.json │ │ │ │ ├── dark_sand.json │ │ │ │ ├── dark_sand_button.json │ │ │ │ ├── dark_sand_button_inventory.json │ │ │ │ ├── dark_sand_button_pressed.json │ │ │ │ ├── dark_sand_fence_inventory.json │ │ │ │ ├── dark_sand_fence_post.json │ │ │ │ ├── dark_sand_fence_side.json │ │ │ │ ├── dark_sand_slab.json │ │ │ │ ├── dark_sand_slab_top.json │ │ │ │ ├── dark_sand_stairs.json │ │ │ │ ├── dark_sand_stairs_inner.json │ │ │ │ ├── dark_sand_stairs_outer.json │ │ │ │ ├── dark_sand_wall_inventory.json │ │ │ │ ├── dark_sand_wall_post.json │ │ │ │ ├── dark_sand_wall_side.json │ │ │ │ ├── dark_sand_wall_side_tall.json │ │ │ │ ├── deepslate_slab.json │ │ │ │ ├── deepslate_slab_top.json │ │ │ │ ├── deepslate_stairs.json │ │ │ │ ├── deepslate_stairs_inner.json │ │ │ │ ├── deepslate_stairs_outer.json │ │ │ │ ├── deepslate_wall_inventory.json │ │ │ │ ├── deepslate_wall_post.json │ │ │ │ ├── deepslate_wall_side.json │ │ │ │ ├── deepslate_wall_side_tall.json │ │ │ │ ├── driftwood_button.json │ │ │ │ ├── driftwood_button_inventory.json │ │ │ │ ├── driftwood_button_pressed.json │ │ │ │ ├── driftwood_door_bottom_left.json │ │ │ │ ├── driftwood_door_bottom_left_open.json │ │ │ │ ├── driftwood_door_bottom_right.json │ │ │ │ ├── driftwood_door_bottom_right_open.json │ │ │ │ ├── driftwood_door_top_left.json │ │ │ │ ├── driftwood_door_top_left_open.json │ │ │ │ ├── driftwood_door_top_right.json │ │ │ │ ├── driftwood_door_top_right_open.json │ │ │ │ ├── driftwood_fence_inventory.json │ │ │ │ ├── driftwood_fence_post.json │ │ │ │ ├── driftwood_fence_side.json │ │ │ │ ├── driftwood_gate.json │ │ │ │ ├── driftwood_gate_open.json │ │ │ │ ├── driftwood_gate_wall.json │ │ │ │ ├── driftwood_gate_wall_open.json │ │ │ │ ├── driftwood_leaves.json │ │ │ │ ├── driftwood_log.json │ │ │ │ ├── driftwood_planks.json │ │ │ │ ├── driftwood_sapling.json │ │ │ │ ├── driftwood_slab.json │ │ │ │ ├── driftwood_slab_top.json │ │ │ │ ├── driftwood_stairs.json │ │ │ │ ├── driftwood_stairs_inner.json │ │ │ │ ├── driftwood_stairs_outer.json │ │ │ │ ├── driftwood_trapdoor_bottom.json │ │ │ │ ├── driftwood_trapdoor_open.json │ │ │ │ ├── driftwood_trapdoor_top.json │ │ │ │ ├── driftwood_wood.json │ │ │ │ ├── end_stone_slab.json │ │ │ │ ├── end_stone_slab_top.json │ │ │ │ ├── end_stone_stairs.json │ │ │ │ ├── end_stone_stairs_inner.json │ │ │ │ ├── end_stone_stairs_outer.json │ │ │ │ ├── end_stone_wall_inventory.json │ │ │ │ ├── end_stone_wall_post.json │ │ │ │ ├── end_stone_wall_side.json │ │ │ │ ├── end_stone_wall_side_tall.json │ │ │ │ ├── gold_door_bottom_left.json │ │ │ │ ├── gold_door_bottom_left_open.json │ │ │ │ ├── gold_door_bottom_right.json │ │ │ │ ├── gold_door_bottom_right_open.json │ │ │ │ ├── gold_door_top_left.json │ │ │ │ ├── gold_door_top_left_open.json │ │ │ │ ├── gold_door_top_right.json │ │ │ │ ├── gold_door_top_right_open.json │ │ │ │ ├── gravel_button.json │ │ │ │ ├── gravel_button_inventory.json │ │ │ │ ├── gravel_button_pressed.json │ │ │ │ ├── gravel_fence_inventory.json │ │ │ │ ├── gravel_fence_post.json │ │ │ │ ├── gravel_fence_side.json │ │ │ │ ├── gravel_slab.json │ │ │ │ ├── gravel_slab_top.json │ │ │ │ ├── gravel_stairs.json │ │ │ │ ├── gravel_stairs_inner.json │ │ │ │ ├── gravel_stairs_outer.json │ │ │ │ ├── gravel_wall_inventory.json │ │ │ │ ├── gravel_wall_post.json │ │ │ │ ├── gravel_wall_side.json │ │ │ │ ├── gravel_wall_side_tall.json │ │ │ │ ├── gritty_stone.json │ │ │ │ ├── mud_button.json │ │ │ │ ├── mud_button_inventory.json │ │ │ │ ├── mud_button_pressed.json │ │ │ │ ├── mud_fence_inventory.json │ │ │ │ ├── mud_fence_post.json │ │ │ │ ├── mud_fence_side.json │ │ │ │ ├── mud_gate.json │ │ │ │ ├── mud_gate_open.json │ │ │ │ ├── mud_gate_wall.json │ │ │ │ ├── mud_gate_wall_open.json │ │ │ │ ├── mud_slab.json │ │ │ │ ├── mud_slab_top.json │ │ │ │ ├── mud_stairs.json │ │ │ │ ├── mud_stairs_inner.json │ │ │ │ ├── mud_stairs_outer.json │ │ │ │ ├── netherrack_fence_inventory.json │ │ │ │ ├── netherrack_fence_post.json │ │ │ │ ├── netherrack_fence_side.json │ │ │ │ ├── netherrack_slab.json │ │ │ │ ├── netherrack_slab_top.json │ │ │ │ ├── netherrack_stairs.json │ │ │ │ ├── netherrack_stairs_inner.json │ │ │ │ ├── netherrack_stairs_outer.json │ │ │ │ ├── netherrack_wall_inventory.json │ │ │ │ ├── netherrack_wall_post.json │ │ │ │ ├── netherrack_wall_side.json │ │ │ │ ├── netherrack_wall_side_tall.json │ │ │ │ ├── quartz_door_bottom_left.json │ │ │ │ ├── quartz_door_bottom_left_open.json │ │ │ │ ├── quartz_door_bottom_right.json │ │ │ │ ├── quartz_door_bottom_right_open.json │ │ │ │ ├── quartz_door_top_left.json │ │ │ │ ├── quartz_door_top_left_open.json │ │ │ │ ├── quartz_door_top_right.json │ │ │ │ ├── quartz_door_top_right_open.json │ │ │ │ ├── reality_sponge.json │ │ │ │ ├── red_sand_slab.json │ │ │ │ ├── red_sand_slab_top.json │ │ │ │ ├── red_sand_stairs.json │ │ │ │ ├── red_sand_stairs_inner.json │ │ │ │ ├── red_sand_stairs_outer.json │ │ │ │ ├── red_sand_wall_inventory.json │ │ │ │ ├── red_sand_wall_post.json │ │ │ │ ├── red_sand_wall_side.json │ │ │ │ ├── red_sand_wall_side_tall.json │ │ │ │ ├── rust.json │ │ │ │ ├── sand_slab.json │ │ │ │ ├── sand_slab_top.json │ │ │ │ ├── sand_stairs.json │ │ │ │ ├── sand_stairs_inner.json │ │ │ │ ├── sand_stairs_outer.json │ │ │ │ ├── sand_wall_inventory.json │ │ │ │ ├── sand_wall_post.json │ │ │ │ ├── sand_wall_side.json │ │ │ │ ├── sand_wall_side_tall.json │ │ │ │ ├── stone_door_bottom_left.json │ │ │ │ ├── stone_door_bottom_left_open.json │ │ │ │ ├── stone_door_bottom_right.json │ │ │ │ ├── stone_door_bottom_right_open.json │ │ │ │ ├── stone_door_top_left.json │ │ │ │ ├── stone_door_top_left_open.json │ │ │ │ ├── stone_door_top_right.json │ │ │ │ ├── stone_door_top_right_open.json │ │ │ │ ├── unraveled_button.json │ │ │ │ ├── unraveled_button_inventory.json │ │ │ │ ├── unraveled_button_pressed.json │ │ │ │ ├── unraveled_fence_inventory.json │ │ │ │ ├── unraveled_fence_post.json │ │ │ │ ├── unraveled_fence_side.json │ │ │ │ ├── unraveled_gate.json │ │ │ │ ├── unraveled_gate_open.json │ │ │ │ ├── unraveled_gate_wall.json │ │ │ │ ├── unraveled_gate_wall_open.json │ │ │ │ ├── unraveled_slab.json │ │ │ │ ├── unraveled_slab_top.json │ │ │ │ ├── unraveled_spike_down_base.json │ │ │ │ ├── unraveled_spike_down_frustum.json │ │ │ │ ├── unraveled_spike_down_middle.json │ │ │ │ ├── unraveled_spike_down_tip.json │ │ │ │ ├── unraveled_spike_down_tip_merge.json │ │ │ │ ├── unraveled_spike_up_base.json │ │ │ │ ├── unraveled_spike_up_frustum.json │ │ │ │ ├── unraveled_spike_up_middle.json │ │ │ │ ├── unraveled_spike_up_tip.json │ │ │ │ ├── unraveled_spike_up_tip_merge.json │ │ │ │ ├── unraveled_stairs.json │ │ │ │ ├── unraveled_stairs_inner.json │ │ │ │ ├── unraveled_stairs_outer.json │ │ │ │ └── unravelled_fabric.json │ │ │ │ └── item │ │ │ │ ├── amalgam_block.json │ │ │ │ ├── amalgam_door.json │ │ │ │ ├── amalgam_lump.json │ │ │ │ ├── amalgam_ore.json │ │ │ │ ├── amalgam_slab.json │ │ │ │ ├── amalgam_stairs.json │ │ │ │ ├── amalgam_trapdoor.json │ │ │ │ ├── clay_button.json │ │ │ │ ├── clay_fence.json │ │ │ │ ├── clay_gate.json │ │ │ │ ├── clay_slab.json │ │ │ │ ├── clay_stairs.json │ │ │ │ ├── clay_wall.json │ │ │ │ ├── clod.json │ │ │ │ ├── clod_block.json │ │ │ │ ├── clod_ore.json │ │ │ │ ├── dark_sand.json │ │ │ │ ├── dark_sand_button.json │ │ │ │ ├── dark_sand_fence.json │ │ │ │ ├── dark_sand_slab.json │ │ │ │ ├── dark_sand_stairs.json │ │ │ │ ├── dark_sand_wall.json │ │ │ │ ├── deepslate_slab.json │ │ │ │ ├── deepslate_stairs.json │ │ │ │ ├── deepslate_wall.json │ │ │ │ ├── driftwood_button.json │ │ │ │ ├── driftwood_door.json │ │ │ │ ├── driftwood_fence.json │ │ │ │ ├── driftwood_gate.json │ │ │ │ ├── driftwood_leaves.json │ │ │ │ ├── driftwood_log.json │ │ │ │ ├── driftwood_planks.json │ │ │ │ ├── driftwood_sapling.json │ │ │ │ ├── driftwood_slab.json │ │ │ │ ├── driftwood_stairs.json │ │ │ │ ├── driftwood_trapdoor.json │ │ │ │ ├── driftwood_wood.json │ │ │ │ ├── end_stone_slab.json │ │ │ │ ├── end_stone_stairs.json │ │ │ │ ├── end_stone_wall.json │ │ │ │ ├── enduring_fibers.json │ │ │ │ ├── fabric_of_finality.json │ │ │ │ ├── fuzzy_fireball.json │ │ │ │ ├── garment_of_reality_boots.json │ │ │ │ ├── garment_of_reality_boots_amethyst_trim.json │ │ │ │ ├── garment_of_reality_boots_copper_trim.json │ │ │ │ ├── garment_of_reality_boots_diamond_trim.json │ │ │ │ ├── garment_of_reality_boots_emerald_trim.json │ │ │ │ ├── garment_of_reality_boots_gold_trim.json │ │ │ │ ├── garment_of_reality_boots_iron_trim.json │ │ │ │ ├── garment_of_reality_boots_lapis_trim.json │ │ │ │ ├── garment_of_reality_boots_netherite_trim.json │ │ │ │ ├── garment_of_reality_boots_quartz_trim.json │ │ │ │ ├── garment_of_reality_boots_redstone_trim.json │ │ │ │ ├── garment_of_reality_chestplate.json │ │ │ │ ├── garment_of_reality_chestplate_amethyst_trim.json │ │ │ │ ├── garment_of_reality_chestplate_copper_trim.json │ │ │ │ ├── garment_of_reality_chestplate_diamond_trim.json │ │ │ │ ├── garment_of_reality_chestplate_emerald_trim.json │ │ │ │ ├── garment_of_reality_chestplate_gold_trim.json │ │ │ │ ├── garment_of_reality_chestplate_iron_trim.json │ │ │ │ ├── garment_of_reality_chestplate_lapis_trim.json │ │ │ │ ├── garment_of_reality_chestplate_netherite_trim.json │ │ │ │ ├── garment_of_reality_chestplate_quartz_trim.json │ │ │ │ ├── garment_of_reality_chestplate_redstone_trim.json │ │ │ │ ├── garment_of_reality_helmet.json │ │ │ │ ├── garment_of_reality_helmet_amethyst_trim.json │ │ │ │ ├── garment_of_reality_helmet_copper_trim.json │ │ │ │ ├── garment_of_reality_helmet_diamond_trim.json │ │ │ │ ├── garment_of_reality_helmet_emerald_trim.json │ │ │ │ ├── garment_of_reality_helmet_gold_trim.json │ │ │ │ ├── garment_of_reality_helmet_iron_trim.json │ │ │ │ ├── garment_of_reality_helmet_lapis_trim.json │ │ │ │ ├── garment_of_reality_helmet_netherite_trim.json │ │ │ │ ├── garment_of_reality_helmet_quartz_trim.json │ │ │ │ ├── garment_of_reality_helmet_redstone_trim.json │ │ │ │ ├── garment_of_reality_leggings.json │ │ │ │ ├── garment_of_reality_leggings_amethyst_trim.json │ │ │ │ ├── garment_of_reality_leggings_copper_trim.json │ │ │ │ ├── garment_of_reality_leggings_diamond_trim.json │ │ │ │ ├── garment_of_reality_leggings_emerald_trim.json │ │ │ │ ├── garment_of_reality_leggings_gold_trim.json │ │ │ │ ├── garment_of_reality_leggings_iron_trim.json │ │ │ │ ├── garment_of_reality_leggings_lapis_trim.json │ │ │ │ ├── garment_of_reality_leggings_netherite_trim.json │ │ │ │ ├── garment_of_reality_leggings_quartz_trim.json │ │ │ │ ├── garment_of_reality_leggings_redstone_trim.json │ │ │ │ ├── gold_door.json │ │ │ │ ├── gravel_button.json │ │ │ │ ├── gravel_fence.json │ │ │ │ ├── gravel_slab.json │ │ │ │ ├── gravel_stairs.json │ │ │ │ ├── gravel_wall.json │ │ │ │ ├── gritty_stone.json │ │ │ │ ├── liminal_lint.json │ │ │ │ ├── mud_button.json │ │ │ │ ├── mud_fence.json │ │ │ │ ├── mud_gate.json │ │ │ │ ├── mud_slab.json │ │ │ │ ├── mud_stairs.json │ │ │ │ ├── netherrack_fence.json │ │ │ │ ├── netherrack_slab.json │ │ │ │ ├── netherrack_stairs.json │ │ │ │ ├── netherrack_wall.json │ │ │ │ ├── quartz_door.json │ │ │ │ ├── reality_sponge.json │ │ │ │ ├── red_sand_slab.json │ │ │ │ ├── red_sand_stairs.json │ │ │ │ ├── red_sand_wall.json │ │ │ │ ├── rift_pearl.json │ │ │ │ ├── rust.json │ │ │ │ ├── sand_slab.json │ │ │ │ ├── sand_stairs.json │ │ │ │ ├── sand_wall.json │ │ │ │ ├── stone_door.json │ │ │ │ ├── unraveled_button.json │ │ │ │ ├── unraveled_fence.json │ │ │ │ ├── unraveled_gate.json │ │ │ │ ├── unraveled_slab.json │ │ │ │ ├── unraveled_stairs.json │ │ │ │ ├── unravelled_fabric.json │ │ │ │ ├── world_thread_boots.json │ │ │ │ ├── world_thread_boots_amethyst_trim.json │ │ │ │ ├── world_thread_boots_copper_trim.json │ │ │ │ ├── world_thread_boots_diamond_trim.json │ │ │ │ ├── world_thread_boots_emerald_trim.json │ │ │ │ ├── world_thread_boots_gold_trim.json │ │ │ │ ├── world_thread_boots_iron_trim.json │ │ │ │ ├── world_thread_boots_lapis_trim.json │ │ │ │ ├── world_thread_boots_netherite_trim.json │ │ │ │ ├── world_thread_boots_quartz_trim.json │ │ │ │ ├── world_thread_boots_redstone_trim.json │ │ │ │ ├── world_thread_chestplate.json │ │ │ │ ├── world_thread_chestplate_amethyst_trim.json │ │ │ │ ├── world_thread_chestplate_copper_trim.json │ │ │ │ ├── world_thread_chestplate_diamond_trim.json │ │ │ │ ├── world_thread_chestplate_emerald_trim.json │ │ │ │ ├── world_thread_chestplate_gold_trim.json │ │ │ │ ├── world_thread_chestplate_iron_trim.json │ │ │ │ ├── world_thread_chestplate_lapis_trim.json │ │ │ │ ├── world_thread_chestplate_netherite_trim.json │ │ │ │ ├── world_thread_chestplate_quartz_trim.json │ │ │ │ ├── world_thread_chestplate_redstone_trim.json │ │ │ │ ├── world_thread_helmet.json │ │ │ │ ├── world_thread_helmet_amethyst_trim.json │ │ │ │ ├── world_thread_helmet_copper_trim.json │ │ │ │ ├── world_thread_helmet_diamond_trim.json │ │ │ │ ├── world_thread_helmet_emerald_trim.json │ │ │ │ ├── world_thread_helmet_gold_trim.json │ │ │ │ ├── world_thread_helmet_iron_trim.json │ │ │ │ ├── world_thread_helmet_lapis_trim.json │ │ │ │ ├── world_thread_helmet_netherite_trim.json │ │ │ │ ├── world_thread_helmet_quartz_trim.json │ │ │ │ ├── world_thread_helmet_redstone_trim.json │ │ │ │ ├── world_thread_leggings.json │ │ │ │ ├── world_thread_leggings_amethyst_trim.json │ │ │ │ ├── world_thread_leggings_copper_trim.json │ │ │ │ ├── world_thread_leggings_diamond_trim.json │ │ │ │ ├── world_thread_leggings_emerald_trim.json │ │ │ │ ├── world_thread_leggings_gold_trim.json │ │ │ │ ├── world_thread_leggings_iron_trim.json │ │ │ │ ├── world_thread_leggings_lapis_trim.json │ │ │ │ ├── world_thread_leggings_netherite_trim.json │ │ │ │ ├── world_thread_leggings_quartz_trim.json │ │ │ │ └── world_thread_leggings_redstone_trim.json │ │ └── minecraft │ │ │ ├── blockstates │ │ │ ├── clay.json │ │ │ ├── deepslate.json │ │ │ ├── end_stone.json │ │ │ ├── gravel.json │ │ │ ├── mud.json │ │ │ ├── netherrack.json │ │ │ ├── red_sand.json │ │ │ └── sand.json │ │ │ └── models │ │ │ └── block │ │ │ ├── clay.json │ │ │ ├── deepslate.json │ │ │ ├── deepslate_mirrored.json │ │ │ ├── end_stone.json │ │ │ ├── gravel.json │ │ │ ├── mud.json │ │ │ ├── netherrack.json │ │ │ ├── red_sand.json │ │ │ └── sand.json │ └── data │ │ ├── dimdoors │ │ ├── advancements │ │ │ ├── dimdoors │ │ │ │ ├── dark_ostiology.json │ │ │ │ ├── darklight.json │ │ │ │ ├── door_to_adventure.json │ │ │ │ ├── enter_limbo.json │ │ │ │ ├── fuzzy_unreality.json │ │ │ │ ├── hole_in_the_sky.json │ │ │ │ ├── home_away_from_home.json │ │ │ │ ├── out_of_time.json │ │ │ │ ├── public_pocket.json │ │ │ │ ├── root.json │ │ │ │ ├── string_theory.json │ │ │ │ ├── unravelled_but_immutable.json │ │ │ │ └── world_unfurled.json │ │ │ └── recipes │ │ │ │ ├── misc │ │ │ │ ├── black_fabric.json │ │ │ │ ├── blue_fabric.json │ │ │ │ ├── brown_fabric.json │ │ │ │ ├── cyan_fabric.json │ │ │ │ ├── gold_door.json │ │ │ │ ├── gray_fabric.json │ │ │ │ ├── green_fabric.json │ │ │ │ ├── light_blue_fabric.json │ │ │ │ ├── light_gray_fabric.json │ │ │ │ ├── lime_fabric.json │ │ │ │ ├── magenta_fabric.json │ │ │ │ ├── orange_fabric.json │ │ │ │ ├── pink_fabric.json │ │ │ │ ├── purple_fabric.json │ │ │ │ ├── quartz_door.json │ │ │ │ ├── red_fabric.json │ │ │ │ ├── rift_remover.json │ │ │ │ ├── rift_signature.json │ │ │ │ ├── rift_stabilizer.json │ │ │ │ ├── stabilized_rift_signature.json │ │ │ │ ├── stone_door.json │ │ │ │ ├── tesselating_loom.json │ │ │ │ ├── white_fabric.json │ │ │ │ └── yellow_fabric.json │ │ │ │ └── tesselating │ │ │ │ └── tesselating │ │ │ │ ├── enduring_fibers.json │ │ │ │ ├── fabric_of_finality.json │ │ │ │ ├── fabric_of_reality.json │ │ │ │ ├── fuzzy_fireball.json │ │ │ │ ├── garment_of_reality_boots.json │ │ │ │ ├── garment_of_reality_chestplate.json │ │ │ │ ├── garment_of_reality_helmet.json │ │ │ │ ├── garment_of_reality_leggings.json │ │ │ │ ├── liminal_lint.json │ │ │ │ ├── reality_sponge.json │ │ │ │ ├── rift_blade.json │ │ │ │ ├── rift_pearl.json │ │ │ │ ├── stable_fabric.json │ │ │ │ ├── world_thread_boots.json │ │ │ │ ├── world_thread_chestplate.json │ │ │ │ ├── world_thread_helmet.json │ │ │ │ └── world_thread_leggings.json │ │ ├── decay_patterns │ │ │ ├── air.json │ │ │ ├── amalgam.json │ │ │ ├── amalgam_ore.json │ │ │ ├── amalgam_slab.json │ │ │ ├── amalgam_stairs.json │ │ │ ├── ancient_debris.json │ │ │ ├── andesite.json │ │ │ ├── andesite_slab.json │ │ │ ├── andesite_stairs.json │ │ │ ├── bamboo.json │ │ │ ├── barrel.json │ │ │ ├── basalt.json │ │ │ ├── basalt_lava.json │ │ │ ├── black_ancient_fabric.json │ │ │ ├── black_concrete_powder.json │ │ │ ├── black_terracotta.json │ │ │ ├── blackstone.json │ │ │ ├── blackstone_slab.json │ │ │ ├── blackstone_stairs.json │ │ │ ├── blackstone_wall.json │ │ │ ├── blue_concrete_powder.json │ │ │ ├── blue_terracotta.json │ │ │ ├── bone_block.json │ │ │ ├── brown_concrete_powder.json │ │ │ ├── brown_terracotta.json │ │ │ ├── carved_pumpkin.json │ │ │ ├── chest.json │ │ │ ├── clay.json │ │ │ ├── clay_button.json │ │ │ ├── clay_fence.json │ │ │ ├── clay_gate.json │ │ │ ├── clay_slab.json │ │ │ ├── clay_stairs.json │ │ │ ├── clay_wall.json │ │ │ ├── clod_block.json │ │ │ ├── clod_ore.json │ │ │ ├── coal_ore.json │ │ │ ├── cobblestone.json │ │ │ ├── cobblestone_slab.json │ │ │ ├── cobblestone_stairs.json │ │ │ ├── cobblestone_wall.json │ │ │ ├── cobweb.json │ │ │ ├── composter.json │ │ │ ├── copper_block.json │ │ │ ├── cracked_stone_brick.json │ │ │ ├── crimson_nylium.json │ │ │ ├── crying_obsidian.json │ │ │ ├── cut_copper.json │ │ │ ├── cut_copper_slab.json │ │ │ ├── cut_copper_stairs.json │ │ │ ├── cyan_concrete_powder.json │ │ │ ├── cyan_terracotta.json │ │ │ ├── dark_prismarine.json │ │ │ ├── dark_prismarine_slab.json │ │ │ ├── dark_prismarine_stairs.json │ │ │ ├── dark_sand.json │ │ │ ├── dark_sand_button.json │ │ │ ├── dark_sand_fence.json │ │ │ ├── dark_sand_slab.json │ │ │ ├── dark_sand_stairs.json │ │ │ ├── deepslate.json │ │ │ ├── deepslate_slab.json │ │ │ ├── deepslate_stairs.json │ │ │ ├── deepslate_wall.json │ │ │ ├── diorite.json │ │ │ ├── diorite_slab.json │ │ │ ├── diorite_stairs.json │ │ │ ├── diorite_wall.json │ │ │ ├── dirt.json │ │ │ ├── driftwood_button.json │ │ │ ├── driftwood_door.json │ │ │ ├── driftwood_fence.json │ │ │ ├── driftwood_gate.json │ │ │ ├── driftwood_leaves.json │ │ │ ├── driftwood_log.json │ │ │ ├── driftwood_plank.json │ │ │ ├── driftwood_sapling.json │ │ │ ├── driftwood_slab.json │ │ │ ├── driftwood_stairs.json │ │ │ ├── driftwood_trapdoor.json │ │ │ ├── driftwood_trapdoor_door.json │ │ │ ├── driftwood_wood.json │ │ │ ├── endstone.json │ │ │ ├── endstone_slab.json │ │ │ ├── endstone_stairs.json │ │ │ ├── endstone_wall.json │ │ │ ├── exposed_copper.json │ │ │ ├── exposed_cut_copper.json │ │ │ ├── exposed_cut_copper_slab.json │ │ │ ├── exposed_cut_copper_stairs.json │ │ │ ├── furnace.json │ │ │ ├── glass.json │ │ │ ├── glass_pane.json │ │ │ ├── granite.json │ │ │ ├── granite_slab.json │ │ │ ├── granite_stairs.json │ │ │ ├── gravel.json │ │ │ ├── gravel_button.json │ │ │ ├── gravel_fence.json │ │ │ ├── gravel_slab.json │ │ │ ├── gravel_stairs.json │ │ │ ├── gravel_wall.json │ │ │ ├── gray_concrete_powder.json │ │ │ ├── gray_terracotta.json │ │ │ ├── green_concrete_powder.json │ │ │ ├── green_terracotta.json │ │ │ ├── gritty_stone.json │ │ │ ├── honeycomb_block.json │ │ │ ├── ice.json │ │ │ ├── iron_block.json │ │ │ ├── leak.json │ │ │ ├── lectern.json │ │ │ ├── light_blue_concrete_powder.json │ │ │ ├── light_blue_terracotta.json │ │ │ ├── light_gray_concrete_powder.json │ │ │ ├── light_gray_terracotta.json │ │ │ ├── lime_concrete_powder.json │ │ │ ├── lime_terracotta.json │ │ │ ├── magenta_concrete_powder.json │ │ │ ├── magenta_terracotta.json │ │ │ ├── moss_carpet.json │ │ │ ├── mud.json │ │ │ ├── mud_button.json │ │ │ ├── mud_fence.json │ │ │ ├── mud_gate.json │ │ │ ├── mud_slab.json │ │ │ ├── mud_stairs.json │ │ │ ├── netherrack.json │ │ │ ├── netherrack_fence.json │ │ │ ├── netherrack_slab.json │ │ │ ├── netherrack_stairs.json │ │ │ ├── netherrack_wall.json │ │ │ ├── netherwart_block.json │ │ │ ├── obsidian.json │ │ │ ├── orange_concrete_powder.json │ │ │ ├── orange_terracotta.json │ │ │ ├── packed_ice.json │ │ │ ├── pink_concrete_powder.json │ │ │ ├── pink_terracotta.json │ │ │ ├── piston.json │ │ │ ├── prismarine.json │ │ │ ├── prismarine_slab.json │ │ │ ├── prismarine_stairs.json │ │ │ ├── prismarine_wall.json │ │ │ ├── pumpkin.json │ │ │ ├── purple_concrete_powder.json │ │ │ ├── purple_terracotta.json │ │ │ ├── rail.json │ │ │ ├── red_concrete_powder.json │ │ │ ├── red_sand.json │ │ │ ├── red_sand_slab.json │ │ │ ├── red_sand_stairs.json │ │ │ ├── red_sand_wall.json │ │ │ ├── red_sandstone.json │ │ │ ├── red_terracotta.json │ │ │ ├── redstone_lamp.json │ │ │ ├── rust.json │ │ │ ├── sand.json │ │ │ ├── sand_slab.json │ │ │ ├── sand_stairs.json │ │ │ ├── sand_wall.json │ │ │ ├── skeleton_skull.json │ │ │ ├── skeleton_wall_skull.json │ │ │ ├── slime_block.json │ │ │ ├── solid_static.json │ │ │ ├── soul_sand.json │ │ │ ├── sponge.json │ │ │ ├── stone.json │ │ │ ├── stone_brick.json │ │ │ ├── stone_brick_slab.json │ │ │ ├── stone_brick_stairs.json │ │ │ ├── stone_brick_wall.json │ │ │ ├── unraveled_button.json │ │ │ ├── unraveled_fabric.json │ │ │ ├── unraveled_fence.json │ │ │ ├── unraveled_gate.json │ │ │ ├── unraveled_slab.json │ │ │ ├── unraveled_spike.json │ │ │ ├── unraveled_stairs.json │ │ │ ├── water.json │ │ │ ├── weathered_copper.json │ │ │ ├── weathered_cut_copper.json │ │ │ ├── weathered_cut_copper_slab.json │ │ │ ├── weathered_cut_copper_stairs.json │ │ │ ├── white_concrete_powder.json │ │ │ ├── white_terracotta.json │ │ │ ├── wither_rose.json │ │ │ ├── wool.json │ │ │ ├── wool_bed.json │ │ │ ├── yellow_concrete_powder.json │ │ │ └── yellow_terracotta.json │ │ ├── dimension_type │ │ │ ├── limbo.json │ │ │ └── pocket.json │ │ ├── loot_tables │ │ │ └── blocks │ │ │ │ ├── amalgam_block.json │ │ │ │ ├── amalgam_door.json │ │ │ │ ├── amalgam_ore.json │ │ │ │ ├── amalgam_slab.json │ │ │ │ ├── amalgam_stairs.json │ │ │ │ ├── amalgam_trapdoor.json │ │ │ │ ├── black_fabric.json │ │ │ │ ├── blue_fabric.json │ │ │ │ ├── brown_fabric.json │ │ │ │ ├── clay_button.json │ │ │ │ ├── clay_fence.json │ │ │ │ ├── clay_gate.json │ │ │ │ ├── clay_slab.json │ │ │ │ ├── clay_stairs.json │ │ │ │ ├── clay_wall.json │ │ │ │ ├── clod_block.json │ │ │ │ ├── clod_ore.json │ │ │ │ ├── cyan_fabric.json │ │ │ │ ├── dark_sand.json │ │ │ │ ├── dark_sand_button.json │ │ │ │ ├── dark_sand_fence.json │ │ │ │ ├── dark_sand_slab.json │ │ │ │ ├── dark_sand_stairs.json │ │ │ │ ├── dark_sand_wall.json │ │ │ │ ├── deepslate_slab.json │ │ │ │ ├── deepslate_stairs.json │ │ │ │ ├── deepslate_wall.json │ │ │ │ ├── driftwood_button.json │ │ │ │ ├── driftwood_door.json │ │ │ │ ├── driftwood_fence.json │ │ │ │ ├── driftwood_gate.json │ │ │ │ ├── driftwood_leaves.json │ │ │ │ ├── driftwood_log.json │ │ │ │ ├── driftwood_planks.json │ │ │ │ ├── driftwood_sapling.json │ │ │ │ ├── driftwood_slab.json │ │ │ │ ├── driftwood_stairs.json │ │ │ │ ├── driftwood_trapdoor.json │ │ │ │ ├── driftwood_wood.json │ │ │ │ ├── end_stone_slab.json │ │ │ │ ├── end_stone_stairs.json │ │ │ │ ├── end_stone_wall.json │ │ │ │ ├── gold_door.json │ │ │ │ ├── gravel_button.json │ │ │ │ ├── gravel_fence.json │ │ │ │ ├── gravel_slab.json │ │ │ │ ├── gravel_stairs.json │ │ │ │ ├── gravel_wall.json │ │ │ │ ├── gray_fabric.json │ │ │ │ ├── green_fabric.json │ │ │ │ ├── gritty_stone.json │ │ │ │ ├── light_blue_fabric.json │ │ │ │ ├── light_gray_fabric.json │ │ │ │ ├── lime_fabric.json │ │ │ │ ├── magenta_fabric.json │ │ │ │ ├── marking_plate.json │ │ │ │ ├── mud_button.json │ │ │ │ ├── mud_fence.json │ │ │ │ ├── mud_gate.json │ │ │ │ ├── mud_slab.json │ │ │ │ ├── mud_stairs.json │ │ │ │ ├── netherrack_fence.json │ │ │ │ ├── netherrack_slab.json │ │ │ │ ├── netherrack_stairs.json │ │ │ │ ├── netherrack_wall.json │ │ │ │ ├── orange_fabric.json │ │ │ │ ├── pink_fabric.json │ │ │ │ ├── purple_fabric.json │ │ │ │ ├── quartz_door.json │ │ │ │ ├── red_fabric.json │ │ │ │ ├── red_sand_slab.json │ │ │ │ ├── red_sand_stairs.json │ │ │ │ ├── red_sand_wall.json │ │ │ │ ├── rust.json │ │ │ │ ├── sand_slab.json │ │ │ │ ├── sand_stairs.json │ │ │ │ ├── sand_wall.json │ │ │ │ ├── solid_static.json │ │ │ │ ├── tesselating_loom.json │ │ │ │ ├── unraveled_button.json │ │ │ │ ├── unraveled_fence.json │ │ │ │ ├── unraveled_gate.json │ │ │ │ ├── unraveled_slab.json │ │ │ │ ├── unraveled_spike.json │ │ │ │ ├── unraveled_stairs.json │ │ │ │ ├── unravelled_fabric.json │ │ │ │ ├── white_fabric.json │ │ │ │ ├── wood_dimensional_trapdoor.json │ │ │ │ └── yellow_fabric.json │ │ ├── recipes │ │ │ ├── black_fabric.json │ │ │ ├── blue_fabric.json │ │ │ ├── brown_fabric.json │ │ │ ├── cyan_fabric.json │ │ │ ├── gold_door.json │ │ │ ├── gray_fabric.json │ │ │ ├── green_fabric.json │ │ │ ├── light_blue_fabric.json │ │ │ ├── light_gray_fabric.json │ │ │ ├── lime_fabric.json │ │ │ ├── magenta_fabric.json │ │ │ ├── orange_fabric.json │ │ │ ├── pink_fabric.json │ │ │ ├── purple_fabric.json │ │ │ ├── quartz_door.json │ │ │ ├── red_fabric.json │ │ │ ├── rift_remover.json │ │ │ ├── rift_signature.json │ │ │ ├── rift_stabilizer.json │ │ │ ├── stabilized_rift_signature.json │ │ │ ├── stone_door.json │ │ │ ├── tesselating │ │ │ │ ├── enduring_fibers.json │ │ │ │ ├── fabric_of_finality.json │ │ │ │ ├── fabric_of_reality.json │ │ │ │ ├── fuzzy_fireball.json │ │ │ │ ├── garment_of_reality_boots.json │ │ │ │ ├── garment_of_reality_chestplate.json │ │ │ │ ├── garment_of_reality_helmet.json │ │ │ │ ├── garment_of_reality_leggings.json │ │ │ │ ├── liminal_lint.json │ │ │ │ ├── reality_sponge.json │ │ │ │ ├── rift_blade.json │ │ │ │ ├── rift_pearl.json │ │ │ │ ├── stable_fabric.json │ │ │ │ ├── world_thread_boots.json │ │ │ │ ├── world_thread_chestplate.json │ │ │ │ ├── world_thread_helmet.json │ │ │ │ └── world_thread_leggings.json │ │ │ ├── tesselating_loom.json │ │ │ ├── white_fabric.json │ │ │ └── yellow_fabric.json │ │ ├── tags │ │ │ ├── blocks │ │ │ │ ├── decay_clay_button.json │ │ │ │ ├── decay_clay_fence.json │ │ │ │ ├── decay_clay_gate.json │ │ │ │ ├── decay_clay_slab.json │ │ │ │ ├── decay_clay_stairs.json │ │ │ │ ├── decay_to_air.json │ │ │ │ ├── decay_to_amalgam.json │ │ │ │ ├── decay_to_amalgam_ore.json │ │ │ │ ├── decay_to_clay.json │ │ │ │ ├── decay_to_clod_ore.json │ │ │ │ ├── decay_to_cobblestone.json │ │ │ │ ├── decay_to_cobblestone_slab.json │ │ │ │ ├── decay_to_dark_sand.json │ │ │ │ ├── decay_to_driftwood_plank.json │ │ │ │ ├── decay_to_glass.json │ │ │ │ ├── decay_to_glass_pane.json │ │ │ │ ├── decay_to_grave.json │ │ │ │ ├── decay_to_gritty_stone.json │ │ │ │ ├── decay_to_mud.json │ │ │ │ ├── decay_to_netherwart_block.json │ │ │ │ ├── decay_to_rail.json │ │ │ │ ├── decay_to_rust.json │ │ │ │ ├── decay_to_solid_static.json │ │ │ │ ├── decay_to_stone.json │ │ │ │ ├── decay_to_unraveled_fabric.json │ │ │ │ ├── decay_to_unraveled_spike.json │ │ │ │ ├── decay_to_wither_rose.json │ │ │ │ ├── decay_unraveled_button.json │ │ │ │ ├── decay_unraveled_fence.json │ │ │ │ ├── decay_unraveled_slab.json │ │ │ │ └── decay_unraveled_stairs.json │ │ │ ├── items │ │ │ │ ├── diamonds.json │ │ │ │ ├── gold_ingots.json │ │ │ │ ├── iron_ingots.json │ │ │ │ └── limbo_gaze_defying.json │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ ├── enclosed_endstone_gateway.json │ │ │ │ ├── enclosed_gateway.json │ │ │ │ ├── enclosed_mud_gateway.json │ │ │ │ ├── enclosed_prismarine_gateway.json │ │ │ │ ├── enclosed_quartz_gateway.json │ │ │ │ ├── enclosed_red_sandstone_gateway.json │ │ │ │ └── enclosed_sandstone_gateway.json │ │ └── worldgen │ │ │ ├── biome │ │ │ ├── black_void.json │ │ │ ├── dangerous_black_void.json │ │ │ ├── limbo.json │ │ │ └── white_void.json │ │ │ ├── configured_carver │ │ │ └── limbo.json │ │ │ ├── configured_feature │ │ │ ├── decayed_block_ore.json │ │ │ ├── eternal_fluid_spring.json │ │ │ └── solid_static_ore.json │ │ │ ├── noise │ │ │ └── limbo │ │ │ │ ├── strand_a.json │ │ │ │ ├── strand_b.json │ │ │ │ ├── terrain.json │ │ │ │ ├── x_shift.json │ │ │ │ ├── y_shift.json │ │ │ │ └── z_shift.json │ │ │ ├── placed_feature │ │ │ ├── decayed_block_ore.json │ │ │ ├── eternal_fluid_spring.json │ │ │ └── solid_static_ore.json │ │ │ ├── processor_list │ │ │ └── dungeon.json │ │ │ ├── structure │ │ │ ├── enclosed_endstone_gateway.json │ │ │ ├── enclosed_gateway.json │ │ │ ├── enclosed_mud_gateway.json │ │ │ ├── enclosed_prismarine_gateway.json │ │ │ ├── enclosed_quartz_gateway.json │ │ │ ├── enclosed_red_sandstone_gateway.json │ │ │ └── enclosed_sandstone_gateway.json │ │ │ ├── structure_set │ │ │ └── gateways.json │ │ │ └── template_pool │ │ │ ├── enclosed_endstone_gateway.json │ │ │ ├── enclosed_gateway.json │ │ │ ├── enclosed_mud_gateway.json │ │ │ ├── enclosed_prismarine_gateway.json │ │ │ ├── enclosed_quartz_gateway.json │ │ │ ├── enclosed_red_sandstone_gateway.json │ │ │ └── enclosed_sandstone_gateway.json │ │ └── minecraft │ │ └── tags │ │ ├── blocks │ │ ├── fences.json │ │ ├── walls.json │ │ └── wooden_fences.json │ │ └── items │ │ ├── music_discs.json │ │ └── trimmable_armor.json │ ├── java │ └── org │ │ └── dimdev │ │ └── dimdoors │ │ ├── DimensionalDoors.java │ │ ├── ModConfig.java │ │ ├── api │ │ ├── block │ │ │ ├── AfterMoveCollidableBlock.java │ │ │ ├── ExplosionConvertibleBlock.java │ │ │ └── entity │ │ │ │ └── MutableBlockEntityType.java │ │ ├── client │ │ │ ├── DefaultTransformation.java │ │ │ ├── DimensionalPortalRenderer.java │ │ │ ├── RenderLayerFactory.java │ │ │ └── Transformer.java │ │ ├── entity │ │ │ └── LastPositionProvider.java │ │ ├── event │ │ │ ├── ChunkServedCallback.java │ │ │ └── UseItemOnBlockCallback.java │ │ ├── item │ │ │ └── ExtendedItem.java │ │ ├── rift │ │ │ └── target │ │ │ │ ├── DefaultTargets.java │ │ │ │ ├── EntityTarget.java │ │ │ │ ├── FluidTarget.java │ │ │ │ ├── ItemTarget.java │ │ │ │ ├── RedstoneTarget.java │ │ │ │ └── Target.java │ │ └── util │ │ │ ├── BlockBoxUtil.java │ │ │ ├── BlockPlacementType.java │ │ │ ├── EntityUtils.java │ │ │ ├── ExceptionHandlingCollector.java │ │ │ ├── GraphUtils.java │ │ │ ├── InstanceMap.java │ │ │ ├── Location.java │ │ │ ├── LocationCondition.java │ │ │ ├── LocationValue.java │ │ │ ├── NbtEquations.java │ │ │ ├── NbtUtil.java │ │ │ ├── Path.java │ │ │ ├── Products.java │ │ │ ├── RGBA.java │ │ │ ├── ReferenceSerializable.java │ │ │ ├── RegisterRecipeBookCategoriesEvent.java │ │ │ ├── ResourceUtil.java │ │ │ ├── RotatedLocation.java │ │ │ ├── SchematicStructureTemplate.java │ │ │ ├── SimpleTree.java │ │ │ ├── StreamUtils.java │ │ │ ├── TeleportUtil.java │ │ │ ├── Weighted.java │ │ │ ├── WeightedList.java │ │ │ ├── function │ │ │ ├── HexFunction.java │ │ │ ├── PentFunction.java │ │ │ ├── QuadFunction.java │ │ │ ├── SeptFunction.java │ │ │ └── TriFunction.java │ │ │ └── math │ │ │ ├── AbstractMatrixd.java │ │ │ ├── Equation.java │ │ │ ├── GridUtil.java │ │ │ ├── MathUtil.java │ │ │ ├── Matrixd.java │ │ │ ├── TransformationMatrix3d.java │ │ │ ├── TransformationMatrixd.java │ │ │ ├── TransformationMatrixdImpl.java │ │ │ └── Vectord.java │ │ ├── block │ │ ├── AncientFabricBlock.java │ │ ├── CoordinateTransformerBlock.java │ │ ├── DetachedRiftBlock.java │ │ ├── DimensionalPortalBlock.java │ │ ├── DoorSoundProvider.java │ │ ├── EternalFluidBlock.java │ │ ├── FabricBlock.java │ │ ├── LimboAirBlock.java │ │ ├── ModBlocks.java │ │ ├── RealitySpongeBlock.java │ │ ├── RiftProvider.java │ │ ├── TesselatingLoomBlock.java │ │ ├── UnravelUtil.java │ │ ├── UnravelledFabricBlock.java │ │ ├── UnravelledSpikeBlock.java │ │ ├── WaterLoggableBlockWithEntity.java │ │ ├── door │ │ │ ├── DimensionalDoorBlock.java │ │ │ ├── DimensionalDoorBlockRegistrar.java │ │ │ ├── DimensionalTrapdoorBlock.java │ │ │ └── WaterLoggableDoorBlock.java │ │ └── entity │ │ │ ├── DetachedRiftBlockEntity.java │ │ │ ├── EntranceRiftBlockEntity.java │ │ │ ├── ModBlockEntityTypes.java │ │ │ ├── RiftBlockEntity.java │ │ │ ├── RiftData.java │ │ │ └── TesselatingLoomBlockEntity.java │ │ ├── client │ │ ├── CustomBreakBlockHandler.java │ │ ├── DetachedRiftBlockEntityRenderer.java │ │ ├── DimensionalDoorsClient.java │ │ ├── DimensionalDoorsModelLoadingPlugin.java │ │ ├── EntranceRiftBlockEntityRenderer.java │ │ ├── MaskModel.java │ │ ├── MaskRenderer.java │ │ ├── ModEntityModelLayers.java │ │ ├── ModRecipeBookGroups.java │ │ ├── ModRecipeBookTypes.java │ │ ├── ModShaders.java │ │ ├── MonolithModel.java │ │ ├── MonolithRenderer.java │ │ ├── MyRenderLayer.java │ │ ├── RiftCrackRenderer.java │ │ ├── RiftCurves.java │ │ ├── ShaderPackDetector.java │ │ ├── ToolTipHelper.java │ │ ├── UnderlaidChildItemRenderer.java │ │ ├── config │ │ │ └── ModMenu.java │ │ ├── effect │ │ │ ├── DimensionSpecialEffectsExtensions.java │ │ │ ├── DungeonDimensionEffect.java │ │ │ └── LimboDimensionEffect.java │ │ ├── screen │ │ │ └── TesselatingLoomScreen.java │ │ ├── tesseract │ │ │ ├── Plane.java │ │ │ └── Tesseract.java │ │ └── wthit │ │ │ ├── DetachedRiftProvider.java │ │ │ ├── EntranceRiftProvider.java │ │ │ └── WthitPlugin.java │ │ ├── command │ │ ├── DimTeleportCommand.java │ │ ├── ModCommands.java │ │ ├── PocketCommand.java │ │ ├── StandingInAir.java │ │ ├── WorldeditHelper.java │ │ └── arguments │ │ │ ├── BlockPlacementTypeArgumentType.java │ │ │ ├── EnumArgumentType.java │ │ │ └── PocketTemplateArgumentType.java │ │ ├── compat │ │ ├── iris │ │ │ └── IrisCompat.java │ │ ├── jei │ │ │ └── TesselatingJeiCompatClient.java │ │ └── rei │ │ │ ├── TesselatingReiCompatClient.java │ │ │ ├── decay │ │ │ ├── DefaultDecaysIntoCategory.java │ │ │ └── DefaultDecaysIntoDisplay.java │ │ │ └── tesselating │ │ │ ├── DefaultTesselatingCategory.java │ │ │ ├── DefaultTesselatingDisplay.java │ │ │ ├── DefaultTesselatingShapedDisplay.java │ │ │ └── DefaultTesselatingShapelessDisplay.java │ │ ├── criteria │ │ ├── ModCriteria.java │ │ ├── PocketSpawnPointSetCondition.java │ │ ├── RiftTrackedCriterion.java │ │ └── TagBlockBreakCriteria.java │ │ ├── enchantment │ │ ├── ModEnchants.java │ │ └── StringTheoryEnchantment.java │ │ ├── entity │ │ ├── MaskEntity.java │ │ ├── ModEntityTypes.java │ │ ├── MonolithEntity.java │ │ ├── ai │ │ │ └── MonolithAggroGoal.java │ │ ├── limbo │ │ │ ├── LimboEntranceSource.java │ │ │ └── LimboExitReason.java │ │ └── stat │ │ │ └── ModStats.java │ │ ├── fluid │ │ ├── EternalFluid.java │ │ └── ModFluids.java │ │ ├── item │ │ ├── DimensionalEraserItem.java │ │ ├── ItemExtensions.java │ │ ├── MaskWandItem.java │ │ ├── ModArmorMaterials.java │ │ ├── ModItems.java │ │ ├── RaycastHelper.java │ │ ├── RiftBladeItem.java │ │ ├── RiftConfigurationToolItem.java │ │ ├── RiftKeyItem.java │ │ ├── RiftRemoverItem.java │ │ ├── RiftSignatureItem.java │ │ ├── RiftStabilizerItem.java │ │ ├── StabilizedRiftSignatureItem.java │ │ ├── component │ │ │ └── CounterComponent.java │ │ └── door │ │ │ ├── DimensionalDoorItem.java │ │ │ ├── DimensionalDoorItemRegistrar.java │ │ │ ├── DimensionalTrapdoorItem.java │ │ │ ├── DoorRiftDataLoader.java │ │ │ └── data │ │ │ ├── RiftDataList.java │ │ │ └── condition │ │ │ ├── AllCondition.java │ │ │ ├── AlwaysTrueCondition.java │ │ │ ├── AnyCondition.java │ │ │ ├── Condition.java │ │ │ ├── InverseCondition.java │ │ │ ├── MultipleCondition.java │ │ │ └── WorldMatchCondition.java │ │ ├── listener │ │ ├── AttackBlockCallbackListener.java │ │ ├── ChunkLoadListener.java │ │ ├── UseDoorItemOnBlockCallbackListener.java │ │ └── pocket │ │ │ ├── PlayerBlockBreakEventBeforeListener.java │ │ │ ├── PocketAttackBlockCallbackListener.java │ │ │ ├── PocketListenerUtil.java │ │ │ ├── UseBlockCallbackListener.java │ │ │ ├── UseItemCallbackListener.java │ │ │ └── UseItemOnBlockCallbackListener.java │ │ ├── mixin │ │ ├── ArgumentTypesMixin.java │ │ ├── BlockMixin.java │ │ ├── DoorBlockMixin.java │ │ ├── DoublePlantBlockMixin.java │ │ ├── EntityMixin.java │ │ ├── ExplosionMixin.java │ │ ├── ExtendedServerPlayNetworkhandlerMixin.java │ │ ├── ItemMixin.java │ │ ├── NetherFortressPiecesAccessor.java │ │ ├── NetherFortressPiecesMixin.java │ │ ├── PlayerEntityMixin.java │ │ ├── ServerPlayNetworkHandlerMixin.java │ │ ├── ServerPlayerEntityMixin.java │ │ ├── ServerPlayerInteractionManagerMixin.java │ │ ├── ServerWorldMixin.java │ │ ├── StructureTemplateManagerMixin.java │ │ ├── ThreadedAnvilChunkStorageMixin.java │ │ ├── TrapDoorMixin.java │ │ ├── accessor │ │ │ ├── BlockEntityTypeAccessor.java │ │ │ ├── ChunkGeneratorAccessor.java │ │ │ ├── DefaultParticleTypeAccessor.java │ │ │ ├── DirectionAccessor.java │ │ │ ├── EntityAccessor.java │ │ │ ├── GenerationSettingsAccessor.java │ │ │ ├── ListTagAccessor.java │ │ │ ├── RecipesProviderAccessor.java │ │ │ └── RedstoneWireBlockAccessor.java │ │ └── client │ │ │ ├── BackgroundRendererMixin.java │ │ │ ├── BuiltinModelItemRendererMixin.java │ │ │ ├── ClientPlayNetworkHandlerMixin.java │ │ │ ├── ClientPlayerInteractionManagerMixin.java │ │ │ ├── ExtendedClientPlayNetworkHandlerMixin.java │ │ │ ├── InGameHudMixin.java │ │ │ ├── PostProcessShaderMixin.java │ │ │ ├── WorldRendererMixin.java │ │ │ └── accessor │ │ │ ├── DimensionSpecialEffectsMixin.java │ │ │ └── WorldRendererAccessor.java │ │ ├── network │ │ ├── ExtendedServerPlayNetworkHandler.java │ │ ├── ServerPacketHandler.java │ │ ├── ServerPacketListener.java │ │ ├── SimplePacket.java │ │ ├── client │ │ │ ├── ClientPacketHandler.java │ │ │ ├── ClientPacketListener.java │ │ │ └── ExtendedClientPlayNetworkHandler.java │ │ └── packet │ │ │ ├── c2s │ │ │ ├── HitBlockWithItemC2SPacket.java │ │ │ └── NetworkHandlerInitializedC2SPacket.java │ │ │ └── s2c │ │ │ ├── MonolithAggroParticlesPacket.java │ │ │ ├── MonolithTeleportParticlesPacket.java │ │ │ ├── PlayerInventorySlotUpdateS2CPacket.java │ │ │ ├── RenderBreakBlockS2CPacket.java │ │ │ └── SyncPocketAddonsS2CPacket.java │ │ ├── particle │ │ ├── ModParticleTypes.java │ │ ├── RiftParticleType.java │ │ └── client │ │ │ ├── LimboAshParticle.java │ │ │ ├── MonolithParticle.java │ │ │ ├── RiftParticle.java │ │ │ └── RiftParticleOptions.java │ │ ├── pockets │ │ ├── DefaultDungeonDestinations.java │ │ ├── PocketGenerationContext.java │ │ ├── PocketGenerator.java │ │ ├── PocketLoader.java │ │ ├── PocketTemplate.java │ │ ├── TemplateUtils.java │ │ ├── generator │ │ │ ├── ChunkGenerator.java │ │ │ ├── LazyPocketGenerator.java │ │ │ ├── PocketGenerator.java │ │ │ ├── SchematicGenerator.java │ │ │ └── VoidGenerator.java │ │ ├── modifier │ │ │ ├── AbsoluteRiftBlockEntityModifier.java │ │ │ ├── AbstractLazyCompatibleModifier.java │ │ │ ├── AbstractLazyModifier.java │ │ │ ├── AbstractModifier.java │ │ │ ├── DimensionalDoorModifier.java │ │ │ ├── LazyCompatibleModifier.java │ │ │ ├── LazyModifier.java │ │ │ ├── Modifier.java │ │ │ ├── OffsetModifier.java │ │ │ ├── PocketEntranceModifier.java │ │ │ ├── RelativeReferenceModifier.java │ │ │ ├── RiftDataModifier.java │ │ │ ├── RiftManager.java │ │ │ ├── ShellModifier.java │ │ │ └── TemplateModifier.java │ │ └── virtual │ │ │ ├── AbstractVirtualPocket.java │ │ │ ├── ImplementedVirtualPocket.java │ │ │ ├── VirtualPocket.java │ │ │ ├── VirtualPocketList.java │ │ │ ├── reference │ │ │ ├── IdReference.java │ │ │ ├── PocketGeneratorReference.java │ │ │ └── TagReference.java │ │ │ └── selection │ │ │ ├── AbstractVirtualPocketList.java │ │ │ ├── ConditionalSelector.java │ │ │ └── PathSelector.java │ │ ├── recipe │ │ ├── ModRecipeSerializers.java │ │ ├── ModRecipeTypes.java │ │ ├── ShapedTesselatingRecipe.java │ │ ├── TesselatingRecipe.java │ │ └── TesselatingShapelessRecipe.java │ │ ├── rift │ │ ├── registry │ │ │ ├── LinkProperties.java │ │ │ ├── PlayerRiftPointer.java │ │ │ ├── PocketEntrancePointer.java │ │ │ ├── RegistryVertex.java │ │ │ ├── Rift.java │ │ │ ├── RiftPlaceholder.java │ │ │ └── RiftRegistry.java │ │ └── targets │ │ │ ├── DungeonTarget.java │ │ │ ├── EscapeTarget.java │ │ │ ├── GlobalReference.java │ │ │ ├── IdMarker.java │ │ │ ├── LimboTarget.java │ │ │ ├── LocalReference.java │ │ │ ├── LocationProvider.java │ │ │ ├── MessageTarget.java │ │ │ ├── PocketEntranceMarker.java │ │ │ ├── PocketExitMarker.java │ │ │ ├── PrivatePocketExitTarget.java │ │ │ ├── PrivatePocketTarget.java │ │ │ ├── PublicPocketTarget.java │ │ │ ├── RandomTarget.java │ │ │ ├── RelativeReference.java │ │ │ ├── RestoringTarget.java │ │ │ ├── RiftReference.java │ │ │ ├── Targets.java │ │ │ ├── TemplateTarget.java │ │ │ ├── UnstableTarget.java │ │ │ ├── VirtualTarget.java │ │ │ └── WrappedDestinationTarget.java │ │ ├── screen │ │ ├── ModScreenHandlerTypes.java │ │ └── TessellatingContainer.java │ │ ├── sound │ │ └── ModSoundEvents.java │ │ ├── tag │ │ ├── ModBiomeTags.java │ │ ├── ModBlockTags.java │ │ └── ModItemTags.java │ │ └── world │ │ ├── ModBiomes.java │ │ ├── ModDimensions.java │ │ ├── ModGatewayPools.java │ │ ├── ModProcessorLists.java │ │ ├── ModStructureProccessors.java │ │ ├── ModStructures.java │ │ ├── ModStructuresPieces.java │ │ ├── carvers │ │ ├── LimboCarver.java │ │ └── ModCarvers.java │ │ ├── decay │ │ ├── Decay.java │ │ ├── DecayCondition.java │ │ ├── DecayConditionType.java │ │ ├── DecayPattern.java │ │ ├── DecayResult.java │ │ ├── DecayResultType.java │ │ ├── DecaySource.java │ │ ├── conditions │ │ │ ├── DecaySourceCondition.java │ │ │ ├── DimensionDecayCondition.java │ │ │ ├── FluidDecayCondition.java │ │ │ ├── GenericDecayCondition.java │ │ │ └── SimpleDecayCondition.java │ │ └── results │ │ │ ├── BlockDecayImplResult.java │ │ │ ├── BlockDecayResult.java │ │ │ ├── DoubleBlockDecayResult.java │ │ │ ├── FluidDecayResult.java │ │ │ ├── NoneDecayResult.java │ │ │ └── SelfDecayResult.java │ │ ├── feature │ │ ├── ModFeatures.java │ │ └── NetherPiecesRegistry.java │ │ ├── level │ │ ├── component │ │ │ └── ChunkLazilyGeneratedComponent.java │ │ └── registry │ │ │ ├── DimensionalRegistry.java │ │ │ ├── RiftSchemas.java │ │ │ └── schema │ │ │ └── Schema1.java │ │ ├── pocket │ │ ├── BlankChunkGenerator.java │ │ ├── PocketDirectory.java │ │ ├── PrivateRegistry.java │ │ ├── VirtualLocation.java │ │ └── type │ │ │ ├── AbstractPocket.java │ │ │ ├── IdReferencePocket.java │ │ │ ├── LazyGenerationPocket.java │ │ │ ├── Pocket.java │ │ │ ├── PocketColor.java │ │ │ ├── PrivatePocket.java │ │ │ └── addon │ │ │ ├── AddonContainer.java │ │ │ ├── AddonProvider.java │ │ │ ├── AutoSyncedAddon.java │ │ │ ├── AutoSyncedAddonContainer.java │ │ │ ├── ContainedAddon.java │ │ │ ├── DyeableAddon.java │ │ │ ├── PocketAddon.java │ │ │ ├── PreventBlockModificationAddon.java │ │ │ ├── SkyAddon.java │ │ │ └── blockbreak │ │ │ ├── BlockBreakContainer.java │ │ │ ├── BlockBreakRegexBlacklistAddon.java │ │ │ └── TryBlockBreakEventAddon.java │ │ └── structure │ │ ├── GatewayStructure.java │ │ ├── NetherGatewayPiece.java │ │ ├── gateway │ │ ├── Gateway.java │ │ ├── LimboGateway.java │ │ ├── LimboGatewayFeature.java │ │ └── schematic │ │ │ ├── EndGateway.java │ │ │ ├── SandstonePillarsGateway.java │ │ │ ├── SchematicGateway.java │ │ │ ├── SchematicGatewayFeature.java │ │ │ ├── SchematicGatewayFeatureConfig.java │ │ │ └── TwoPillarsGateway.java │ │ └── processors │ │ ├── DestinationDataModifier.java │ │ └── RandomBitsProcessor.java │ ├── resources │ ├── architectury.common.json │ ├── assets │ │ ├── dimdoors │ │ │ ├── animations │ │ │ │ └── mob │ │ │ │ │ └── mask │ │ │ │ │ └── mask.animation.json │ │ │ ├── blockstates │ │ │ │ ├── black_ancient_fabric.json │ │ │ │ ├── black_fabric.json │ │ │ │ ├── blue_ancient_fabric.json │ │ │ │ ├── blue_fabric.json │ │ │ │ ├── brown_ancient_fabric.json │ │ │ │ ├── brown_fabric.json │ │ │ │ ├── chaos_dimensional_door.json │ │ │ │ ├── cyan_ancient_fabric.json │ │ │ │ ├── cyan_fabric.json │ │ │ │ ├── decayed_block.json │ │ │ │ ├── detached_rift.json │ │ │ │ ├── dimensional_portal.json │ │ │ │ ├── dungeon_door.json │ │ │ │ ├── eternal_fluid.json │ │ │ │ ├── gray_ancient_fabric.json │ │ │ │ ├── gray_fabric.json │ │ │ │ ├── green_ancient_fabric.json │ │ │ │ ├── green_fabric.json │ │ │ │ ├── leak.json │ │ │ │ ├── light_blue_ancient_fabric.json │ │ │ │ ├── light_blue_fabric.json │ │ │ │ ├── light_gray_ancient_fabric.json │ │ │ │ ├── light_gray_fabric.json │ │ │ │ ├── lime_ancient_fabric.json │ │ │ │ ├── lime_fabric.json │ │ │ │ ├── magenta_ancient_fabric.json │ │ │ │ ├── magenta_fabric.json │ │ │ │ ├── marking_plate.json │ │ │ │ ├── orange_ancient_fabric.json │ │ │ │ ├── orange_fabric.json │ │ │ │ ├── pink_ancient_fabric.json │ │ │ │ ├── pink_fabric.json │ │ │ │ ├── purple_ancient_fabric.json │ │ │ │ ├── purple_fabric.json │ │ │ │ ├── red_ancient_fabric.json │ │ │ │ ├── red_fabric.json │ │ │ │ ├── silver_ancient_fabric.json │ │ │ │ ├── silver_fabric.json │ │ │ │ ├── solid_static.json │ │ │ │ ├── stone_player.json │ │ │ │ ├── tesselating_loom.json │ │ │ │ ├── unfolded_block.json │ │ │ │ ├── unravelled_block.json │ │ │ │ ├── unwarped_block.json │ │ │ │ ├── white_ancient_fabric.json │ │ │ │ ├── white_fabric.json │ │ │ │ ├── wood_dimensional_trapdoor.json │ │ │ │ ├── yellow_ancient_fabric.json │ │ │ │ └── yellow_fabric.json │ │ │ ├── geo │ │ │ │ └── mob │ │ │ │ │ └── mask │ │ │ │ │ └── mask.geo.json │ │ │ ├── icon.png │ │ │ ├── lang │ │ │ │ ├── de_de.json │ │ │ │ ├── en_us.json │ │ │ │ ├── fr_ca.json │ │ │ │ ├── it_it.json │ │ │ │ ├── nl_nl.json │ │ │ │ ├── pt_br.json │ │ │ │ ├── ro_ro.json │ │ │ │ ├── ru_ru.json │ │ │ │ └── zh_cn.json │ │ │ ├── models │ │ │ │ ├── block │ │ │ │ │ ├── black_ancient_fabric.json │ │ │ │ │ ├── black_fabric.json │ │ │ │ │ ├── blue_ancient_fabric.json │ │ │ │ │ ├── blue_fabric.json │ │ │ │ │ ├── brown_ancient_fabric.json │ │ │ │ │ ├── brown_fabric.json │ │ │ │ │ ├── cyan_ancient_fabric.json │ │ │ │ │ ├── cyan_fabric.json │ │ │ │ │ ├── decayed_block.json │ │ │ │ │ ├── detached_rift.json │ │ │ │ │ ├── fullbright.json │ │ │ │ │ ├── gray_ancient_fabric.json │ │ │ │ │ ├── gray_fabric.json │ │ │ │ │ ├── green_ancient_fabric.json │ │ │ │ │ ├── green_fabric.json │ │ │ │ │ ├── light_blue_ancient_fabric.json │ │ │ │ │ ├── light_blue_fabric.json │ │ │ │ │ ├── light_gray_ancient_fabric.json │ │ │ │ │ ├── light_gray_fabric.json │ │ │ │ │ ├── lime_ancient_fabric.json │ │ │ │ │ ├── lime_fabric.json │ │ │ │ │ ├── magenta_ancient_fabric.json │ │ │ │ │ ├── magenta_fabric.json │ │ │ │ │ ├── marking_plate.json │ │ │ │ │ ├── orange_ancient_fabric.json │ │ │ │ │ ├── orange_fabric.json │ │ │ │ │ ├── pink_ancient_fabric.json │ │ │ │ │ ├── pink_fabric.json │ │ │ │ │ ├── purple_ancient_fabric.json │ │ │ │ │ ├── purple_fabric.json │ │ │ │ │ ├── quartz_door_bottom.json │ │ │ │ │ ├── quartz_door_bottom_rh.json │ │ │ │ │ ├── quartz_door_top.json │ │ │ │ │ ├── quartz_door_top_rh.json │ │ │ │ │ ├── red_ancient_fabric.json │ │ │ │ │ ├── red_fabric.json │ │ │ │ │ ├── silver_ancient_fabric.json │ │ │ │ │ ├── silver_fabric.json │ │ │ │ │ ├── solid_static.json │ │ │ │ │ ├── stone_player.json │ │ │ │ │ ├── tesselating_loom.json │ │ │ │ │ ├── unfolded_block.json │ │ │ │ │ ├── unravelled_block.json │ │ │ │ │ ├── unwarped_block.json │ │ │ │ │ ├── white_ancient_fabric.json │ │ │ │ │ ├── white_fabric.json │ │ │ │ │ ├── yellow_ancient_fabric.json │ │ │ │ │ └── yellow_fabric.json │ │ │ │ └── item │ │ │ │ │ ├── black_ancient_fabric.json │ │ │ │ │ ├── black_fabric.json │ │ │ │ │ ├── blue_ancient_fabric.json │ │ │ │ │ ├── blue_fabric.json │ │ │ │ │ ├── brown_ancient_fabric.json │ │ │ │ │ ├── brown_fabric.json │ │ │ │ │ ├── child_item.json │ │ │ │ │ ├── creepy_record.json │ │ │ │ │ ├── cyan_ancient_fabric.json │ │ │ │ │ ├── cyan_fabric.json │ │ │ │ │ ├── decayed_block.json │ │ │ │ │ ├── dimensional_eraser.json │ │ │ │ │ ├── dimensional_portal.json │ │ │ │ │ ├── dungeon_door.json │ │ │ │ │ ├── eternal_fluid.json │ │ │ │ │ ├── eternal_fluid_bucket.json │ │ │ │ │ ├── frayed_filament.json │ │ │ │ │ ├── gray_ancient_fabric.json │ │ │ │ │ ├── gray_fabric.json │ │ │ │ │ ├── green_ancient_fabric.json │ │ │ │ │ ├── green_fabric.json │ │ │ │ │ ├── infrangible_fiber.json │ │ │ │ │ ├── leak_bucket.json │ │ │ │ │ ├── light_blue_ancient_fabric.json │ │ │ │ │ ├── light_blue_fabric.json │ │ │ │ │ ├── light_gray_ancient_fabric.json │ │ │ │ │ ├── light_gray_fabric.json │ │ │ │ │ ├── lime_ancient_fabric.json │ │ │ │ │ ├── lime_fabric.json │ │ │ │ │ ├── magenta_ancient_fabric.json │ │ │ │ │ ├── magenta_fabric.json │ │ │ │ │ ├── marking_plate.json │ │ │ │ │ ├── mask_shard.json │ │ │ │ │ ├── mask_wand.json │ │ │ │ │ ├── monolith_spawner.json │ │ │ │ │ ├── orange_ancient_fabric.json │ │ │ │ │ ├── orange_fabric.json │ │ │ │ │ ├── pink_ancient_fabric.json │ │ │ │ │ ├── pink_fabric.json │ │ │ │ │ ├── purple_ancient_fabric.json │ │ │ │ │ ├── purple_fabric.json │ │ │ │ │ ├── red_ancient_fabric.json │ │ │ │ │ ├── red_fabric.json │ │ │ │ │ ├── rift_blade.json │ │ │ │ │ ├── rift_configuration_tool.json │ │ │ │ │ ├── rift_key.json │ │ │ │ │ ├── rift_remover.json │ │ │ │ │ ├── rift_signature.json │ │ │ │ │ ├── rift_stabilizer.json │ │ │ │ │ ├── silver_ancient_fabric.json │ │ │ │ │ ├── silver_fabric.json │ │ │ │ │ ├── solid_static.json │ │ │ │ │ ├── stabilized_rift_signature.json │ │ │ │ │ ├── stable_fabric.json │ │ │ │ │ ├── tesselating_loom.json │ │ │ │ │ ├── they_stare_back_record.json │ │ │ │ │ ├── unfolded_block.json │ │ │ │ │ ├── unraveled_spike.json │ │ │ │ │ ├── unravelled_block.json │ │ │ │ │ ├── unstable_dimensional_door.json │ │ │ │ │ ├── unwarped_block.json │ │ │ │ │ ├── white_ancient_fabric.json │ │ │ │ │ ├── white_fabric.json │ │ │ │ │ ├── white_void_record.json │ │ │ │ │ ├── wood_dimensional_trapdoor.json │ │ │ │ │ ├── world_thread.json │ │ │ │ │ ├── yellow_ancient_fabric.json │ │ │ │ │ └── yellow_fabric.json │ │ │ ├── particles │ │ │ │ ├── limbo_ash.json │ │ │ │ ├── monolith.json │ │ │ │ └── rift.json │ │ │ ├── sounds.json │ │ │ ├── sounds │ │ │ │ ├── bloop.ogg │ │ │ │ ├── crack.ogg │ │ │ │ ├── creepy.ogg │ │ │ │ ├── creepy_faded.ogg │ │ │ │ ├── door_lock_removed.mp3 │ │ │ │ ├── door_lock_removed.ogg │ │ │ │ ├── door_locked.mp3 │ │ │ │ ├── door_locked.ogg │ │ │ │ ├── key_lock.mp3 │ │ │ │ ├── key_lock.ogg │ │ │ │ ├── key_unlock.mp3 │ │ │ │ ├── key_unlock.ogg │ │ │ │ ├── monk.ogg │ │ │ │ ├── rift.ogg │ │ │ │ ├── rift_close.ogg │ │ │ │ ├── rift_door.ogg │ │ │ │ ├── rift_end.ogg │ │ │ │ ├── rift_start.ogg │ │ │ │ ├── tearing.ogg │ │ │ │ ├── tesselating_weave.ogg │ │ │ │ ├── they_stare_back.ogg │ │ │ │ └── white_void.ogg │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── amalgam__deepslate_ore.png │ │ │ │ ├── amalgam_block.png │ │ │ │ ├── amalgam_door.png │ │ │ │ ├── amalgam_door_bottom.png │ │ │ │ ├── amalgam_door_top.png │ │ │ │ ├── amalgam_lump.png │ │ │ │ ├── amalgam_ore.png │ │ │ │ ├── amalgam_smooth_block.png │ │ │ │ ├── amalgam_trapdoor.png │ │ │ │ ├── black_ancient_fabric.png │ │ │ │ ├── black_ancient_fabric.png.mcmeta │ │ │ │ ├── black_fabric.png │ │ │ │ ├── blue_ancient_fabric.png │ │ │ │ ├── blue_ancient_fabric.png.mcmeta │ │ │ │ ├── blue_fabric.png │ │ │ │ ├── brown_ancient_fabric.png │ │ │ │ ├── brown_ancient_fabric.png.mcmeta │ │ │ │ ├── brown_fabric.png │ │ │ │ ├── clod_block.png │ │ │ │ ├── clod_deepslate_ore.png │ │ │ │ ├── clod_ore.png │ │ │ │ ├── cyan_ancient_fabric.png │ │ │ │ ├── cyan_ancient_fabric.png.mcmeta │ │ │ │ ├── cyan_fabric.png │ │ │ │ ├── dark_sand.png │ │ │ │ ├── decayed_block.png │ │ │ │ ├── dimensional_trapdoor.png │ │ │ │ ├── driftwood_door_bottom.png │ │ │ │ ├── driftwood_door_top.png │ │ │ │ ├── driftwood_leaves.png │ │ │ │ ├── driftwood_log.png │ │ │ │ ├── driftwood_log_top.png │ │ │ │ ├── driftwood_planks.png │ │ │ │ ├── driftwood_sapling.png │ │ │ │ ├── driftwood_trapdoor.png │ │ │ │ ├── eternal_fluid_flow.png │ │ │ │ ├── eternal_fluid_flow.png.mcmeta │ │ │ │ ├── eternal_fluid_still.png │ │ │ │ ├── eternal_fluid_still.png.mcmeta │ │ │ │ ├── gold_door_bottom.png │ │ │ │ ├── gold_door_top.png │ │ │ │ ├── gray_ancient_fabric.png │ │ │ │ ├── gray_ancient_fabric.png.mcmeta │ │ │ │ ├── gray_fabric.png │ │ │ │ ├── green_ancient_fabric.png │ │ │ │ ├── green_ancient_fabric.png.mcmeta │ │ │ │ ├── green_fabric.png │ │ │ │ ├── gritty_stone.png │ │ │ │ ├── iron_dimensional_door_bottom.png │ │ │ │ ├── iron_dimensional_door_top.png │ │ │ │ ├── leak_flow.png │ │ │ │ ├── leak_flow.png.mcmeta │ │ │ │ ├── leak_still.png │ │ │ │ ├── leak_still.png.mcmeta │ │ │ │ ├── light_blue_ancient_fabric.png │ │ │ │ ├── light_blue_ancient_fabric.png.mcmeta │ │ │ │ ├── light_blue_fabric.png │ │ │ │ ├── light_gray_ancient_fabric.mcmeta │ │ │ │ ├── light_gray_ancient_fabric.png │ │ │ │ ├── light_gray_fabric.png │ │ │ │ ├── lime_ancient_fabric.png │ │ │ │ ├── lime_ancient_fabric.png.mcmeta │ │ │ │ ├── lime_fabric.png │ │ │ │ ├── low.png │ │ │ │ ├── magenta_ancient_fabric.png │ │ │ │ ├── magenta_ancient_fabric.png.mcmeta │ │ │ │ ├── magenta_fabric.png │ │ │ │ ├── marking_plate.png │ │ │ │ ├── oak_dimensional_door_bottom.png │ │ │ │ ├── oak_dimensional_door_top.png │ │ │ │ ├── orange_ancient_fabric.png │ │ │ │ ├── orange_ancient_fabric.png.mcmeta │ │ │ │ ├── orange_fabric.png │ │ │ │ ├── ore.png │ │ │ │ ├── pink_ancient_fabric.png │ │ │ │ ├── pink_ancient_fabric.png.mcmeta │ │ │ │ ├── pink_fabric.png │ │ │ │ ├── purple_ancient_fabric.png │ │ │ │ ├── purple_ancient_fabric.png.mcmeta │ │ │ │ ├── purple_fabric.png │ │ │ │ ├── quartz_door_bottom.png │ │ │ │ ├── quartz_door_top.png │ │ │ │ ├── reality_sponge.png │ │ │ │ ├── reality_sponge_wet.png │ │ │ │ ├── red_ancient_fabric.png │ │ │ │ ├── red_ancient_fabric.png.mcmeta │ │ │ │ ├── red_fabric.png │ │ │ │ ├── rust.png │ │ │ │ ├── silver_ancient_fabric.png │ │ │ │ ├── silver_ancient_fabric.png.mcmeta │ │ │ │ ├── silver_fabric.png │ │ │ │ ├── solid_static.png │ │ │ │ ├── solid_static.png.mcmeta │ │ │ │ ├── stone_door_bottom.png │ │ │ │ ├── stone_door_top.png │ │ │ │ ├── stone_player.png │ │ │ │ ├── tesselating_loom_bottom.png │ │ │ │ ├── tesselating_loom_front.png │ │ │ │ ├── tesselating_loom_side.png │ │ │ │ ├── tesselating_loom_top.png │ │ │ │ ├── unfolded_block.png │ │ │ │ ├── unfolded_block_down.png │ │ │ │ ├── unfolded_block_east.png │ │ │ │ ├── unfolded_block_north.png │ │ │ │ ├── unfolded_block_south.png │ │ │ │ ├── unfolded_block_up.png │ │ │ │ ├── unfolded_block_west.png │ │ │ │ ├── unraveled_spike_down_base.png │ │ │ │ ├── unraveled_spike_down_frustum.png │ │ │ │ ├── unraveled_spike_down_middle.png │ │ │ │ ├── unraveled_spike_down_tip.png │ │ │ │ ├── unraveled_spike_down_tip_merge.png │ │ │ │ ├── unraveled_spike_up_base.png │ │ │ │ ├── unraveled_spike_up_frustum.png │ │ │ │ ├── unraveled_spike_up_middle.png │ │ │ │ ├── unraveled_spike_up_tip.png │ │ │ │ ├── unraveled_spike_up_tip_merge.png │ │ │ │ ├── unravelled_block.png │ │ │ │ ├── unravelled_fabric.png │ │ │ │ ├── unravelled_fabric.png.mcmeta │ │ │ │ ├── unwarped_block.png │ │ │ │ ├── white_ancient_fabric.png │ │ │ │ ├── white_ancient_fabric.png.mcmeta │ │ │ │ ├── white_fabric.png │ │ │ │ ├── yellow_ancient_fabric.png │ │ │ │ ├── yellow_ancient_fabric.png.mcmeta │ │ │ │ └── yellow_fabric.png │ │ │ │ ├── item │ │ │ │ ├── amalgam_door.png │ │ │ │ ├── amalgam_lump.png │ │ │ │ ├── babeh_monolith_smol.gif │ │ │ │ ├── clod.png │ │ │ │ ├── dimensional_eraser.png │ │ │ │ ├── dimensional_portal.png │ │ │ │ ├── dimensional_portal.png.mcmeta │ │ │ │ ├── driftwood_door.png │ │ │ │ ├── enduring_fibers.png │ │ │ │ ├── eternal_fluid_bucket.png │ │ │ │ ├── fabric_of_finality.png │ │ │ │ ├── frayed_filament.png │ │ │ │ ├── fuzzy_fireball.png │ │ │ │ ├── garment_of_reality_boots.png │ │ │ │ ├── garment_of_reality_chestplate.png │ │ │ │ ├── garment_of_reality_helmet.png │ │ │ │ ├── garment_of_reality_leggings.png │ │ │ │ ├── gold_dimensional_door.png │ │ │ │ ├── gold_door.png │ │ │ │ ├── gritty_stone.png │ │ │ │ ├── img.png │ │ │ │ ├── img_1.png │ │ │ │ ├── img_2.png │ │ │ │ ├── infrangible_fiber.png │ │ │ │ ├── iron_dimensional_door.png │ │ │ │ ├── key.png │ │ │ │ ├── leak_bucket.png │ │ │ │ ├── liminal_lint.png │ │ │ │ ├── mask_shard.png │ │ │ │ ├── mask_wand.png │ │ │ │ ├── monolith_spawner.png │ │ │ │ ├── monolith_spawner.png.mcmeta │ │ │ │ ├── oak_dimensional_door.png │ │ │ │ ├── quartz_dimensional_door.png │ │ │ │ ├── quartz_door.png │ │ │ │ ├── record_creepy.png │ │ │ │ ├── record_creepy.png.mcmeta │ │ │ │ ├── rift_blade.png │ │ │ │ ├── rift_configuration_tool.png │ │ │ │ ├── rift_key.png │ │ │ │ ├── rift_pearl.png │ │ │ │ ├── rift_remover.png │ │ │ │ ├── rift_signature.png │ │ │ │ ├── rift_stabilizer.png │ │ │ │ ├── rust_item.png │ │ │ │ ├── rust_pile.png │ │ │ │ ├── stabilized_rift_signature.png │ │ │ │ ├── stable_fabric.png │ │ │ │ ├── stone_door.png │ │ │ │ ├── they_stare_back_record.png │ │ │ │ ├── unraveled_spike.png │ │ │ │ ├── unstable_dimensional_door.png │ │ │ │ ├── white_void_record.png │ │ │ │ ├── white_void_record.png.mcmeta │ │ │ │ ├── world_thread.png │ │ │ │ ├── world_thread_boots.png │ │ │ │ ├── world_thread_chestplate.png │ │ │ │ ├── world_thread_helmet.png │ │ │ │ └── world_thread_leggings.png │ │ │ │ ├── mob │ │ │ │ ├── mask │ │ │ │ │ └── mask.png │ │ │ │ └── monolith │ │ │ │ │ ├── solid │ │ │ │ │ ├── monolith_0.png │ │ │ │ │ ├── monolith_1.png │ │ │ │ │ ├── monolith_10.png │ │ │ │ │ ├── monolith_11.png │ │ │ │ │ ├── monolith_12.png │ │ │ │ │ ├── monolith_13.png │ │ │ │ │ ├── monolith_14.png │ │ │ │ │ ├── monolith_15.png │ │ │ │ │ ├── monolith_16.png │ │ │ │ │ ├── monolith_17.png │ │ │ │ │ ├── monolith_18.png │ │ │ │ │ ├── monolith_2.png │ │ │ │ │ ├── monolith_3.png │ │ │ │ │ ├── monolith_4.png │ │ │ │ │ ├── monolith_5.png │ │ │ │ │ ├── monolith_6.png │ │ │ │ │ ├── monolith_7.png │ │ │ │ │ ├── monolith_8.png │ │ │ │ │ └── monolith_9.png │ │ │ │ │ └── transparent │ │ │ │ │ ├── monolith_0.png │ │ │ │ │ ├── monolith_1.png │ │ │ │ │ ├── monolith_10.png │ │ │ │ │ ├── monolith_11.png │ │ │ │ │ ├── monolith_12.png │ │ │ │ │ ├── monolith_13.png │ │ │ │ │ ├── monolith_14.png │ │ │ │ │ ├── monolith_15.png │ │ │ │ │ ├── monolith_16.png │ │ │ │ │ ├── monolith_17.png │ │ │ │ │ ├── monolith_18.png │ │ │ │ │ ├── monolith_2.png │ │ │ │ │ ├── monolith_3.png │ │ │ │ │ ├── monolith_4.png │ │ │ │ │ ├── monolith_5.png │ │ │ │ │ ├── monolith_6.png │ │ │ │ │ ├── monolith_7.png │ │ │ │ │ ├── monolith_8.png │ │ │ │ │ └── monolith_9.png │ │ │ │ ├── other │ │ │ │ ├── grey.png │ │ │ │ ├── limbo_moon.png │ │ │ │ ├── limbo_sun.png │ │ │ │ ├── rift.png │ │ │ │ ├── static.png │ │ │ │ ├── tesseract.png │ │ │ │ └── warp.png │ │ │ │ └── screen │ │ │ │ └── container │ │ │ │ └── tesselating_loom.png │ │ ├── minecraft │ │ │ ├── shaders │ │ │ │ └── core │ │ │ │ │ ├── dimensional_portal.fsh │ │ │ │ │ ├── dimensional_portal.json │ │ │ │ │ ├── dimensional_portal.vsh │ │ │ │ │ ├── static.fsh │ │ │ │ │ ├── static.json │ │ │ │ │ └── static.vsh │ │ │ └── textures │ │ │ │ └── models │ │ │ │ └── armor │ │ │ │ ├── garment_of_reality_layer_1.png │ │ │ │ ├── garment_of_reality_layer_2.png │ │ │ │ ├── world_thread_layer_1.png │ │ │ │ └── world_thread_layer_2.png │ │ ├── pack.mcmeta │ │ └── pack.png │ ├── data │ │ ├── c │ │ │ └── tags │ │ │ │ └── items │ │ │ │ ├── gold_ingots.json │ │ │ │ └── iron_ingots.json │ │ ├── dimdoors │ │ │ ├── dimension │ │ │ │ ├── dungeon_pockets.json │ │ │ │ ├── limbo.json │ │ │ │ ├── personal_pockets.json │ │ │ │ └── public_pockets.json │ │ │ ├── door │ │ │ │ └── data │ │ │ │ │ ├── driftwood_door.json │ │ │ │ │ ├── quartz_door.json │ │ │ │ │ └── stone_door.json │ │ │ ├── loot_tables │ │ │ │ ├── blocks │ │ │ │ │ ├── gold_dimensional_door.json │ │ │ │ │ ├── iron_dimensional_door.json │ │ │ │ │ ├── oak_dimensional_door.json │ │ │ │ │ └── quartz_dimensional_door.json │ │ │ │ ├── dispenser_potion_arrows.json │ │ │ │ ├── dispenser_projectiles.json │ │ │ │ ├── dispenser_splash_potions.json │ │ │ │ ├── dungeon_chest.json │ │ │ │ ├── entities │ │ │ │ │ └── mask.json │ │ │ │ └── removed_rift.json │ │ │ ├── recipes │ │ │ │ ├── gold_dimensional_door.json │ │ │ │ ├── iron_dimensional_door.json │ │ │ │ ├── oak_dimensional_door.json │ │ │ │ └── quartz_dimensional_door.json │ │ │ ├── structures │ │ │ │ ├── bastion │ │ │ │ │ └── treasure │ │ │ │ │ │ └── houses │ │ │ │ │ │ └── bastion_gateway.nbt │ │ │ │ └── gateways │ │ │ │ │ ├── enclosed.nbt │ │ │ │ │ ├── enclosed_endstone.nbt │ │ │ │ │ ├── enclosed_mud.nbt │ │ │ │ │ ├── enclosed_prismarine.nbt │ │ │ │ │ ├── enclosed_quartz.nbt │ │ │ │ │ ├── enclosed_red_sandstone.nbt │ │ │ │ │ ├── enclosed_sandstone.nbt │ │ │ │ │ ├── end_gateway.schem │ │ │ │ │ ├── ice_pillars.nbt │ │ │ │ │ ├── limbo.nbt │ │ │ │ │ ├── red_sandstone_pillars.nbt │ │ │ │ │ ├── sandstone_pillars.nbt │ │ │ │ │ └── two_pillars.nbt │ │ │ ├── tags │ │ │ │ ├── blocks │ │ │ │ │ ├── ag_door.json │ │ │ │ │ ├── ancient_fabric.json │ │ │ │ │ └── fabric.json │ │ │ │ └── items │ │ │ │ │ ├── ancient_fabric.json │ │ │ │ │ └── fabric.json │ │ │ └── worldgen │ │ │ │ ├── density_function │ │ │ │ └── limbo │ │ │ │ │ ├── final_density.json │ │ │ │ │ ├── strand.json │ │ │ │ │ ├── terrain.json │ │ │ │ │ ├── x_shift.json │ │ │ │ │ ├── y_shift.json │ │ │ │ │ └── z_shift.json │ │ │ │ └── noise_settings │ │ │ │ └── limbo.json │ │ ├── fabric │ │ │ └── tags │ │ │ │ └── items │ │ │ │ └── swords.json │ │ └── minecraft │ │ │ ├── door │ │ │ └── data │ │ │ │ ├── crimson_door.json │ │ │ │ ├── iron_door.json │ │ │ │ └── oak_door.json │ │ │ └── tags │ │ │ └── blocks │ │ │ ├── mineable │ │ │ └── pickaxe.json │ │ │ └── needs_iron_tool.json │ ├── dimdoors-common.mixins.json │ ├── dimdoors.accesswidener │ ├── resourcepacks │ │ ├── classic │ │ │ ├── data │ │ │ │ └── dimdoors │ │ │ │ │ └── pockets │ │ │ │ │ ├── generators │ │ │ │ │ └── classic │ │ │ │ │ │ └── ruins │ │ │ │ │ │ ├── broken_pillars.json │ │ │ │ │ │ ├── buggy_top_entry.json │ │ │ │ │ │ ├── collapsed_single_tunnel.json │ │ │ │ │ │ ├── crumbled_hall.json │ │ │ │ │ │ ├── door_totem_ruins.json │ │ │ │ │ │ ├── exit_cube.json │ │ │ │ │ │ ├── exit_ruins_with_hidden_door.json │ │ │ │ │ │ ├── heart_of_disorder.json │ │ │ │ │ │ ├── hot_suspense.json │ │ │ │ │ │ ├── jump_pass.json │ │ │ │ │ │ ├── rope_bridge.json │ │ │ │ │ │ ├── ruins_oh_no.json │ │ │ │ │ │ ├── simple_drop_hall.json │ │ │ │ │ │ ├── simple_small_t.json │ │ │ │ │ │ ├── simple_stairs_down.json │ │ │ │ │ │ ├── simple_stairs_up.json │ │ │ │ │ │ ├── small_desert.json │ │ │ │ │ │ ├── small_exit_prison.json │ │ │ │ │ │ ├── small_maze.json │ │ │ │ │ │ ├── small_pond.json │ │ │ │ │ │ ├── spiral_hallway.json │ │ │ │ │ │ ├── transfer_tunnel.json │ │ │ │ │ │ ├── u_trap_right.json │ │ │ │ │ │ ├── u_turn_left.json │ │ │ │ │ │ └── u_turn_right.json │ │ │ │ │ ├── schematic │ │ │ │ │ └── classic │ │ │ │ │ │ └── ruins │ │ │ │ │ │ ├── broken_pillars.schem │ │ │ │ │ │ ├── buggy_top_entry.schem │ │ │ │ │ │ ├── collapsed_single_tunnel.schem │ │ │ │ │ │ ├── crumbled_hall.schem │ │ │ │ │ │ ├── door_totem_ruins.schem │ │ │ │ │ │ ├── exit_cube.schem │ │ │ │ │ │ ├── exit_ruins_with_hidden_door.schem │ │ │ │ │ │ ├── heart_of_disorder.schem │ │ │ │ │ │ ├── hot_suspense.schem │ │ │ │ │ │ ├── jump_pass.schem │ │ │ │ │ │ ├── rope_bridge.schem │ │ │ │ │ │ ├── ruins_oh_no.schem │ │ │ │ │ │ ├── simple_drop_hall.schem │ │ │ │ │ │ ├── simple_small_t.schem │ │ │ │ │ │ ├── simple_stairs_down.schem │ │ │ │ │ │ ├── simple_stairs_up.schem │ │ │ │ │ │ ├── small_desert.schem │ │ │ │ │ │ ├── small_exit_prison.schem │ │ │ │ │ │ ├── small_maze.schem │ │ │ │ │ │ ├── small_pond.schem │ │ │ │ │ │ ├── spiral_hallway.schem │ │ │ │ │ │ ├── transfer_tunnel.schem │ │ │ │ │ │ ├── u_trap_right.schem │ │ │ │ │ │ ├── u_turn_left.schem │ │ │ │ │ │ ├── u_turn_right.schem │ │ │ │ │ │ └── unused │ │ │ │ │ │ ├── abc.schem │ │ │ │ │ │ ├── anchored_descent.schem │ │ │ │ │ │ ├── arrow_hall.schem │ │ │ │ │ │ ├── azers_dungeon.schem │ │ │ │ │ │ ├── diamond_tower_temple.schem │ │ │ │ │ │ ├── fake_tnt_trap_a.schem │ │ │ │ │ │ └── fake_tnt_trap_b.schem │ │ │ │ │ └── virtual │ │ │ │ │ └── dungeon │ │ │ │ │ └── classic.json │ │ │ ├── pack.mcmeta │ │ │ └── pack.png │ │ └── default │ │ │ ├── data │ │ │ └── dimdoors │ │ │ │ └── pockets │ │ │ │ ├── generators │ │ │ │ ├── dungeon │ │ │ │ │ ├── beach.json │ │ │ │ │ ├── break_block_boom.json │ │ │ │ │ ├── cage_monolithless.json │ │ │ │ │ ├── chain_crossing.json │ │ │ │ │ ├── chain_t.json │ │ │ │ │ ├── decaying_chain_tunnel.json │ │ │ │ │ ├── freeroam_empty_street.json │ │ │ │ │ ├── freeroam_graveyard.json │ │ │ │ │ ├── honey_parkour.json │ │ │ │ │ ├── lantredom.json │ │ │ │ │ ├── lantredom_end.json │ │ │ │ │ ├── lantredom_red.json │ │ │ │ │ ├── lava_trap.json │ │ │ │ │ ├── line_walker.json │ │ │ │ │ ├── long_corridor.json │ │ │ │ │ ├── mob_prison.json │ │ │ │ │ ├── monolith_cage.json │ │ │ │ │ ├── party.json │ │ │ │ │ ├── random_arrow_chance.json │ │ │ │ │ ├── returning_eye.json │ │ │ │ │ ├── rising_hand.json │ │ │ │ │ ├── river_road_twin_bridges.json │ │ │ │ │ ├── ruins_caged_warps.json │ │ │ │ │ ├── ruins_camp_station.json │ │ │ │ │ ├── ruins_corrupted_endportal.json │ │ │ │ │ ├── ruins_deepslate_hub.json │ │ │ │ │ ├── ruins_diamond_tnt_trap_a.json │ │ │ │ │ ├── ruins_diamond_tnt_trap_b.json │ │ │ │ │ ├── ruins_elevator_tnt_trap.json │ │ │ │ │ ├── ruins_fire_charge_timing.json │ │ │ │ │ ├── ruins_items4life.json │ │ │ │ │ ├── ruins_lava_trap.json │ │ │ │ │ ├── ruins_long_stairwell_down.json │ │ │ │ │ ├── ruins_mansion_combination_puzzle.json │ │ │ │ │ ├── ruins_multiple_warppoints.json │ │ │ │ │ ├── ruins_pressure_plate_riddle.json │ │ │ │ │ ├── ruins_push_into_void_trap.json │ │ │ │ │ ├── ruins_simple_door.json │ │ │ │ │ ├── ruins_simple_door_trap.json │ │ │ │ │ ├── ruins_simple_door_troll.json │ │ │ │ │ ├── ruins_small_pressure_plate_maze.json │ │ │ │ │ ├── ruins_sprike_traps.json │ │ │ │ │ ├── ruins_stairs_up_down_warp.json │ │ │ │ │ ├── ruins_stairwell_up.json │ │ │ │ │ ├── ruins_target_practise.json │ │ │ │ │ ├── schopophobia.json │ │ │ │ │ ├── silverfish_bridge.json │ │ │ │ │ ├── small_deepslatebricks_hallway.json │ │ │ │ │ ├── small_endbrick_hallway.json │ │ │ │ │ ├── small_ice_hallway.json │ │ │ │ │ ├── small_netherbricks_hallway.json │ │ │ │ │ ├── small_prismarine_hallway.json │ │ │ │ │ ├── small_purpurbricks_hallway.json │ │ │ │ │ ├── small_red_sandstone_hallway.json │ │ │ │ │ ├── small_river.json │ │ │ │ │ ├── small_sandstone_hallway.json │ │ │ │ │ ├── smile_6.json │ │ │ │ │ ├── stone_brick_bridge.json │ │ │ │ │ ├── string_field.json │ │ │ │ │ ├── trap_rib_tunnel.json │ │ │ │ │ ├── upwards_pillars.json │ │ │ │ │ ├── upwards_t_treasure.json │ │ │ │ │ ├── void_path_of_fear.json │ │ │ │ │ ├── void_railroad_a.json │ │ │ │ │ ├── void_railroad_b.json │ │ │ │ │ ├── void_why.json │ │ │ │ │ ├── void_whyless.json │ │ │ │ │ ├── waiting_room.json │ │ │ │ │ └── white_fabric_maze.json │ │ │ │ ├── example │ │ │ │ │ └── purpur_hallway.json │ │ │ │ ├── lab │ │ │ │ │ ├── lab_01.json │ │ │ │ │ ├── lab_experimentation.json │ │ │ │ │ ├── lab_hallway.json │ │ │ │ │ ├── labfinal.json │ │ │ │ │ ├── left_lab_hallway.json │ │ │ │ │ ├── reception.json │ │ │ │ │ ├── right_lab_hallway.json │ │ │ │ │ └── telecommunications.json │ │ │ │ ├── myth │ │ │ │ │ ├── eden.json │ │ │ │ │ ├── sewer.json │ │ │ │ │ └── timoria.json │ │ │ │ ├── nether │ │ │ │ │ ├── nether_farm.json │ │ │ │ │ └── nether_spawners.json │ │ │ │ ├── private │ │ │ │ │ └── default.json │ │ │ │ └── public │ │ │ │ │ └── default.json │ │ │ │ ├── groups │ │ │ │ ├── dungeon.json │ │ │ │ ├── example.json │ │ │ │ ├── myth.json │ │ │ │ ├── nether.json │ │ │ │ ├── private.json │ │ │ │ └── public.json │ │ │ │ ├── json │ │ │ │ └── rift_data │ │ │ │ │ ├── default_dungeon.json │ │ │ │ │ ├── escape.json │ │ │ │ │ ├── limbo.json │ │ │ │ │ ├── pocket_entrance.json │ │ │ │ │ └── public_entrance.json │ │ │ │ ├── schematic │ │ │ │ ├── blank │ │ │ │ │ ├── blank_pocket_0.schem │ │ │ │ │ ├── blank_pocket_1.schem │ │ │ │ │ ├── blank_pocket_2.schem │ │ │ │ │ ├── blank_pocket_3.schem │ │ │ │ │ ├── blank_pocket_4.schem │ │ │ │ │ ├── blank_pocket_5.schem │ │ │ │ │ ├── blank_pocket_6.schem │ │ │ │ │ └── blank_pocket_7.schem │ │ │ │ ├── dungeon │ │ │ │ │ ├── beach.schem │ │ │ │ │ ├── break_block_boom.schem │ │ │ │ │ ├── cage_monolithless.schem │ │ │ │ │ ├── chain_crossing.schem │ │ │ │ │ ├── chain_t.schem │ │ │ │ │ ├── decaying_chain_tunnel.schem │ │ │ │ │ ├── freeroam_empty_street.schem │ │ │ │ │ ├── freeroam_graveyard.schem │ │ │ │ │ ├── honey_parkour.schem │ │ │ │ │ ├── jungle_riddle_fixed.schem │ │ │ │ │ ├── lantredom.schem │ │ │ │ │ ├── lantredom_end.schem │ │ │ │ │ ├── lantredom_red.schem │ │ │ │ │ ├── lava_trap.schem │ │ │ │ │ ├── line_walker.schem │ │ │ │ │ ├── long_corridor.schem │ │ │ │ │ ├── mob_prison.schem │ │ │ │ │ ├── monolith_cage.schem │ │ │ │ │ ├── party.schem │ │ │ │ │ ├── random_arrow_chance.schem │ │ │ │ │ ├── returning_eye.schem │ │ │ │ │ ├── rising_hand.schem │ │ │ │ │ ├── river_road_twin_bridges.schem │ │ │ │ │ ├── ruins_caged_warps.schem │ │ │ │ │ ├── ruins_camp_station.schem │ │ │ │ │ ├── ruins_corrupted_endportal.schem │ │ │ │ │ ├── ruins_deepslate_hub.schem │ │ │ │ │ ├── ruins_diamond_tnt_trap_a.schem │ │ │ │ │ ├── ruins_diamond_tnt_trap_b.schem │ │ │ │ │ ├── ruins_elevator_tnt_trap.schem │ │ │ │ │ ├── ruins_fire_charge_timing.schem │ │ │ │ │ ├── ruins_items4life.schem │ │ │ │ │ ├── ruins_lava_trap.schem │ │ │ │ │ ├── ruins_long_stairwell_down.schem │ │ │ │ │ ├── ruins_mansion_combination_puzzle.schem │ │ │ │ │ ├── ruins_multiple_warppoints.schem │ │ │ │ │ ├── ruins_pressure_plate_riddle.schem │ │ │ │ │ ├── ruins_push_into_void_trap.schem │ │ │ │ │ ├── ruins_simple_door.schem │ │ │ │ │ ├── ruins_simple_door_trap.schem │ │ │ │ │ ├── ruins_simple_door_troll.schem │ │ │ │ │ ├── ruins_small_pressure_plate_maze.schem │ │ │ │ │ ├── ruins_sprike_traps.schem │ │ │ │ │ ├── ruins_stairs_up_down_warp.schem │ │ │ │ │ ├── ruins_stairwell_up.schem │ │ │ │ │ ├── ruins_target_practise.schem │ │ │ │ │ ├── schopophobia.schem │ │ │ │ │ ├── silverfish_bridge.schem │ │ │ │ │ ├── small_deepslatebricks_hallway.schem │ │ │ │ │ ├── small_endbrick_hallway.schem │ │ │ │ │ ├── small_ice_hallway.schem │ │ │ │ │ ├── small_netherbricks_hallway.schem │ │ │ │ │ ├── small_prismarine_hallway.schem │ │ │ │ │ ├── small_purpurbricks_hallway.schem │ │ │ │ │ ├── small_red_sandstone_hallway.schem │ │ │ │ │ ├── small_river.schem │ │ │ │ │ ├── small_sandstone_hallway.schem │ │ │ │ │ ├── smile_6.schem │ │ │ │ │ ├── stone_brick_bridge.schem │ │ │ │ │ ├── string_field.schem │ │ │ │ │ ├── trap_rib_tunnel.schem │ │ │ │ │ ├── upwards_pillars.schem │ │ │ │ │ ├── upwards_t_treasure.schem │ │ │ │ │ ├── void_path_of_fear.schem │ │ │ │ │ ├── void_railroad_a.schem │ │ │ │ │ ├── void_railroad_b.schem │ │ │ │ │ ├── void_why.schem │ │ │ │ │ ├── void_whyless.schem │ │ │ │ │ ├── waiting_room.schem │ │ │ │ │ └── white_fabric_maze.schem │ │ │ │ ├── example │ │ │ │ │ └── purpur_hallway.schem │ │ │ │ ├── lab │ │ │ │ │ ├── lab_01.schem │ │ │ │ │ ├── lab_experimentation.schem │ │ │ │ │ ├── lab_hallway.schem │ │ │ │ │ ├── labfinal.schem │ │ │ │ │ ├── left_lab_hallway.schem │ │ │ │ │ ├── reception.schem │ │ │ │ │ ├── right_lab_hallway.schem │ │ │ │ │ ├── telecommunication.schem │ │ │ │ │ └── telecommunications.schem │ │ │ │ ├── myth │ │ │ │ │ ├── eden.schem │ │ │ │ │ ├── sewer.schem │ │ │ │ │ └── timoria.schem │ │ │ │ └── nether │ │ │ │ │ ├── nether_farm.schem │ │ │ │ │ └── nether_spawners.schem │ │ │ │ └── virtual │ │ │ │ ├── dungeon │ │ │ │ └── default.json │ │ │ │ ├── lab │ │ │ │ ├── lab_01.json │ │ │ │ ├── lab_entrance.json │ │ │ │ ├── lab_experimentation.json │ │ │ │ ├── lab_hallway.json │ │ │ │ ├── labfinal.json │ │ │ │ ├── left_lab_hallway.json │ │ │ │ ├── reception.json │ │ │ │ ├── right_lab_hallway.json │ │ │ │ └── telecommunications.json │ │ │ │ ├── private │ │ │ │ └── default.json │ │ │ │ └── public │ │ │ │ └── default.json │ │ │ ├── pack.mcmeta │ │ │ └── pack.png │ └── wthit_plugins.json │ └── schematics │ └── org │ └── dimdev │ └── dimdoors │ └── util │ └── schematic │ ├── RelativeBlockSample.java │ ├── SchemFixer.java │ ├── Schematic.java │ ├── SchematicBlockPalette.java │ ├── SchematicMetadata.java │ ├── SchematicPlacer.java │ └── WorldlyBlockSample.java ├── fabric ├── build.gradle └── src │ └── main │ ├── datagen │ └── org │ │ └── dimdev │ │ └── dimdoors │ │ └── datagen │ │ ├── AdvancementProvider.java │ │ ├── AdvancementTab.java │ │ ├── BiomeTagProvider.java │ │ ├── BlockTagProvider.java │ │ ├── ColoredFabricRecipeProvider.java │ │ ├── DatagenInitializer.java │ │ ├── DimDoorsDynamicRegistryProvider.java │ │ ├── DimDoorsModelProvider.java │ │ ├── DimdoorsRecipeProvider.java │ │ ├── ItemTagProvider.java │ │ ├── LimboDecayProvider.java │ │ ├── LootTableProvider.java │ │ ├── ModChunkGeneratorSettings.java │ │ ├── ModDensityFunctions.java │ │ ├── ModNoiseParameters.java │ │ ├── ModStructureSets.java │ │ ├── TesselatingRecipeJsonBuilder.java │ │ ├── TesselatingRecipeProvider.java │ │ └── TesselatingShapelessRecipeBuilder.java │ ├── java │ └── org │ │ └── dimdev │ │ └── dimdoors │ │ ├── DimensionalDoorsComponents.java │ │ ├── DimensionalDoorsFabric.java │ │ ├── EarlyRiser.java │ │ ├── api │ │ └── util │ │ │ └── fabric │ │ │ └── TeleportUtilImpl.java │ │ ├── client │ │ ├── DimensionRenderering.java │ │ ├── DimensionalDoorsClientFabric.java │ │ ├── RecipeBookManager.java │ │ ├── effect │ │ │ └── fabric │ │ │ │ └── DungeonDimensionEffectImpl.java │ │ └── fabric │ │ │ ├── ModRecipeBookGroupsImpl.java │ │ │ └── ModRecipeBookTypesImpl.java │ │ ├── command │ │ └── fabric │ │ │ └── WorldeditHelperImpl.java │ │ ├── compat │ │ └── ModMenuCompat.java │ │ ├── fabric │ │ ├── DimensionalDoorsImpl.java │ │ └── mixin │ │ │ ├── ItemStackMixin.java │ │ │ ├── RecipeBookSettingsAccessor.java │ │ │ └── client │ │ │ ├── PlaceRecipeMixin.java │ │ │ ├── RecipeBookCategoriesAccessor.java │ │ │ ├── RecipeBookCategoriesMixin.java │ │ │ └── RecipeBookManagerMixin.java │ │ ├── item │ │ ├── component │ │ │ └── fabric │ │ │ │ └── CounterComponentImpl.java │ │ └── fabric │ │ │ └── RaycastHelperImpl.java │ │ └── world │ │ ├── feature │ │ └── fabric │ │ │ └── ModFeaturesPlacedImpl.java │ │ └── level │ │ ├── component │ │ └── fabric │ │ │ └── ChunkLazilyGeneratedComponentImpl.java │ │ └── registry │ │ └── fabric │ │ └── DimensionalRegistryImpl.java │ └── resources │ ├── dimdoors.mixins.json │ └── fabric.mod.json ├── forge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── org │ │ └── dimdev │ │ └── dimdoors │ │ ├── DimensionalDoorsForge.java │ │ ├── api │ │ └── util │ │ │ └── forge │ │ │ └── TeleportUtilImpl.java │ │ ├── client │ │ ├── effect │ │ │ └── forge │ │ │ │ └── DungeonDimensionEffectImpl.java │ │ └── forge │ │ │ ├── DimensionalDoorsForgeClient.java │ │ │ ├── ModRecipeBookGroupsImpl.java │ │ │ └── ModRecipeBookTypesImpl.java │ │ ├── command │ │ └── forge │ │ │ └── WorldeditHelperImpl.java │ │ ├── compat │ │ └── TesselatingReiCompatClientForge.java │ │ ├── forge │ │ └── DimensionalDoorsImpl.java │ │ ├── item │ │ ├── component │ │ │ └── forge │ │ │ │ └── CounterComponentImpl.java │ │ └── forge │ │ │ └── RaycastHelperImpl.java │ │ ├── mixin │ │ └── forge │ │ │ ├── ItemStackMixin.java │ │ │ ├── ServerPlayerGameModeMixin.java │ │ │ ├── TessellatingRecipeMixin.java │ │ │ └── client │ │ │ └── ModelBakeryMIxin.java │ │ └── world │ │ ├── AddFeaturesBiomeModifier.java │ │ ├── ModBiomeModifiers.java │ │ ├── feature │ │ └── forge │ │ │ └── ModFeaturesPlacedImpl.java │ │ └── level │ │ ├── component │ │ └── forge │ │ │ └── ChunkLazilyGeneratedComponentImpl.java │ │ └── registry │ │ └── forge │ │ └── DimensionalRegistryImpl.java │ └── resources │ ├── META-INF │ └── mods.toml │ ├── dimdoors.mixins.json │ └── pack.mcmeta ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.architectury-transformer/debug.log: -------------------------------------------------------------------------------- 1 | [Architectury Transformer DEBUG] Closed File Systems for D:\Git\dimdoors\common\build\libs\dimdoors-5.2.0.jar 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.bat text=auto eol=crlf 3 | 4 | *.schem binary 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Dimensional Development Discord 4 | url: https://discord.gg/f27hdrM 5 | about: For support, please use the discord 6 | -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/amalgam_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/amalgam_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/amalgam_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/amalgam_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/clod_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/clod_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/clod_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/clod_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/dark_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/dark_sand" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/driftwood_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/driftwood_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/driftwood_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/driftwood_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/driftwood_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/driftwood_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/gritty_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/gritty_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/reality_sponge.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/reality_sponge" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/rust.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/rust" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/blockstates/unravelled_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/unravelled_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/amalgam_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/amalgam_block" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/amalgam_door_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left", 3 | "textures": { 4 | "bottom": "dimdoors:block/amalgam_door_bottom", 5 | "top": "dimdoors:block/amalgam_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/amalgam_door_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right", 3 | "textures": { 4 | "bottom": "dimdoors:block/amalgam_door_bottom", 5 | "top": "dimdoors:block/amalgam_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/amalgam_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/amalgam_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/amalgam_trapdoor_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_bottom", 3 | "textures": { 4 | "texture": "dimdoors:block/amalgam_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/amalgam_trapdoor_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_open", 3 | "textures": { 4 | "texture": "dimdoors:block/amalgam_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/amalgam_trapdoor_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_top", 3 | "textures": { 4 | "texture": "dimdoors:block/amalgam_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "minecraft:block/clay", 5 | "side": "minecraft:block/clay", 6 | "top": "minecraft:block/clay" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "minecraft:block/clay", 5 | "side": "minecraft:block/clay", 6 | "top": "minecraft:block/clay" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/clay", 5 | "side": "minecraft:block/clay", 6 | "top": "minecraft:block/clay" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clay_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clod_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/clod_block" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/clod_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/clod_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/dark_sand_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "dimdoors:block/dark_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/deepslate_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/deepslate" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/deepslate_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/deepslate" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/deepslate_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/deepslate" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/deepslate_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/deepslate" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/driftwood_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "dimdoors:block/driftwood_log_top", 5 | "side": "dimdoors:block/driftwood_log" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/driftwood_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/driftwood_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_trapdoor_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_bottom", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_trapdoor_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_open", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_trapdoor_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_top", 3 | "textures": { 4 | "texture": "dimdoors:block/driftwood_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/driftwood_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "dimdoors:block/driftwood_log", 5 | "side": "dimdoors:block/driftwood_log" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/end_stone_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/end_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/end_stone_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/end_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/end_stone_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/end_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/end_stone_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/end_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gold_door_bottom_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_left", 3 | "textures": { 4 | "bottom": "dimdoors:block/gold_door_bottom", 5 | "top": "dimdoors:block/gold_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gold_door_bottom_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_right", 3 | "textures": { 4 | "bottom": "dimdoors:block/gold_door_bottom", 5 | "top": "dimdoors:block/gold_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gold_door_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left", 3 | "textures": { 4 | "bottom": "dimdoors:block/gold_door_bottom", 5 | "top": "dimdoors:block/gold_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gold_door_top_left_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left_open", 3 | "textures": { 4 | "bottom": "dimdoors:block/gold_door_bottom", 5 | "top": "dimdoors:block/gold_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gold_door_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right", 3 | "textures": { 4 | "bottom": "dimdoors:block/gold_door_bottom", 5 | "top": "dimdoors:block/gold_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gold_door_top_right_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right_open", 3 | "textures": { 4 | "bottom": "dimdoors:block/gold_door_bottom", 5 | "top": "dimdoors:block/gold_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "minecraft:block/gravel", 5 | "side": "minecraft:block/gravel", 6 | "top": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gravel_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/gritty_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/gritty_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "minecraft:block/mud", 5 | "side": "minecraft:block/mud", 6 | "top": "minecraft:block/mud" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "minecraft:block/mud", 5 | "side": "minecraft:block/mud", 6 | "top": "minecraft:block/mud" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/mud_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/mud", 5 | "side": "minecraft:block/mud", 6 | "top": "minecraft:block/mud" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/netherrack_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/netherrack_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/netherrack_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/netherrack_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/netherrack_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/netherrack_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/netherrack_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/quartz_door_bottom_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_left", 3 | "textures": { 4 | "bottom": "dimdoors:block/quartz_door_bottom", 5 | "top": "dimdoors:block/quartz_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/quartz_door_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left", 3 | "textures": { 4 | "bottom": "dimdoors:block/quartz_door_bottom", 5 | "top": "dimdoors:block/quartz_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/quartz_door_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right", 3 | "textures": { 4 | "bottom": "dimdoors:block/quartz_door_bottom", 5 | "top": "dimdoors:block/quartz_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/reality_sponge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/reality_sponge" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/red_sand_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/red_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/red_sand_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/red_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/red_sand_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/red_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/red_sand_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/red_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/rust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/rust" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/sand_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "minecraft:block/sand", 5 | "side": "minecraft:block/sand", 6 | "top": "minecraft:block/sand" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/sand_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "minecraft:block/sand", 5 | "side": "minecraft:block/sand", 6 | "top": "minecraft:block/sand" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/sand_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/sand", 5 | "side": "minecraft:block/sand", 6 | "top": "minecraft:block/sand" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/sand_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/sand_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/sand_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/sand_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/stone_door_bottom_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_left", 3 | "textures": { 4 | "bottom": "dimdoors:block/stone_door_bottom", 5 | "top": "dimdoors:block/stone_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/stone_door_bottom_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_right", 3 | "textures": { 4 | "bottom": "dimdoors:block/stone_door_bottom", 5 | "top": "dimdoors:block/stone_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/stone_door_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left", 3 | "textures": { 4 | "bottom": "dimdoors:block/stone_door_bottom", 5 | "top": "dimdoors:block/stone_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/stone_door_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right", 3 | "textures": { 4 | "bottom": "dimdoors:block/stone_door_bottom", 5 | "top": "dimdoors:block/stone_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_down_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_down_base" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_down_frustum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_down_frustum" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_down_middle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_down_middle" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_down_tip.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_down_tip" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_down_tip_merge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_down_tip_merge" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_up_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_up_base" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_up_frustum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_up_frustum" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_up_middle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_up_middle" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_up_tip.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_up_tip" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unraveled_spike_up_tip_merge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "dimdoors:block/unraveled_spike_up_tip_merge" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/block/unravelled_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/unravelled_fabric" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/amalgam_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/amalgam_block" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/amalgam_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/amalgam_door" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/amalgam_lump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/amalgam_lump" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/amalgam_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/amalgam_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/amalgam_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/amalgam_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/amalgam_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/amalgam_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/amalgam_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/amalgam_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clay_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clay_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clay_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clay_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clay_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clay_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clay_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clay_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clay_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clay_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clay_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clay_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/clod" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clod_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clod_block" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/clod_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/clod_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/dark_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/dark_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/dark_sand_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/dark_sand_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/dark_sand_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/dark_sand_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/dark_sand_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/dark_sand_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/dark_sand_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/dark_sand_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/dark_sand_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/dark_sand_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/deepslate_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/deepslate_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/deepslate_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/deepslate_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/deepslate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/deepslate_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/driftwood_door" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_leaves" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_planks" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:block/driftwood_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/driftwood_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/driftwood_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/end_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/end_stone_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/end_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/end_stone_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/end_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/end_stone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/enduring_fibers.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/enduring_fibers" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/fabric_of_finality.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/fabric_of_finality" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/fuzzy_fireball.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/fuzzy_fireball" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/gold_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/gold_door" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/gravel_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gravel_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/gravel_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gravel_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/gravel_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gravel_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/gravel_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gravel_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/gravel_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gravel_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/gritty_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gritty_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/liminal_lint.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/liminal_lint" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/mud_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/mud_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/mud_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/mud_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/mud_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/mud_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/mud_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/mud_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/mud_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/mud_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/netherrack_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/netherrack_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/netherrack_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/netherrack_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/netherrack_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/netherrack_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/netherrack_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/netherrack_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/quartz_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/quartz_door" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/reality_sponge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/reality_sponge" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/red_sand_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/red_sand_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/red_sand_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/red_sand_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/red_sand_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/red_sand_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/rift_pearl.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/rift_pearl" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/rust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/rust" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/sand_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/sand_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/sand_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/sand_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/sand_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/sand_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/stone_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/stone_door" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/unraveled_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unraveled_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/unraveled_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unraveled_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/unraveled_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unraveled_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/unraveled_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unraveled_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/unraveled_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unraveled_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/dimdoors/models/item/unravelled_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unravelled_fabric" 3 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/blockstates/clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/clay" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/blockstates/end_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/end_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/blockstates/gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/gravel" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/blockstates/mud.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/mud" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/blockstates/netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/netherrack" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/blockstates/red_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/red_sand" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/blockstates/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/sand" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "minecraft:block/deepslate_top", 5 | "side": "minecraft:block/deepslate" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/deepslate_mirrored.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_mirrored", 3 | "textures": { 4 | "end": "minecraft:block/deepslate_top", 5 | "side": "minecraft:block/deepslate" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/end_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/end_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/gravel" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/mud.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/mud" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/netherrack" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/red_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/red_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/assets/minecraft/models/block/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/sand" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/decay_patterns/clay_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": { 3 | "type": "dimdoors:none" 4 | }, 5 | "result": { 6 | "type": "dimdoors:none" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_clay_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:clay_button", 5 | "dimdoors:mud_button" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_clay_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:clay_fence", 5 | "dimdoors:mud_fence" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_clay_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:clay_gate", 5 | "dimdoors:mud_gate" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_clay_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:brick_slab", 5 | "dimdoors:mud_slab", 6 | "dimdoors:amalgam_slab" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_clay_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:brick_stairs", 5 | "dimdoors:mud_stairs", 6 | "dimdoors:amalgam_stairs" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_amalgam.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:iron_block", 5 | "minecraft:copper_block", 6 | "minecraft:cut_copper", 7 | "minecraft:gold_block" 8 | ] 9 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:amalgam_block", 5 | "minecraft:mud", 6 | "minecraft:terracotta", 7 | "minecraft:bricks" 8 | ] 9 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_cobblestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:stone_slab", 5 | "minecraft:stonecutter" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_driftwood_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | { 5 | "id": "#minecraft:planks", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_grave.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:amalgam_block", 5 | "dimdoors:clod_ore", 6 | "minecraft:cobblestone" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_netherwart_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:brown_mushroom_block", 5 | "minecraft:red_mushroom_block" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_rail.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:activator_rail", 5 | "minecraft:detector_rail", 6 | "minecraft:powered_rail" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_to_unraveled_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:dark_sand", 5 | "minecraft:clay" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_unraveled_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:clay_button", 5 | "dimdoors:dark_sand_button" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_unraveled_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:clay_fence", 5 | "dimdoors:dark_sand_fence" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_unraveled_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:clay_slab", 5 | "dimdoors:dark_sand_slab" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/blocks/decay_unraveled_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:clay_stairs", 5 | "dimdoors:dark_sand_stairs" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/worldgen/biome/enclosed_mud_gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:swamp", 5 | "minecraft:mangrove_swamp" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/worldgen/biome/enclosed_red_sandstone_gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:badlands", 5 | "minecraft:eroded_badlands", 6 | "minecraft:wooded_badlands" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/tags/worldgen/biome/enclosed_sandstone_gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:desert" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/worldgen/noise/limbo/strand_a.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.5, 5 | 0.25 6 | ], 7 | "firstOctave": -7 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/worldgen/noise/limbo/strand_b.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.5, 5 | 0.25 6 | ], 7 | "firstOctave": -7 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/worldgen/noise/limbo/terrain.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 0.5, 6 | 0.375, 7 | 0.25 8 | ], 9 | "firstOctave": -7 10 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/worldgen/noise/limbo/x_shift.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.5, 5 | 0.5 6 | ], 7 | "firstOctave": -7 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/worldgen/noise/limbo/y_shift.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.75, 5 | 0.5, 6 | 0.25 7 | ], 8 | "firstOctave": -7 9 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/dimdoors/worldgen/noise/limbo/z_shift.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.5, 5 | 0.5 6 | ], 7 | "firstOctave": -7 8 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:driftwood_fence" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/generated/data/minecraft/tags/items/music_discs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:creepy_record", 5 | "dimdoors:white_void_record", 6 | "dimdoors:they_stare_back_record" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/java/org/dimdev/dimdoors/api/entity/LastPositionProvider.java: -------------------------------------------------------------------------------- 1 | package org.dimdev.dimdoors.api.entity; 2 | 3 | import net.minecraft.world.phys.Vec3; 4 | 5 | public interface LastPositionProvider { 6 | Vec3 getLastPos(); 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/java/org/dimdev/dimdoors/client/ShaderPackDetector.java: -------------------------------------------------------------------------------- 1 | package org.dimdev.dimdoors.client; 2 | 3 | public interface ShaderPackDetector { 4 | public boolean shaderPackOn(); 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/java/org/dimdev/dimdoors/compat/jei/TesselatingJeiCompatClient.java: -------------------------------------------------------------------------------- 1 | //package org.dimdev.dimdoors.compat.jei;public class TesselatingJeiCompatClient { 2 | //} 3 | -------------------------------------------------------------------------------- /common/src/main/java/org/dimdev/dimdoors/rift/targets/LocationProvider.java: -------------------------------------------------------------------------------- 1 | package org.dimdev.dimdoors.rift.targets; 2 | 3 | import org.dimdev.dimdoors.api.util.Location; 4 | 5 | public interface LocationProvider { 6 | Location getLocation(); 7 | 8 | } 9 | -------------------------------------------------------------------------------- /common/src/main/java/org/dimdev/dimdoors/world/feature/NetherPiecesRegistry.java: -------------------------------------------------------------------------------- 1 | package org.dimdev.dimdoors.world.feature; 2 | 3 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/black_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/black_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/black_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/black_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/blue_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/blue_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/blue_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/blue_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/brown_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/brown_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/brown_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/brown_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/cyan_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/cyan_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/cyan_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/cyan_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/decayed_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/decayed_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/detached_rift.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": {"model": "dimdoors:block/detached_rift"} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/gray_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/gray_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/gray_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/gray_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/green_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/green_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/green_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/green_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/light_blue_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/light_blue_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/light_blue_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/light_blue_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/light_gray_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/light_gray_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/light_gray_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/light_gray_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/lime_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/lime_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/lime_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/lime_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/magenta_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/magenta_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/magenta_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/magenta_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/marking_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "dimdoors:block/marking_plate" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/orange_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/orange_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/orange_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/orange_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/pink_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/pink_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/pink_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/pink_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/purple_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/purple_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/purple_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/purple_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/red_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/red_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/red_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/red_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/silver_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/silver_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/silver_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/silver_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/stone_player.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/stone_player" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/unfolded_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/unfolded_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/unravelled_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/unravelled_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/unwarped_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/unwarped_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/white_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/white_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/white_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/white_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/yellow_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/yellow_ancient_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/blockstates/yellow_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "dimdoors:block/yellow_fabric" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/icon.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/black_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/black_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/black_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/black_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/blue_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/blue_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/blue_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/blue_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/brown_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/brown_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/brown_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/brown_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/cyan_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/cyan_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/cyan_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/cyan_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/decayed_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/decayed_block" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/detached_rift.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/air" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/gray_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/gray_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/gray_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/gray_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/green_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/green_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/green_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/green_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/light_blue_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/light_blue_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/light_blue_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/light_blue_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/light_gray_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/light_gray_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/light_gray_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/light_gray_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/lime_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/lime_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/lime_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/lime_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/magenta_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/magenta_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/magenta_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/magenta_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/orange_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/orange_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/orange_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/orange_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/pink_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/pink_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/pink_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/pink_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/purple_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/purple_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/purple_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/purple_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/red_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/red_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/red_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/red_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/silver_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/silver_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/silver_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/silver_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/solid_static.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "dimdoors:block/solid_static" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/unravelled_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/unravelled_block" } 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/unwarped_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/unwarped_block" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/white_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/white_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/white_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/white_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/yellow_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { "all": "dimdoors:block/yellow_ancient_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/block/yellow_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/yellow_fabric" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/black_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/black_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/black_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/black_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/blue_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/blue_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/blue_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/blue_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/brown_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/brown_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/brown_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/brown_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/creepy_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/record_creepy" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/cyan_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/cyan_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/cyan_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/cyan_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/decayed_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/decayed_block" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/dimensional_eraser.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/dimensional_eraser" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/dimensional_portal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "dimdoors:item/dimensional_portal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/dungeon_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/stone_door" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/eternal_fluid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/fullbright", 3 | "textures": { "all": "dimdoors:block/eternal_fluid_flow" } 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/eternal_fluid_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/eternal_fluid_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/frayed_filament.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/frayed_filament" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/gray_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gray_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/gray_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/gray_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/green_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/green_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/green_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/green_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/infrangible_fiber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/infrangible_fiber" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/leak_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/leak_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/light_blue_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/light_blue_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/light_blue_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/light_blue_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/light_gray_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/light_gray_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/light_gray_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/light_gray_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/lime_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/lime_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/lime_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/lime_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/magenta_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/magenta_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/magenta_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/magenta_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/marking_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/marking_plate" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/mask_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/mask_shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/mask_wand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/mask_wand" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/monolith_spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/monolith_spawner" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/orange_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/orange_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/orange_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/orange_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/pink_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/pink_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/pink_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/pink_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/purple_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/purple_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/purple_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/purple_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/red_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/red_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/red_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/red_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/rift_blade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "dimdoors:item/rift_blade" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/rift_configuration_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "dimdoors:item/rift_configuration_tool" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/rift_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/rift_key" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/rift_remover.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "dimdoors:item/rift_remover" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/rift_signature.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "dimdoors:item/rift_signature" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/rift_stabilizer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "dimdoors:item/rift_stabilizer" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/silver_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/silver_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/silver_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/silver_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/solid_static.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/solid_static" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/stabilized_rift_signature.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "dimdoors:item/stabilized_rift_signature" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/stable_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/stable_fabric" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/tesselating_loom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/tesselating_loom" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/they_stare_back_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/they_stare_back_record" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/unfolded_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unfolded_block" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/unraveled_spike.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:block/unraveled_spike_up_tip" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/unravelled_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unravelled_block" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/unstable_dimensional_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/unstable_dimensional_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/unwarped_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/unwarped_block" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/white_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/white_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/white_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/white_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/white_void_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/white_void_record" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/wood_dimensional_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/oak_trapdoor" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/world_thread.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "dimdoors:item/world_thread" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/yellow_ancient_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/yellow_ancient_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/models/item/yellow_fabric.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "dimdoors:block/yellow_fabric" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/particles/limbo_ash.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "minecraft:generic_0" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/particles/monolith.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/bloop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/bloop.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/crack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/crack.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/creepy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/creepy.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/creepy_faded.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/creepy_faded.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/door_lock_removed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/door_lock_removed.mp3 -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/door_lock_removed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/door_lock_removed.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/door_locked.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/door_locked.mp3 -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/door_locked.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/door_locked.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/key_lock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/key_lock.mp3 -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/key_lock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/key_lock.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/key_unlock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/key_unlock.mp3 -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/key_unlock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/key_unlock.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/monk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/monk.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/rift.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/rift.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/rift_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/rift_close.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/rift_door.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/rift_door.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/rift_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/rift_end.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/rift_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/rift_start.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/tearing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/tearing.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/tesselating_weave.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/tesselating_weave.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/they_stare_back.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/they_stare_back.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/sounds/white_void.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/sounds/white_void.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam__deepslate_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam__deepslate_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_door_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_lump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_lump.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_smooth_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_smooth_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/amalgam_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/amalgam_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/black_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/black_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/black_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/black_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/black_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/blue_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/blue_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/blue_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/blue_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/blue_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/brown_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/brown_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/brown_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/brown_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/brown_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/clod_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/clod_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/clod_deepslate_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/clod_deepslate_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/clod_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/clod_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/cyan_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/cyan_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/cyan_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/cyan_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/cyan_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/dark_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/dark_sand.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/decayed_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/decayed_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/dimensional_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/dimensional_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_door_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_leaves.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_log.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_log_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_planks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_sapling.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/driftwood_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/driftwood_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/eternal_fluid_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/eternal_fluid_flow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/eternal_fluid_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/eternal_fluid_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/eternal_fluid_still.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/eternal_fluid_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/gold_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/gold_door_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/gold_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/gold_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/gray_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/gray_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/gray_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/gray_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/gray_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/green_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/green_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/green_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/green_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/green_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/gritty_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/gritty_stone.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/leak_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/leak_flow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/leak_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/leak_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/leak_still.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/leak_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/light_blue_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/light_blue_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/light_blue_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/light_gray_ancient_fabric.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/light_gray_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/light_gray_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/lime_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/lime_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/lime_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/lime_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/lime_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/low.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/magenta_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/magenta_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/magenta_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/magenta_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/magenta_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/marking_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/marking_plate.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/oak_dimensional_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/oak_dimensional_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/orange_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/orange_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/orange_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/orange_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/orange_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/pink_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/pink_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/pink_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/pink_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/pink_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/purple_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/purple_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/purple_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/purple_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/purple_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/quartz_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/quartz_door_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/quartz_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/quartz_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/reality_sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/reality_sponge.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/reality_sponge_wet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/reality_sponge_wet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/red_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/red_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/red_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/red_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/red_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/rust.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/silver_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/silver_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/silver_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/silver_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/silver_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/solid_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/solid_static.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/solid_static.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1, 4 | "interpolate": false 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/stone_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/stone_door_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/stone_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/stone_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/stone_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/stone_player.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/tesselating_loom_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/tesselating_loom_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/tesselating_loom_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/tesselating_loom_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unfolded_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unfolded_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_down.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_east.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_north.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_south.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_up.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unfolded_block_west.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unravelled_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unravelled_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unravelled_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unravelled_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unravelled_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 5 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/unwarped_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/unwarped_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/white_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/white_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/white_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/white_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/white_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/yellow_ancient_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/yellow_ancient_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/yellow_ancient_fabric.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/block/yellow_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/block/yellow_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/amalgam_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/amalgam_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/amalgam_lump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/amalgam_lump.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/babeh_monolith_smol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/babeh_monolith_smol.gif -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/clod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/clod.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/dimensional_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/dimensional_eraser.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/dimensional_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/dimensional_portal.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/dimensional_portal.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { "frametime": 2 } 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/driftwood_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/driftwood_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/enduring_fibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/enduring_fibers.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/eternal_fluid_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/eternal_fluid_bucket.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/fabric_of_finality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/fabric_of_finality.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/frayed_filament.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/frayed_filament.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/fuzzy_fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/fuzzy_fireball.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/gold_dimensional_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/gold_dimensional_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/gold_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/gold_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/gritty_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/gritty_stone.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/img.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/img_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/img_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/infrangible_fiber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/infrangible_fiber.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/iron_dimensional_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/iron_dimensional_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/key.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/leak_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/leak_bucket.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/liminal_lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/liminal_lint.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/mask_shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/mask_shard.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/mask_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/mask_wand.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/monolith_spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/monolith_spawner.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/oak_dimensional_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/oak_dimensional_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/quartz_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/quartz_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/record_creepy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/record_creepy.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/record_creepy.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rift_blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rift_blade.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rift_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rift_key.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rift_pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rift_pearl.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rift_remover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rift_remover.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rift_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rift_signature.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rift_stabilizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rift_stabilizer.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rust_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rust_item.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/rust_pile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/rust_pile.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/stable_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/stable_fabric.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/stone_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/stone_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/they_stare_back_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/they_stare_back_record.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/unraveled_spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/unraveled_spike.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/white_void_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/white_void_record.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/white_void_record.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/world_thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/world_thread.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/world_thread_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/world_thread_boots.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/world_thread_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/world_thread_helmet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/item/world_thread_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/item/world_thread_leggings.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/mob/mask/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/mob/mask/mask.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/other/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/other/grey.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/other/limbo_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/other/limbo_moon.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/other/limbo_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/other/limbo_sun.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/other/rift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/other/rift.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/other/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/other/static.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/other/tesseract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/other/tesseract.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/dimdoors/textures/other/warp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/dimdoors/textures/other/warp.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/pack.mcmeta -------------------------------------------------------------------------------- /common/src/main/resources/assets/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/assets/pack.png -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/gold_ingots.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:gold_ingot" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/iron_ingots.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:iron_ingot" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/enclosed.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/enclosed.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/enclosed_endstone.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/enclosed_endstone.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/enclosed_mud.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/enclosed_mud.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/enclosed_quartz.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/enclosed_quartz.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/enclosed_sandstone.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/enclosed_sandstone.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/end_gateway.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/end_gateway.schem -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/ice_pillars.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/ice_pillars.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/limbo.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/limbo.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/sandstone_pillars.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/sandstone_pillars.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/dimdoors/structures/gateways/two_pillars.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/data/dimdoors/structures/gateways/two_pillars.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/fabric/tags/items/swords.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:rift_blade" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "dimdoors:solid_static" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/classic/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 12, 4 | "description": "The pockets from classic Dimensional Doors" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/classic/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/resourcepacks/classic/pack.png -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/groups/example.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "example/purpur_hallway", 4 | "type": "dimdoors:id" 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/groups/myth.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "dimdoors:tag", 3 | "required": ["myth"] 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/groups/nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "dimdoors:tag", 3 | "required": ["nether"] 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/groups/private.json: -------------------------------------------------------------------------------- 1 | { 2 | "path": "dimdoors:private/", 3 | "type": "dimdoors:path" 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/groups/public.json: -------------------------------------------------------------------------------- 1 | { 2 | "path": "dimdoors:public/", 3 | "type": "dimdoors:path" 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/json/rift_data/escape.json: -------------------------------------------------------------------------------- 1 | { 2 | "destination": { 3 | "type": "dimdoors:escape", 4 | "canEscapeLimbo": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/json/rift_data/limbo.json: -------------------------------------------------------------------------------- 1 | { 2 | "destination": { 3 | "type": "dimdoors:limbo" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/json/rift_data/public_entrance.json: -------------------------------------------------------------------------------- 1 | { 2 | "destination": { 3 | "type": "dimdoors:public_pocket" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/lab_01.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/lab_01", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/lab_entrance.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/lab_entrance", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/lab_experimentation.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/lab_experimentation", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/lab_hallway.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/lab_hallway", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/labfinal.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/labfinal", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/left_lab_hallway.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/left_lab_hallway", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/reception.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/reception", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/right_lab_hallway.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/right_lab_hallway", 3 | "type": "dimdoors:id" 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/lab/telecommunications.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lab/telecommunications", 3 | "type": "dimdoors:id" 4 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/private/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "private/default", 3 | "type": "dimdoors:id" 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/data/dimdoors/pockets/virtual/public/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "public/default", 3 | "type": "dimdoors:id" 4 | } 5 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 12, 4 | "description": "The default pockets for Dimensional Doors" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/default/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/common/src/main/resources/resourcepacks/default/pack.png -------------------------------------------------------------------------------- /common/src/main/resources/wthit_plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "dimdoors:plugin": { 3 | "initializer": "org.dimdev.dimdoors.client.wthit.WthitPlugin", 4 | 5 | "side": "*", 6 | 7 | "required": ["dimdoors", "anotherone"] 8 | } 9 | } -------------------------------------------------------------------------------- /forge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=forge -------------------------------------------------------------------------------- /forge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Dimensional Doors", 4 | "pack_format": 13 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimensionalDevelopment/DimDoors/751e0fb75ef0b62852c0a0770265dacf398f9d6b/gradle/wrapper/gradle-wrapper.jar --------------------------------------------------------------------------------