ThongCoding commited on
Commit
f62ac91
·
1 Parent(s): c452930
Files changed (1) hide show
  1. structures.json +74 -0
structures.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "name": "castle_tower",
4
+ "description": "A medieval tower with battlements and defensive height.",
5
+ "required_blocks": ["stone_bricks", "cobblestone", "mossy_stone_bricks", "oak_planks", "torch"],
6
+ "tags": ["medieval", "defense"]
7
+ },
8
+ {
9
+ "name": "underground_bunker",
10
+ "description": "A secure underground base with reinforced walls and redstone lighting.",
11
+ "required_blocks": ["obsidian", "iron_block", "redstone_lamp", "lever", "smooth_stone"],
12
+ "tags": ["underground", "modern"]
13
+ },
14
+ {
15
+ "name": "treehouse",
16
+ "description": "A cozy elevated structure built into a tree canopy.",
17
+ "required_blocks": ["oak_logs", "oak_planks", "leaves", "ladder", "glass_pane"],
18
+ "tags": ["nature", "elevated"]
19
+ },
20
+ {
21
+ "name": "desert_hut",
22
+ "description": "A simple shelter for desert biomes.",
23
+ "required_blocks": ["sandstone", "smooth_sandstone", "cut_sandstone", "oak_door", "torch"],
24
+ "tags": ["desert", "village"]
25
+ },
26
+ {
27
+ "name": "ice_temple",
28
+ "description": "A mystical temple made from packed ice and glowing blocks.",
29
+ "required_blocks": ["packed_ice", "blue_ice", "snow_block", "sea_lantern", "light_blue_stained_glass"],
30
+ "tags": ["frozen", "temple"]
31
+ },
32
+ {
33
+ "name": "sky_platform",
34
+ "description": "A suspended platform in the sky, usable as base foundation.",
35
+ "required_blocks": ["stone_slab", "glass", "iron_block", "torch", "scaffolding"],
36
+ "tags": ["sky", "platform"]
37
+ },
38
+ {
39
+ "name": "nether_watchtower",
40
+ "description": "A watchtower adapted for survival in the Nether.",
41
+ "required_blocks": ["nether_bricks", "red_nether_bricks", "soul_torch", "basalt", "iron_bars"],
42
+ "tags": ["nether", "fortification"]
43
+ },
44
+ {
45
+ "name": "floating_island",
46
+ "description": "A small magical floating island with vegetation.",
47
+ "required_blocks": ["grass_block", "dirt", "leaves", "oak_logs", "glowstone"],
48
+ "tags": ["floating", "fantasy"]
49
+ },
50
+ {
51
+ "name": "library_room",
52
+ "description": "An interior room filled with books and study space.",
53
+ "required_blocks": ["bookshelf", "oak_planks", "lantern", "glass_pane", "carpet"],
54
+ "tags": ["indoor", "library"]
55
+ },
56
+ {
57
+ "name": "farm_stable",
58
+ "description": "A small stable and feeding zone for animals.",
59
+ "required_blocks": ["hay_block", "fence", "oak_planks", "coarse_dirt", "torch"],
60
+ "tags": ["farm", "animals"]
61
+ },
62
+ {
63
+ "name": "swamp_shack",
64
+ "description": "A mossy shack on stilts above swampy water.",
65
+ "required_blocks": ["mossy_cobblestone", "spruce_planks", "vines", "lily_pad", "oak_trapdoor"],
66
+ "tags": ["swamp", "shack"]
67
+ },
68
+ {
69
+ "name": "mine_entrance",
70
+ "description": "A small cave entrance with support beams and torches.",
71
+ "required_blocks": ["stone", "oak_logs", "rails", "torch", "gravel"],
72
+ "tags": ["mining", "cave"]
73
+ }
74
+ ]