1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
[
{
"type": "palette",
"id": "bunker",
"terrain": {
"#": "t_rock",
"*": "t_chaingate_c",
"+": "t_door_metal_c",
"-": "t_scrap_wall",
"_": "t_thconc_floor",
",": "t_carpet_red",
"1": "t_column",
"<": "t_stairs_up",
"=": "t_chainfence",
"|": "t_wall_metal",
":": "t_secretdoor_metal_c",
";": "t_secretdoor_metal_o",
"~": "t_water_pump",
"t": "t_thconc_floor",
"G": "t_generator_broken"
},
"furniture": {
"A": "f_air_filter",
"a": "f_standing_tank",
"b": "f_bookcase",
"B": "f_bed",
"c": "f_counter",
"C": "f_cupboard",
"d": "f_dresser",
"D": "f_desk",
"e": "f_ergometer",
"E": "f_exercise",
"F": "f_fridge",
"f": "f_sofa",
"h": "f_chair",
"H": "f_water_heater",
"K": "f_sink",
"l": "f_utility_shelf",
"L": "f_table",
"O": "f_oven",
"P": "f_punching_bag",
"r": "f_rack",
"R": "f_rack",
"s": "f_shower",
"S": "f_woodstove",
"T": "f_table",
"U": "f_utility_shelf",
"u": "f_utility_shelf",
"v": "f_utility_shelf",
"V": "f_utility_shelf",
"w": "f_wardrobe",
"W": "f_water_purifier",
"Y": "f_rack_coat",
"^": "f_rubble",
"&": "f_trashcan",
"{": "f_rack",
"}": "f_bookcase"
},
"toilets": { "t": { } }
},
{
"type": "palette",
"id": "full_bunker_items",
"items": {
"b": [ { "item": "manuals", "chance": 60 }, { "item": "textbooks", "chance": 40 } ],
"B": { "item": "bed", "chance": 70, "repeat": [ 1, 2 ] },
"c": { "item": "hardware", "chance": 50 },
"C": [ { "item": "dining", "chance": 30, "repeat": [ 1, 3 ] }, { "item": "oven", "chance": 20 } ],
"d": { "item": "allclothes", "chance": 80, "repeat": [ 2, 4 ] },
"D": { "item": "office", "chance": 70 },
"l": { "item": "hardware", "chance": 50, "repeat": [ 1, 2 ] },
"L": { "item": "dining", "chance": 30 },
"r": { "item": "stash_wood", "chance": 85 },
"R": { "item": "hardware", "chance": 80 },
"S": { "item": "oven", "chance": 80 },
"T": { "item": "tools_common", "chance": 60, "repeat": [ 1, 2 ] },
"U": { "item": "gear_survival", "chance": 20, "repeat": [ 3, 5 ] },
"u": [ { "item": "cannedfood", "chance": 20, "repeat": [ 1, 5 ] }, { "item": "pasta", "chance": 10, "repeat": [ 1, 3 ] } ],
"v": { "item": "softdrugs", "chance": 50 },
"V": { "item": "bags", "chance": 30 },
"w": { "item": "allclothes", "chance": 80, "repeat": [ 2, 4 ] },
"Y": [ { "item": "jackets", "chance": 15 }, { "item": "hatstore_hats", "chance": 15 }, { "item": "winter", "chance": 10 } ],
"^": { "item": "shelter", "chance": 30 },
"{": [ { "item": "lmoe_guns", "chance": 80 }, { "item": "ammo", "chance": 5, "repeat": [ 3, 7 ] } ],
"}": { "item": "novels", "chance": 90, "repeat": [ 3, 8 ] }
}
},
{
"type": "palette",
"id": "bunker_ext",
"terrain": {
" ": [ [ "t_region_groundcover", 60 ], [ "t_region_shrub", 2 ], "t_region_tree" ],
"_": [ "t_region_groundcover", [ "t_region_groundcover_barren", 9 ] ],
"#": "t_rock",
"$": [ "t_region_tree_fruit", "t_region_tree_nut", "t_region_shrub_fruit", "t_region_shrub" ],
"S": [
[ "t_region_groundcover", 5 ],
"t_region_tree_fruit",
"t_region_tree_nut",
"t_region_tree",
"t_region_shrub_fruit",
"t_region_shrub"
],
"v": "t_open_air",
"+": "t_door_metal_pickable",
".": "t_rock_floor",
">": "t_stairs_down",
")": "t_slope_up",
"(": "t_slope_down",
"T": [ "t_region_tree_fruit", "t_region_tree_nut" ]
},
"items": { " ": [ { "item": "forest", "chance": 1 }, { "item": "field", "chance": 2 } ] }
}
]
|