Skip to content

Commit

Permalink
Added roofs to nether monster surface parts (#74792)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikLundell authored Jun 26, 2024
1 parent a723547 commit 997a180
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 5 deletions.
8 changes: 3 additions & 5 deletions data/json/mapgen/nether_monster_corpse/monster_misc.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,8 @@
" "
],
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ],
"palettes": [ "nether_monster_palette" ],
"monster": { "í": { "monster": "mon_yrax_quadraphract", "chance": 1 } },
"terrain": { "<": "t_slope_down", "-": "t_region_groundcover_barren", "=": "t_nm_floor_flesh" }
"palettes": [ "nether_monster_surface_palette" ],
"monster": { "í": { "monster": "mon_yrax_quadraphract", "chance": 1 } }
}
},
{
Expand Down Expand Up @@ -124,8 +123,7 @@
" ## "
],
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ],
"palettes": [ "nether_monster_palette" ],
"terrain": { }
"palettes": [ "nether_monster_surface_palette" ]
}
}
]
93 changes: 93 additions & 0 deletions data/json/mapgen_palettes/nether_monster_palette.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,98 @@
},
"traps": { "P": "tr_portal" },
"fields": { "q": { "field": "fd_fatigue", "intensity": 1 }, "Q": { "field": "fd_fatigue", "intensity": 2 } }
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "nest_nm_flesh_roof",
"object": {
"mapgensize": [ 1, 1 ],
"rows": [ "%" ],
"terrain": { "%": "t_nm_floor_flesh" },
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ]
}
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "nest_nm_bone_roof",
"object": {
"mapgensize": [ 1, 1 ],
"rows": [ "%" ],
"terrain": { "%": "t_nm_floor_bone" },
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ]
}
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "nest_nm_wall_flesh_roof",
"object": {
"mapgensize": [ 1, 1 ],
"rows": [ "%" ],
"terrain": { "%": "t_nm_wall_flesh" },
"place_nested": [ { "chunks": [ "nest_nm_flesh_roof" ], "x": 0, "y": 0, "z": 1 } ],
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ]
}
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "nest_nm_floor_flesh_roof",
"object": {
"mapgensize": [ 1, 1 ],
"rows": [ "%" ],
"terrain": { "%": "t_nm_floor_flesh" },
"place_nested": [ { "chunks": [ "nest_nm_flesh_roof" ], "x": 0, "y": 0, "z": 1 } ],
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ]
}
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "nest_nm_slope_down_flesh_roof",
"object": {
"mapgensize": [ 1, 1 ],
"rows": [ "%" ],
"terrain": { "%": "t_slope_down" },
"place_nested": [ { "chunks": [ "nest_nm_flesh_roof" ], "x": 0, "y": 0, "z": 1 } ],
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ]
}
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "nest_nm_wall_bone_roof",
"object": {
"mapgensize": [ 1, 1 ],
"rows": [ "%" ],
"terrain": { "%": "t_nm_wall_bone" },
"place_nested": [ { "chunks": [ "nest_nm_bone_roof" ], "x": 0, "y": 0, "z": 1 } ],
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ]
}
},
{
"type": "mapgen",
"method": "json",
"nested_mapgen_id": "nest_nm_wall_teeth_bone_roof",
"object": {
"mapgensize": [ 1, 1 ],
"rows": [ "%" ],
"terrain": { "%": "t_nm_wall_teeth" },
"place_nested": [ { "chunks": [ "nest_nm_bone_roof" ], "x": 0, "y": 0, "z": 1 } ],
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ]
}
},
{
"type": "palette",
"id": "nether_monster_surface_palette",
"nested": {
"#": { "chunks": [ "nest_nm_wall_flesh_roof" ] },
"=": { "chunks": [ "nest_nm_floor_flesh_roof" ] },
"<": { "chunks": [ "nest_nm_slope_down_flesh_roof" ] },
"@": { "chunks": [ "nest_nm_wall_bone_roof" ] },
"T": { "chunks": [ "nest_nm_wall_teeth_bone_roof" ] }
}
}
]

0 comments on commit 997a180

Please sign in to comment.