├── .gitignore ├── 1-20-3-overlay └── data │ └── structory │ └── loot_tables │ ├── mood │ ├── grassy.json │ ├── mangrove.json │ └── taiga.json │ ├── outcast │ └── ruin │ │ └── ruin.json │ └── ruin │ └── ruin.json ├── 1-20-5-overlay └── data │ └── structory │ └── loot_tables │ ├── outcast │ ├── bandit │ │ ├── desert.json │ │ └── desert_copper.json │ ├── boat │ │ └── loot.json │ ├── farm_ruin.json │ └── settlement.json │ └── ruin │ ├── swamp │ └── loot.json │ └── taiga │ ├── illager_high.json │ ├── illager_low.json │ └── loot.json ├── data ├── c │ └── worldgen │ │ └── structure_icons.json └── structory │ ├── functions │ └── structory.mcfunction │ ├── loot_tables │ ├── extra │ │ └── copper.json │ ├── harvest │ │ ├── graveyard.json │ │ ├── graveyard2.json │ │ ├── manor2 │ │ │ ├── loot.json │ │ │ └── treasure.json │ │ └── old_manor │ │ │ ├── common.json │ │ │ └── treasure.json │ ├── library │ │ ├── high.json │ │ ├── junk.json │ │ └── low.json │ ├── mood │ │ ├── badlands.json │ │ ├── cave.json │ │ ├── desert.json │ │ ├── farmer.json │ │ ├── fisherman.json │ │ ├── grassy.json │ │ ├── jungle.json │ │ ├── mangrove.json │ │ ├── miner.json │ │ ├── mushroom.json │ │ ├── ocean.json │ │ ├── snowy.json │ │ └── taiga.json │ ├── outcast │ │ ├── bandit │ │ │ ├── desert.json │ │ │ └── desert_copper.json │ │ ├── boat │ │ │ └── loot.json │ │ ├── farm_ruin.json │ │ ├── generic │ │ │ ├── bandit.json │ │ │ └── miner.json │ │ ├── low.json │ │ ├── mine │ │ │ └── loot.json │ │ ├── ruin │ │ │ └── ruin.json │ │ └── settlement.json │ └── ruin │ │ ├── ruin.json │ │ ├── swamp │ │ └── loot.json │ │ └── taiga │ │ ├── illager_high.json │ │ ├── illager_low.json │ │ ├── illager_treasure.json │ │ └── loot.json │ ├── structures │ ├── decoration │ │ └── jungle_well.nbt │ ├── entities │ │ ├── evoker.nbt │ │ ├── pillager.nbt │ │ ├── villager │ │ │ ├── bandit.nbt │ │ │ ├── outlander.nbt │ │ │ └── vagabond.nbt │ │ ├── vindicator.nbt │ │ ├── waterlogged_creeper.nbt │ │ └── witch.nbt │ ├── harvest │ │ ├── brick_chimney_1.nbt │ │ ├── brick_chimney_2.nbt │ │ ├── brick_chimney_3.nbt │ │ ├── brown_mushroom_house.nbt │ │ ├── camp │ │ │ ├── barrels.nbt │ │ │ ├── farm_1.nbt │ │ │ ├── scarecrow.nbt │ │ │ ├── tent.nbt │ │ │ ├── well.nbt │ │ │ └── well_bottom.nbt │ │ ├── chapel │ │ │ ├── bell.nbt │ │ │ ├── church.nbt │ │ │ ├── connector_long.nbt │ │ │ ├── connector_short.nbt │ │ │ ├── grave1.nbt │ │ │ ├── graveyard1.nbt │ │ │ └── graveyard2.nbt │ │ ├── cobble_chimney_1.nbt │ │ ├── cobble_chimney_2.nbt │ │ ├── cobble_chimney_3.nbt │ │ ├── cobble_tower_ruin.nbt │ │ ├── cobble_wash-house.nbt │ │ ├── desert_tomb.schem │ │ ├── dungeon1.nbt │ │ ├── farm_1.nbt │ │ ├── giant_pumpkin.nbt │ │ ├── large_ruined_desert_house.nbt │ │ ├── manor │ │ │ ├── connector2.nbt │ │ │ ├── large1.nbt │ │ │ └── large2.nbt │ │ ├── manor2 │ │ │ ├── allay_cage.nbt │ │ │ ├── amethyst_shrine.nbt │ │ │ ├── graves.nbt │ │ │ ├── graveyard_large.nbt │ │ │ ├── pumpkins.nbt │ │ │ ├── spider_spawner.nbt │ │ │ ├── water.nbt │ │ │ ├── well.nbt │ │ │ ├── which_witch_is_which.nbt │ │ │ └── zombie.nbt │ │ ├── old_manor │ │ │ ├── cellar1.nbt │ │ │ ├── cellar2.nbt │ │ │ ├── cellar3.nbt │ │ │ ├── cellar4.nbt │ │ │ ├── cellar5.nbt │ │ │ ├── decor1.nbt │ │ │ ├── decor2.nbt │ │ │ ├── decor3.nbt │ │ │ ├── dirt_path.nbt │ │ │ ├── not_a_grave.nbt │ │ │ ├── old_manor.nbt │ │ │ ├── roof1.nbt │ │ │ ├── roof2.nbt │ │ │ ├── roof3.nbt │ │ │ └── spider.nbt │ │ ├── old_manor_roof1.nbt │ │ ├── old_manor_roof2.nbt │ │ ├── old_manor_roof3.nbt │ │ ├── old_manor_side_stuff.schem │ │ ├── old_mansion.json │ │ ├── old_mansion.nbt │ │ ├── red_mushroom_house.nbt │ │ ├── ruined_big_brick_house.nbt │ │ ├── ruined_brick_house.nbt │ │ ├── ruined_cottage.nbt │ │ ├── ruined_dark_oak_house.nbt │ │ ├── ruined_large_snowy_spruce_house.nbt │ │ ├── ruined_mossy_spruce_house.nbt │ │ ├── ruined_oak_house.nbt │ │ ├── ruined_snowy_spruce_house.nbt │ │ ├── ruins │ │ │ ├── church.nbt │ │ │ ├── graveyard2.nbt │ │ │ ├── graveyard2www.nbt │ │ │ └── graveyard3.nbt │ │ ├── small_ruined_desert_house.nbt │ │ ├── small_ruined_house_basement1.schem │ │ ├── small_ruined_house_basement2.schem │ │ ├── small_ruined_house_basement3.schem │ │ ├── small_ruined_house_basement4.schem │ │ ├── small_ruined_house_basement5.schem │ │ ├── small_ruined_house_basement6.schem │ │ ├── small_ruined_house_basement7.schem │ │ ├── small_ruined_house_basement8.schem │ │ ├── small_ruined_oak_house.nbt │ │ ├── stonebricks_tower_ruin.nbt │ │ └── wood_barn_ruin.nbt │ ├── outcast_villager │ │ ├── barn1.nbt │ │ ├── boat │ │ │ ├── 1 │ │ │ │ ├── bottom.nbt │ │ │ │ └── top.nbt │ │ │ ├── 2 │ │ │ │ ├── bottom.nbt │ │ │ │ └── top.nbt │ │ │ └── 3 │ │ │ │ ├── bottom.nbt │ │ │ │ └── top.nbt │ │ ├── camp1.nbt │ │ ├── desert │ │ │ ├── copper_house1.nbt │ │ │ ├── copper_house2.nbt │ │ │ └── rock_house1.nbt │ │ ├── farm_ruin │ │ │ ├── connector.nbt │ │ │ ├── main.nbt │ │ │ ├── outer1.nbt │ │ │ ├── outer2.nbt │ │ │ ├── outer3.nbt │ │ │ ├── outer4.nbt │ │ │ └── outer5.nbt │ │ ├── firetower.nbt │ │ ├── graveyard │ │ │ └── main1.nbt │ │ ├── medium1.nbt │ │ ├── medium2.nbt │ │ ├── mine │ │ │ ├── secondary.nbt │ │ │ └── start.nbt │ │ ├── mossy_ruin │ │ │ ├── connector.nbt │ │ │ ├── main.nbt │ │ │ ├── outer1.nbt │ │ │ ├── outer2.nbt │ │ │ └── outer3.nbt │ │ ├── ruin1.nbt │ │ ├── settlement_large.nbt │ │ ├── sundial.nbt │ │ └── tower │ │ │ ├── badlands_small1.nbt │ │ │ ├── desert_small1.nbt │ │ │ ├── grassy_small1.nbt │ │ │ └── grassy_small2.nbt │ ├── ruin │ │ ├── northern_ruins │ │ │ ├── castle1.nbt │ │ │ ├── castle2.nbt │ │ │ ├── circle_small.nbt │ │ │ ├── circle_tall.nbt │ │ │ ├── connector1.nbt │ │ │ ├── connector2.nbt │ │ │ ├── connector3.nbt │ │ │ ├── connector4.nbt │ │ │ ├── connector5.nbt │ │ │ ├── doorway.nbt │ │ │ ├── house1.nbt │ │ │ ├── house2.nbt │ │ │ ├── house3.nbt │ │ │ ├── mound1.nbt │ │ │ ├── mound_castle_small.nbt │ │ │ ├── mound_corner.nbt │ │ │ ├── mound_tabletwall.nbt │ │ │ └── mound_watchtower.nbt │ │ ├── swamp │ │ │ ├── connector │ │ │ │ ├── bend1.nbt │ │ │ │ ├── bend2.nbt │ │ │ │ ├── bend3.nbt │ │ │ │ ├── long1.nbt │ │ │ │ ├── long2.nbt │ │ │ │ ├── short1.nbt │ │ │ │ ├── short2.nbt │ │ │ │ └── short3.nbt │ │ │ ├── fountain1.nbt │ │ │ ├── frog1.nbt │ │ │ ├── frog2.nbt │ │ │ ├── frog3.nbt │ │ │ ├── frog_statue1.nbt │ │ │ ├── frog_statue2.nbt │ │ │ ├── frog_statue_small.nbt │ │ │ ├── obelisk1.nbt │ │ │ ├── pillar1.nbt │ │ │ ├── pond1.nbt │ │ │ ├── pond2.nbt │ │ │ ├── pool1.nbt │ │ │ ├── pool2.nbt │ │ │ ├── pool3.nbt │ │ │ ├── pool_small1.nbt │ │ │ ├── pyramid1.nbt │ │ │ ├── ring1.nbt │ │ │ ├── ring2.nbt │ │ │ ├── ruin1.nbt │ │ │ ├── ruin2.nbt │ │ │ ├── ruin3.nbt │ │ │ ├── ruin4.nbt │ │ │ ├── ruin5.nbt │ │ │ ├── staircase1.nbt │ │ │ ├── star1.nbt │ │ │ ├── statue1.nbt │ │ │ ├── t1.nbt │ │ │ ├── table1.nbt │ │ │ └── table2.nbt │ │ ├── taiga_surface │ │ │ ├── arch1.nbt │ │ │ ├── bridge1.nbt │ │ │ ├── ruin1.nbt │ │ │ ├── ruin2.nbt │ │ │ ├── ruin3.nbt │ │ │ ├── tower1.nbt │ │ │ ├── tower2.nbt │ │ │ └── tower3.nbt │ │ └── taiga_underground │ │ │ ├── initial_piece.nbt │ │ │ ├── main_piece.nbt │ │ │ ├── quarters1.nbt │ │ │ ├── quarters2.nbt │ │ │ ├── quarters3.nbt │ │ │ ├── quarters_entrance.nbt │ │ │ ├── quarters_hall1.nbt │ │ │ ├── quarters_hall2.nbt │ │ │ ├── quarters_hall2_stash.nbt │ │ │ ├── quarters_hall3.nbt │ │ │ ├── quarters_hall3_enchanting.nbt │ │ │ ├── quarters_hall_bedroom11.nbt │ │ │ ├── quarters_hall_bedroom2.nbt │ │ │ ├── quarters_hall_bedroom3.nbt │ │ │ ├── quarters_hall_books.nbt │ │ │ ├── quarters_hall_closet.nbt │ │ │ ├── quarters_hall_library.nbt │ │ │ ├── quarters_hall_smeltery.nbt │ │ │ ├── quarters_hall_storage.nbt │ │ │ ├── quarters_ladder.nbt │ │ │ ├── treasure1.nbt │ │ │ ├── treasure2.nbt │ │ │ └── treasure3.nbt │ ├── temple │ │ └── temple_ruin.nbt │ └── unsorted │ │ ├── brick_chimney_1.nbt │ │ ├── brick_chimney_2.nbt │ │ ├── brick_chimney_3.nbt │ │ ├── cobble_chimney_1.nbt │ │ ├── cobble_chimney_2.nbt │ │ ├── cobble_chimney_3.nbt │ │ ├── cobble_tower_ruin.nbt │ │ ├── cobble_wash-house.nbt │ │ ├── giant_pumpkin.nbt │ │ ├── giant_watermelon.nbt │ │ ├── nostalgic_ruin.nbt │ │ ├── ruined_dark_oak_house.nbt │ │ ├── stone_brick_pillars_ruins_1.nbt │ │ ├── stone_brick_pillars_ruins_2.nbt │ │ ├── stone_brick_pillars_ruins_3.nbt │ │ ├── stone_brick_pillars_ruins_4.nbt │ │ ├── stone_brick_sun_dial.nbt │ │ ├── stonebricks_tower_ruin.nbt │ │ ├── vc_camp_campfire.nbt │ │ ├── vc_camp_cw.nbt │ │ ├── vc_camp_haybale.nbt │ │ ├── vc_camp_storage.nbt │ │ ├── vc_camp_tracks.nbt │ │ ├── vc_camp_tracks_corner.nbt │ │ ├── vc_camp_tracks_small.nbt │ │ ├── vc_cart.nbt │ │ ├── vc_trackend.nbt │ │ ├── vc_trackend_bl.nbt │ │ ├── vc_trackend_br.nbt │ │ ├── villager_outpost.nbt │ │ └── wood_barn_ruin.nbt │ ├── tags │ └── worldgen │ │ └── biome │ │ └── has_structure │ │ ├── boat.json │ │ ├── chapel.json │ │ ├── firetower.json │ │ ├── jungle_well.json │ │ ├── northern_ruin.json │ │ ├── old_manor.json │ │ ├── outcast_villager_desert.json │ │ ├── outcast_villager_grassy.json │ │ └── ruin_taiga.json │ └── worldgen │ ├── processor_list │ ├── decoration │ │ └── jungle_well_weathering.json │ ├── harvest │ │ └── old_manor │ │ │ ├── old_manor.json │ │ │ └── path.json │ └── ruin │ │ ├── northern.json │ │ ├── swamp_moss.json │ │ └── taiga_underground.json │ ├── structure │ ├── abandoned_camp.json │ ├── abandoned_chapel.json │ ├── boat.json │ ├── dense_forest_ruin.json │ ├── firetower.json │ ├── graveyard.json │ ├── jungle_ruin.json │ ├── northern_ruin.json │ ├── old_manor.json │ ├── old_manor.json_old │ ├── outcast_villager_desert.json │ ├── outcast_villager_grassy.json │ ├── ruin_grassy.json │ ├── swamp_ruin.json │ ├── taiga_ruin_surface.json │ └── taiga_ruin_underground.json │ ├── structure_set │ ├── mid_rare_ruin.json │ ├── old_manor.json │ ├── outcast_villager.json │ ├── ruin.json │ └── ruin_quiet.json │ └── template_pool │ ├── chapel │ └── secondary.json │ ├── decoration │ └── jungle_well.json │ ├── entities │ ├── evoker.json │ ├── pillager.json │ ├── random_illager.json │ ├── villager │ │ ├── outcast_1.json │ │ ├── outcast_desert.json │ │ └── outcast_settlement.json │ ├── vindicator.json │ ├── waterlogged_creeper.json │ └── witch.json │ ├── harvest │ ├── camp.json │ ├── chapel │ │ ├── chapel.json │ │ ├── graveyard.json │ │ ├── secondary.json │ │ └── side.json │ ├── manor │ │ ├── main.json │ │ └── ruin.json │ ├── old_manor │ │ ├── cellars.json │ │ ├── decor.json │ │ ├── old_manor.json │ │ ├── path_scrapped.json │ │ ├── roof.json │ │ └── spider.json │ └── well_bottoms │ ├── manor │ ├── secondary.json │ └── side.json │ ├── outcast_villager │ ├── boat.json │ ├── boat │ │ ├── 1 │ │ │ └── bottom.json │ │ ├── 2 │ │ │ └── bottom.json │ │ ├── 3 │ │ │ └── bottom.json │ │ └── boats.json │ ├── desert.json │ ├── farm_ruin │ │ ├── connector.json │ │ └── outer.json │ ├── firetower.json │ ├── grassy.json │ ├── mine │ │ └── secondary.json │ └── mossy_ruin │ │ ├── connector.json │ │ └── outer.json │ └── ruin │ ├── grassy.json │ ├── northern │ ├── connector.json │ ├── piece.json │ └── piece_start.json │ ├── swamp.json │ ├── swamp │ ├── connector.json │ ├── frog.json │ ├── mangrove.json │ └── piece.json │ ├── taiga_surface.json │ ├── taiga_underground.json │ └── taiga_underground │ ├── enchanting.json │ ├── entrance.json │ ├── first_piece.json │ ├── hallway.json │ ├── ladder.json │ ├── quarters.json │ ├── room.json │ ├── stash.json │ └── treasure.json ├── license.txt ├── pack.mcmeta └── pack.png /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX 2 | patrons.txt 3 | README.md 4 | -------------------------------------------------------------------------------- /1-20-3-overlay/data/structory/loot_tables/mood/grassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-3-overlay/data/structory/loot_tables/mood/grassy.json -------------------------------------------------------------------------------- /1-20-3-overlay/data/structory/loot_tables/mood/mangrove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-3-overlay/data/structory/loot_tables/mood/mangrove.json -------------------------------------------------------------------------------- /1-20-3-overlay/data/structory/loot_tables/mood/taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-3-overlay/data/structory/loot_tables/mood/taiga.json -------------------------------------------------------------------------------- /1-20-3-overlay/data/structory/loot_tables/outcast/ruin/ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-3-overlay/data/structory/loot_tables/outcast/ruin/ruin.json -------------------------------------------------------------------------------- /1-20-3-overlay/data/structory/loot_tables/ruin/ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-3-overlay/data/structory/loot_tables/ruin/ruin.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/outcast/bandit/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/outcast/bandit/desert.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/outcast/bandit/desert_copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/outcast/bandit/desert_copper.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/outcast/boat/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/outcast/boat/loot.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/outcast/farm_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/outcast/farm_ruin.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/outcast/settlement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/outcast/settlement.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/ruin/swamp/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/ruin/swamp/loot.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/ruin/taiga/illager_high.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/ruin/taiga/illager_high.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/ruin/taiga/illager_low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/ruin/taiga/illager_low.json -------------------------------------------------------------------------------- /1-20-5-overlay/data/structory/loot_tables/ruin/taiga/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/1-20-5-overlay/data/structory/loot_tables/ruin/taiga/loot.json -------------------------------------------------------------------------------- /data/c/worldgen/structure_icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/c/worldgen/structure_icons.json -------------------------------------------------------------------------------- /data/structory/functions/structory.mcfunction: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/structory/loot_tables/extra/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/extra/copper.json -------------------------------------------------------------------------------- /data/structory/loot_tables/harvest/graveyard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/harvest/graveyard.json -------------------------------------------------------------------------------- /data/structory/loot_tables/harvest/graveyard2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/harvest/graveyard2.json -------------------------------------------------------------------------------- /data/structory/loot_tables/harvest/manor2/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/harvest/manor2/loot.json -------------------------------------------------------------------------------- /data/structory/loot_tables/harvest/manor2/treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/harvest/manor2/treasure.json -------------------------------------------------------------------------------- /data/structory/loot_tables/harvest/old_manor/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/harvest/old_manor/common.json -------------------------------------------------------------------------------- /data/structory/loot_tables/harvest/old_manor/treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/harvest/old_manor/treasure.json -------------------------------------------------------------------------------- /data/structory/loot_tables/library/high.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/library/high.json -------------------------------------------------------------------------------- /data/structory/loot_tables/library/junk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/library/junk.json -------------------------------------------------------------------------------- /data/structory/loot_tables/library/low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/library/low.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/badlands.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/cave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/cave.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/desert.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/farmer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/farmer.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/fisherman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/fisherman.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/grassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/grassy.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/jungle.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/mangrove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/mangrove.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/miner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/miner.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/mushroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/mushroom.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/ocean.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/snowy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/snowy.json -------------------------------------------------------------------------------- /data/structory/loot_tables/mood/taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/mood/taiga.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/bandit/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/bandit/desert.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/bandit/desert_copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/bandit/desert_copper.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/boat/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/boat/loot.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/farm_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/farm_ruin.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/generic/bandit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/generic/bandit.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/generic/miner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/generic/miner.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/low.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/mine/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/mine/loot.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/ruin/ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/ruin/ruin.json -------------------------------------------------------------------------------- /data/structory/loot_tables/outcast/settlement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/outcast/settlement.json -------------------------------------------------------------------------------- /data/structory/loot_tables/ruin/ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/ruin/ruin.json -------------------------------------------------------------------------------- /data/structory/loot_tables/ruin/swamp/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/ruin/swamp/loot.json -------------------------------------------------------------------------------- /data/structory/loot_tables/ruin/taiga/illager_high.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/ruin/taiga/illager_high.json -------------------------------------------------------------------------------- /data/structory/loot_tables/ruin/taiga/illager_low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/ruin/taiga/illager_low.json -------------------------------------------------------------------------------- /data/structory/loot_tables/ruin/taiga/illager_treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/ruin/taiga/illager_treasure.json -------------------------------------------------------------------------------- /data/structory/loot_tables/ruin/taiga/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/loot_tables/ruin/taiga/loot.json -------------------------------------------------------------------------------- /data/structory/structures/decoration/jungle_well.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/decoration/jungle_well.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/evoker.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/evoker.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/pillager.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/pillager.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/villager/bandit.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/villager/bandit.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/villager/outlander.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/villager/outlander.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/villager/vagabond.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/villager/vagabond.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/vindicator.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/vindicator.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/waterlogged_creeper.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/waterlogged_creeper.nbt -------------------------------------------------------------------------------- /data/structory/structures/entities/witch.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/entities/witch.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/brick_chimney_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/brick_chimney_1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/brick_chimney_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/brick_chimney_2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/brick_chimney_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/brick_chimney_3.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/brown_mushroom_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/brown_mushroom_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/camp/barrels.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/camp/barrels.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/camp/farm_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/camp/farm_1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/camp/scarecrow.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/camp/scarecrow.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/camp/tent.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/camp/tent.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/camp/well.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/camp/well.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/camp/well_bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/camp/well_bottom.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/chapel/bell.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/chapel/bell.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/chapel/church.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/chapel/church.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/chapel/connector_long.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/chapel/connector_long.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/chapel/connector_short.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/chapel/connector_short.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/chapel/grave1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/chapel/grave1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/chapel/graveyard1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/chapel/graveyard1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/chapel/graveyard2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/chapel/graveyard2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/cobble_chimney_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/cobble_chimney_1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/cobble_chimney_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/cobble_chimney_2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/cobble_chimney_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/cobble_chimney_3.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/cobble_tower_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/cobble_tower_ruin.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/cobble_wash-house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/cobble_wash-house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/desert_tomb.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/desert_tomb.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/dungeon1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/dungeon1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/farm_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/farm_1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/giant_pumpkin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/giant_pumpkin.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/large_ruined_desert_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/large_ruined_desert_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor/connector2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor/connector2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor/large1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor/large1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor/large2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor/large2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/allay_cage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/allay_cage.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/amethyst_shrine.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/amethyst_shrine.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/graves.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/graves.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/graveyard_large.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/graveyard_large.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/pumpkins.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/pumpkins.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/spider_spawner.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/spider_spawner.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/water.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/water.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/well.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/well.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/which_witch_is_which.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/which_witch_is_which.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/manor2/zombie.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/manor2/zombie.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/cellar1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/cellar1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/cellar2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/cellar2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/cellar3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/cellar3.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/cellar4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/cellar4.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/cellar5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/cellar5.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/decor1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/decor1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/decor2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/decor2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/decor3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/decor3.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/dirt_path.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/dirt_path.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/not_a_grave.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/not_a_grave.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/old_manor.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/old_manor.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/roof1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/roof1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/roof2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/roof2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/roof3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/roof3.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor/spider.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor/spider.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor_roof1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor_roof1.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor_roof2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor_roof2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor_roof3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor_roof3.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_manor_side_stuff.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_manor_side_stuff.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_mansion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_mansion.json -------------------------------------------------------------------------------- /data/structory/structures/harvest/old_mansion.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/old_mansion.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/red_mushroom_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/red_mushroom_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_big_brick_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_big_brick_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_brick_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_brick_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_cottage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_cottage.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_dark_oak_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_dark_oak_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_large_snowy_spruce_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_large_snowy_spruce_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_mossy_spruce_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_mossy_spruce_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_oak_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_oak_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruined_snowy_spruce_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruined_snowy_spruce_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruins/church.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruins/church.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruins/graveyard2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruins/graveyard2.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruins/graveyard2www.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruins/graveyard2www.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/ruins/graveyard3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/ruins/graveyard3.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_desert_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_desert_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement1.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement1.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement2.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement2.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement3.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement3.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement4.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement4.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement5.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement5.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement6.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement6.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement7.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement7.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_house_basement8.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_house_basement8.schem -------------------------------------------------------------------------------- /data/structory/structures/harvest/small_ruined_oak_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/small_ruined_oak_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/stonebricks_tower_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/stonebricks_tower_ruin.nbt -------------------------------------------------------------------------------- /data/structory/structures/harvest/wood_barn_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/harvest/wood_barn_ruin.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/barn1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/barn1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/boat/1/bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/boat/1/bottom.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/boat/1/top.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/boat/1/top.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/boat/2/bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/boat/2/bottom.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/boat/2/top.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/boat/2/top.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/boat/3/bottom.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/boat/3/bottom.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/boat/3/top.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/boat/3/top.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/camp1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/camp1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/desert/copper_house1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/desert/copper_house1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/desert/copper_house2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/desert/copper_house2.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/desert/rock_house1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/desert/rock_house1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/farm_ruin/connector.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/farm_ruin/connector.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/farm_ruin/main.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/farm_ruin/main.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/farm_ruin/outer1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/farm_ruin/outer1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/farm_ruin/outer2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/farm_ruin/outer2.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/farm_ruin/outer3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/farm_ruin/outer3.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/farm_ruin/outer4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/farm_ruin/outer4.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/farm_ruin/outer5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/farm_ruin/outer5.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/firetower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/firetower.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/graveyard/main1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/graveyard/main1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/medium1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/medium1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/medium2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/medium2.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/mine/secondary.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/mine/secondary.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/mine/start.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/mine/start.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/mossy_ruin/connector.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/mossy_ruin/connector.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/mossy_ruin/main.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/mossy_ruin/main.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/mossy_ruin/outer1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/mossy_ruin/outer1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/mossy_ruin/outer2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/mossy_ruin/outer2.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/mossy_ruin/outer3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/mossy_ruin/outer3.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/ruin1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/ruin1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/settlement_large.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/settlement_large.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/sundial.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/sundial.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/tower/badlands_small1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/tower/badlands_small1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/tower/desert_small1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/tower/desert_small1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/tower/grassy_small1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/tower/grassy_small1.nbt -------------------------------------------------------------------------------- /data/structory/structures/outcast_villager/tower/grassy_small2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/outcast_villager/tower/grassy_small2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/castle1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/castle1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/castle2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/castle2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/circle_small.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/circle_small.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/circle_tall.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/circle_tall.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/connector1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/connector1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/connector2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/connector2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/connector3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/connector3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/connector4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/connector4.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/connector5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/connector5.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/doorway.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/doorway.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/house1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/house1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/house2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/house2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/house3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/house3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/mound1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/mound1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/mound_castle_small.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/mound_castle_small.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/mound_corner.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/mound_corner.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/mound_tabletwall.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/mound_tabletwall.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/northern_ruins/mound_watchtower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/northern_ruins/mound_watchtower.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/bend1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/bend1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/bend2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/bend2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/bend3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/bend3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/long1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/long1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/long2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/long2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/short1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/short1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/short2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/short2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/connector/short3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/connector/short3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/fountain1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/fountain1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/frog1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/frog1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/frog2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/frog2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/frog3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/frog3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/frog_statue1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/frog_statue1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/frog_statue2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/frog_statue2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/frog_statue_small.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/frog_statue_small.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/obelisk1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/obelisk1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pillar1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pillar1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pond1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pond1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pond2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pond2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pool1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pool1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pool2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pool2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pool3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pool3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pool_small1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pool_small1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/pyramid1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/pyramid1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/ring1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/ring1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/ring2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/ring2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/ruin1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/ruin1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/ruin2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/ruin2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/ruin3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/ruin3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/ruin4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/ruin4.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/ruin5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/ruin5.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/staircase1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/staircase1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/star1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/star1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/statue1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/statue1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/t1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/t1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/table1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/table1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/swamp/table2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/swamp/table2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/arch1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/arch1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/bridge1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/bridge1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/ruin1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/ruin1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/ruin2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/ruin2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/ruin3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/ruin3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/tower1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/tower1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/tower2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/tower2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_surface/tower3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_surface/tower3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/initial_piece.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/initial_piece.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/main_piece.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/main_piece.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_entrance.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_entrance.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall2_stash.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall2_stash.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall3_enchanting.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall3_enchanting.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_bedroom11.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_bedroom11.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_bedroom2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_bedroom2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_bedroom3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_bedroom3.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_books.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_books.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_closet.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_closet.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_library.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_library.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_smeltery.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_smeltery.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_hall_storage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_hall_storage.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/quarters_ladder.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/quarters_ladder.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/treasure1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/treasure1.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/treasure2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/treasure2.nbt -------------------------------------------------------------------------------- /data/structory/structures/ruin/taiga_underground/treasure3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/ruin/taiga_underground/treasure3.nbt -------------------------------------------------------------------------------- /data/structory/structures/temple/temple_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/temple/temple_ruin.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/brick_chimney_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/brick_chimney_1.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/brick_chimney_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/brick_chimney_2.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/brick_chimney_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/brick_chimney_3.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/cobble_chimney_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/cobble_chimney_1.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/cobble_chimney_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/cobble_chimney_2.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/cobble_chimney_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/cobble_chimney_3.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/cobble_tower_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/cobble_tower_ruin.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/cobble_wash-house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/cobble_wash-house.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/giant_pumpkin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/giant_pumpkin.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/giant_watermelon.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/giant_watermelon.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/nostalgic_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/nostalgic_ruin.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/ruined_dark_oak_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/ruined_dark_oak_house.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/stone_brick_pillars_ruins_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/stone_brick_pillars_ruins_1.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/stone_brick_pillars_ruins_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/stone_brick_pillars_ruins_2.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/stone_brick_pillars_ruins_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/stone_brick_pillars_ruins_3.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/stone_brick_pillars_ruins_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/stone_brick_pillars_ruins_4.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/stone_brick_sun_dial.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/stone_brick_sun_dial.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/stonebricks_tower_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/stonebricks_tower_ruin.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_camp_campfire.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_camp_campfire.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_camp_cw.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_camp_cw.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_camp_haybale.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_camp_haybale.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_camp_storage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_camp_storage.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_camp_tracks.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_camp_tracks.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_camp_tracks_corner.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_camp_tracks_corner.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_camp_tracks_small.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_camp_tracks_small.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_cart.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_cart.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_trackend.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_trackend.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_trackend_bl.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_trackend_bl.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/vc_trackend_br.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/vc_trackend_br.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/villager_outpost.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/villager_outpost.nbt -------------------------------------------------------------------------------- /data/structory/structures/unsorted/wood_barn_ruin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/structures/unsorted/wood_barn_ruin.nbt -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/boat.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/chapel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/chapel.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/firetower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/firetower.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/jungle_well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/jungle_well.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/northern_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/northern_ruin.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/old_manor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/old_manor.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/outcast_villager_desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/outcast_villager_desert.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/outcast_villager_grassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/outcast_villager_grassy.json -------------------------------------------------------------------------------- /data/structory/tags/worldgen/biome/has_structure/ruin_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/tags/worldgen/biome/has_structure/ruin_taiga.json -------------------------------------------------------------------------------- /data/structory/worldgen/processor_list/decoration/jungle_well_weathering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/processor_list/decoration/jungle_well_weathering.json -------------------------------------------------------------------------------- /data/structory/worldgen/processor_list/harvest/old_manor/old_manor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/processor_list/harvest/old_manor/old_manor.json -------------------------------------------------------------------------------- /data/structory/worldgen/processor_list/harvest/old_manor/path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/processor_list/harvest/old_manor/path.json -------------------------------------------------------------------------------- /data/structory/worldgen/processor_list/ruin/northern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/processor_list/ruin/northern.json -------------------------------------------------------------------------------- /data/structory/worldgen/processor_list/ruin/swamp_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/processor_list/ruin/swamp_moss.json -------------------------------------------------------------------------------- /data/structory/worldgen/processor_list/ruin/taiga_underground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/processor_list/ruin/taiga_underground.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/abandoned_camp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/abandoned_camp.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/abandoned_chapel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/abandoned_chapel.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/boat.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/dense_forest_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/dense_forest_ruin.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/firetower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/firetower.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/graveyard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/graveyard.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/jungle_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/jungle_ruin.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/northern_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/northern_ruin.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/old_manor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/old_manor.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/old_manor.json_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/old_manor.json_old -------------------------------------------------------------------------------- /data/structory/worldgen/structure/outcast_villager_desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/outcast_villager_desert.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/outcast_villager_grassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/outcast_villager_grassy.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/ruin_grassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/ruin_grassy.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/swamp_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/swamp_ruin.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/taiga_ruin_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/taiga_ruin_surface.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure/taiga_ruin_underground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure/taiga_ruin_underground.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure_set/mid_rare_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure_set/mid_rare_ruin.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure_set/old_manor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure_set/old_manor.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure_set/outcast_villager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure_set/outcast_villager.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure_set/ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure_set/ruin.json -------------------------------------------------------------------------------- /data/structory/worldgen/structure_set/ruin_quiet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/structure_set/ruin_quiet.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/chapel/secondary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/chapel/secondary.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/decoration/jungle_well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/decoration/jungle_well.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/evoker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/evoker.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/pillager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/pillager.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/random_illager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/random_illager.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/villager/outcast_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/villager/outcast_1.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/villager/outcast_desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/villager/outcast_desert.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/villager/outcast_settlement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/villager/outcast_settlement.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/vindicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/vindicator.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/waterlogged_creeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/waterlogged_creeper.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/entities/witch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/entities/witch.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/camp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/camp.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/chapel/chapel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/chapel/chapel.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/chapel/graveyard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/chapel/graveyard.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/chapel/secondary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/chapel/secondary.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/chapel/side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/chapel/side.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/manor/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/manor/main.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/manor/ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/manor/ruin.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/old_manor/cellars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/old_manor/cellars.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/old_manor/decor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/old_manor/decor.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/old_manor/old_manor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/old_manor/old_manor.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/old_manor/path_scrapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/old_manor/path_scrapped.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/old_manor/roof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/old_manor/roof.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/old_manor/spider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/old_manor/spider.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/harvest/well_bottoms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/harvest/well_bottoms -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/manor/secondary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/manor/secondary.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/manor/side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/manor/side.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/boat.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/boat/1/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/boat/1/bottom.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/boat/2/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/boat/2/bottom.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/boat/3/bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/boat/3/bottom.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/boat/boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/boat/boats.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/desert.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/farm_ruin/connector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/farm_ruin/connector.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/farm_ruin/outer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/farm_ruin/outer.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/firetower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/firetower.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/grassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/grassy.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/mine/secondary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/mine/secondary.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/mossy_ruin/connector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/mossy_ruin/connector.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/outcast_villager/mossy_ruin/outer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/outcast_villager/mossy_ruin/outer.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/grassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/grassy.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/northern/connector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/northern/connector.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/northern/piece.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/northern/piece.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/northern/piece_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/northern/piece_start.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/swamp.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/swamp/connector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/swamp/connector.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/swamp/frog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/swamp/frog.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/swamp/mangrove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/swamp/mangrove.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/swamp/piece.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/swamp/piece.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_surface.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/enchanting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/enchanting.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/entrance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/entrance.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/first_piece.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/first_piece.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/hallway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/hallway.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/ladder.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/quarters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/quarters.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/room.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/stash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/stash.json -------------------------------------------------------------------------------- /data/structory/worldgen/template_pool/ruin/taiga_underground/treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/data/structory/worldgen/template_pool/ruin/taiga_underground/treasure.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/license.txt -------------------------------------------------------------------------------- /pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/pack.mcmeta -------------------------------------------------------------------------------- /pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-Labs-MC/Structory/HEAD/pack.png --------------------------------------------------------------------------------