-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a dive ship with two variations. One has an open class area and a small pool in the back, as well as a spot for refilling SCUBA tanks. The other has a larger separate classroom and more sales floor space. This will provide another location for finding nepoprene and other SCUBA related items.
- Loading branch information
Showing
4 changed files
with
235 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
[ | ||
{ | ||
"id": "dive_shop_tanks", | ||
"type": "item_group", | ||
"subtype": "distribution", | ||
"items": [ | ||
{ "item": "small_scuba_tank", "prob": 40, "charges": [ 5, 20 ] }, | ||
{ "item": "scuba_tank", "prob": 60, "charges": [ 10, 60 ] } | ||
] | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"om_terrain": [ "s_dive_shop" ], | ||
"weight": 500, | ||
"object": { | ||
"fill_ter": "t_floor", | ||
"rows": [ | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"FFFFFFFFFFFFFFFFFFFFFFFF", | ||
"FFFFFFFFFFFFFFFFFFFFFFFF", | ||
"|--OOOOOO--++--OOOOOO-|.", | ||
"| |.", | ||
"|W R R R RRRR RRRR |.", | ||
"|W R R R |.", | ||
"|W R R R #cDDDD#####$|.", | ||
"|W R R R #L L |.", | ||
"| |-----------|.", | ||
"| hhhhhh | |S|.", | ||
"| ZZZZZZ + ~~~~~~~ |S|.", | ||
"| hhhhhh + ~~~~~~~ |+|.", | ||
"| | ~~~~~~~ |.", | ||
"|--------+| ~~~~~~~ |+|.", | ||
"|B C | ~~~~~~~ | |.", | ||
"|3 C | |t|.", | ||
"|--------M-----M------|.", | ||
".4......____________<...", | ||
"........................" | ||
], | ||
"terrain": { | ||
" ": "t_floor", | ||
"+": "t_door_c", | ||
",": "t_pavement_y", | ||
"-": "t_wall_w", | ||
".": [ [ "t_dirt", 5 ], [ "t_grass", 16 ], [ "t_grass_long", 5 ], [ "t_underbrush", 10 ] ], | ||
"F": "t_sidewalk", | ||
"O": "t_window", | ||
"_": "t_pavement", | ||
"M": "t_door_metal_pickable", | ||
"4": "t_gutter_downspout", | ||
"<": "t_ladder_up", | ||
"|": "t_wall_w", | ||
"C": "t_chaingate_c", | ||
"~": "t_water_pool" | ||
}, | ||
"furniture": { | ||
"#": "f_counter", | ||
"$": "f_counter_gate_c", | ||
"c": "f_console_broken", | ||
"D": "f_displaycase", | ||
"R": "f_rack", | ||
"W": "f_wardrobe", | ||
"L": "f_stool", | ||
"t": "f_toilet", | ||
"S": "f_shower", | ||
"B": "f_workbench", | ||
"3": "f_air_compressor", | ||
"h": "f_chair", | ||
"Z": "f_table" | ||
}, | ||
"items": { | ||
"R": { "item": "SUS_scuba_gear", "chance": 20 }, | ||
"D": { "item": "SUS_scuba_gear", "chance": 40 }, | ||
"W": { "item": "swimmer_wetsuit", "chance": 80, "repeat": [ 0, 3 ]} | ||
}, | ||
"place_items": [ | ||
{ "item": "dive_shop_tanks", "x": [ 3, 6 ], "y": [ 19, 20 ], "chance": 90, "repeat": [ 2, 8 ] } | ||
], | ||
"place_monster": [ { "group": "GROUP_POOL_NOKIDS", "x": [ 12, 19 ], "y": [ 15, 19 ], "repeat": [ 2, 6 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"om_terrain": [ "s_dive_shop" ], | ||
"weight": 500, | ||
"object": { | ||
"fill_ter": "t_floor", | ||
"rows": [ | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"____,____,____,____,____", | ||
"FFFFFFFFFFFFFFFFFFFFFFFF", | ||
"FFFFFFFFFFFFFFFFFFFFFFFF", | ||
"|--OOOOOO--++--OOOOOO-|.", | ||
"| |.", | ||
"|W R R R R RRRR RRRR|.", | ||
"|W R R R R |.", | ||
"|W R R R R #c#DDDD$#|.", | ||
"|W R R R R #L |.", | ||
"| # |.", | ||
"| -========|.", | ||
"| : |.", | ||
"|W R R R R : hhhhh |.", | ||
"|W R R R R ) ZZZZZ |.", | ||
"|W R R R R ) ZZZZZ |.", | ||
"|W R R R R : hhhhh |.", | ||
"| : |.", | ||
"|--------------M------|.", | ||
".4............._____<...", | ||
"........................" | ||
], | ||
"terrain": { | ||
" ": "t_floor", | ||
"+": "t_door_glass_c", | ||
",": "t_pavement_y", | ||
"-": "t_wall_w", | ||
".": [ [ "t_dirt", 5 ], [ "t_grass", 16 ], [ "t_grass_long", 5 ], [ "t_underbrush", 10 ] ], | ||
"F": "t_sidewalk", | ||
"O": "t_window", | ||
"_": "t_pavement", | ||
"M": "t_door_metal_pickable", | ||
"4": "t_gutter_downspout", | ||
"<": "t_ladder_up", | ||
"|": "t_wall_w", | ||
"=": "t_wall_glass_h", | ||
":": "t_wall_glass_v", | ||
")": "t_door_glass_c" | ||
}, | ||
"furniture": { | ||
"#": "f_counter", | ||
"$": "f_counter_gate_c", | ||
"c": "f_console_broken", | ||
"D": "f_displaycase", | ||
"R": "f_rack", | ||
"W": "f_wardrobe", | ||
"L": "f_stool", | ||
"h": "f_chair", | ||
"Z": "f_table" | ||
}, | ||
"items": { | ||
"R": { "item": "SUS_scuba_gear", "chance": 10 }, | ||
"D": { "item": "SUS_scuba_gear", "chance": 40 }, | ||
"W": { "item": "swimmer_wetsuit", "chance": 80, "repeat": [ 0, 3 ]} | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"om_terrain": [ "s_dive_shop_roof" ], | ||
"weight": 500, | ||
"object": { | ||
"fill_ter": "t_tar_flat_roof", | ||
"rows": [ | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
" ", | ||
"|.....................3 ", | ||
"|.c...................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.........&...........3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|.....................3 ", | ||
"|5--------------------3 ", | ||
" #>## ", | ||
" " | ||
], | ||
"terrain": { | ||
".": "t_tar_flat_roof", | ||
" ": "t_open_air", | ||
"|": "t_gutter_west", | ||
"-": "t_gutter_south", | ||
"3": "t_gutter_east", | ||
"#": "t_grate", | ||
">": "t_ladder_down", | ||
"5": "t_gutter_drop" | ||
}, | ||
"furniture": { "&": "f_roof_turbine_vent", "c": "f_cellphone_booster" }, | ||
"place_items": [ { "item": "roof_trash", "x": [ 4, 16 ], "y": [ 8, 15 ], "chance": 50, "repeat": [ 1, 3 ] } ], | ||
"place_nested": [ | ||
{ "chunks": [ [ "roof_2x2_golf", 5 ], [ "null", 85 ], [ "roof_3x3_wine", 10 ] ], "x": [ 13, 20 ], "y": 15 }, | ||
{ | ||
"chunks": [ [ "null", 40 ], [ "roof_4x4_party", 5 ], [ "roof_4x4_utility", 50 ], [ "roof_4x4_holdout", 3 ] ], | ||
"x": [ 4, 13 ], | ||
"y": [ 8, 13 ] | ||
} | ||
] | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters