-
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.
[Content] [Balance] Thread, yarn, and fabric audit and additions. (#7…
…0850) * Thread and Yarn Audit Removed Felt to Thread recipes: you can't actually do that without carding the felt back into something you can draft onto a spindle. Added a carding recipe to turn felt patches back into wool staples. Multiplied the time factor for spinning thread with no proficiency by 6. I had hands on experience doing this with a professional hobbyist. Looks easy; isn't. Removed Fiber Twisting from yarn recipes. There is no difference between spinning thread and spinning yarn except how much you get per inch for the same amount of work. (Tested with alpaca, wool, and cotton.) * Creation of a Fabric Store It was noted that a dedicated supply store for all things fabric didn't exist. You can find both tailoring supplies and a low chance of fur related supplies. * Linting Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Linting Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * More Linting Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Lint for the Lint Lord Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Linted? Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * More Lint for the pocket Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * I should json_format before I commit Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Linted Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Linted again Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Misplaced , * Missing seperator * Missing /n at EOF * Missing /n at EOF * Changed name of fabric store roof TO fabric store roof * Added missing bits to spawn the building and roof * Added wool to thread and cotton to yarn First steps at divorcing the distinction between material and finished product. * Revert change to respect allergy I totally forgot about wool allergies. * Spelling Co-authored-by: Procyonae <[email protected]> * Commiting this since it seems benign Co-authored-by: Procyonae <[email protected]> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Procyonae <[email protected]>
- Loading branch information
1 parent
3e06692
commit 414d97c
Showing
6 changed files
with
164 additions
and
29 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,90 @@ | ||
[ | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"om_terrain": [ "s_fabricstore" ], | ||
"//": "Fabric Outlet", | ||
"object": { | ||
"fill_ter": "t_floor", | ||
"rows": [ | ||
"------------------------", | ||
"------------------------", | ||
"------------------------", | ||
"..p--####:::++:::#......", | ||
"..p--#JJ| #......", | ||
"..p--# | #......", | ||
"..p--#+|| #......", | ||
"..p--# [Q ccc C#......", | ||
"..p--# Q C#......", | ||
"..p--# Q CCC C#......", | ||
"..p--# c #......", | ||
"..p--# c #......", | ||
"..p--#+|||i|ccccc#......", | ||
"..p--# [[[ | s%#......", | ||
"..p--# s | #......", | ||
"..p--; s |+||||#......", | ||
".....0 [[ +___#......", | ||
"....z#|+||i|||_St#......", | ||
"....z#d | #####......", | ||
"....z#ds|LlLl#4zzz......", | ||
"....z##0######z.........", | ||
"........................", | ||
"........................", | ||
"........................" | ||
], | ||
"palettes": [ "standard_building_palette", "fabric_store_pallete" ], | ||
"terrain": { "t": "t_linoleum_white", "S": "t_linoleum_white", "_": "t_linoleum_white" }, | ||
"place_loot": [ { "group": "cash_register_random", "x": 7, "y": 7 } ] | ||
} | ||
}, | ||
{ | ||
"type": "mapgen", | ||
"method": "json", | ||
"om_terrain": "s_fabricstore_roof", | ||
"object": { | ||
"fill_ter": "t_flat_roof", | ||
"rows": [ | ||
" ", | ||
" ", | ||
" ", | ||
" ------------- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -...........- ", | ||
" -.......5---- ", | ||
" -...&...- ", | ||
" --------- ", | ||
" ", | ||
" ", | ||
" " | ||
], | ||
"palettes": [ "roof_palette" ], | ||
"place_items": [ { "item": "roof_trash", "x": [ 7, 13 ], "y": [ 5, 15 ], "chance": 50, "repeat": [ 1, 3 ] } ], | ||
"place_nested": [ | ||
{ | ||
"chunks": [ | ||
[ "null", 20 ], | ||
[ "roof_2x2_utilities_b", 15 ], | ||
[ "roof_2x2_utilities_c", 5 ], | ||
[ "roof_2x2_utilities_d", 20 ], | ||
[ "roof_4x4_utility", 20 ], | ||
[ "roof_2x2_utilities", 30 ] | ||
], | ||
"x": [ 7, 12 ], | ||
"y": [ 5, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[ | ||
{ | ||
"type": "palette", | ||
"id": "fabric_store_pallete", | ||
"terrain": { | ||
";": [ "t_door_locked", "t_door_elocked_alarm" ], | ||
"i": "t_door_locked_interior", | ||
"0": "t_window_alarm", | ||
"z": "t_region_shrub_decorative", | ||
"p": "t_region_groundcover_urban" | ||
}, | ||
"furniture": { | ||
"%": "f_console_broken", | ||
"c": "f_rack", | ||
"C": "f_rack", | ||
"Q": "f_rack", | ||
"s": "f_stool", | ||
"d": "f_desk", | ||
"[": "f_table", | ||
"p": "f_region_flower", | ||
"L": "f_locker", | ||
"l": "f_locker", | ||
"J": "f_locker" | ||
}, | ||
"items": { | ||
"c": [ { "item": "SUS_tailoring_materials", "chance": 50 }, { "item": "SUS_tailoring_materials", "chance": 50 } ], | ||
"C": { "item": "SUS_fur_tailoring_materials", "chance": 30 }, | ||
"Q": { "item": "SUS_tailoring_tool_drawer", "chance": 80 }, | ||
"d": { "item": "SUS_office_desk", "chance": 60 }, | ||
"[": { "item": "SUS_tailoring_tool_drawer", "chance": 30 }, | ||
"L": [ { "item": "SUS_fur_tailoring_materials", "chance": 50 }, { "item": "SUS_tailoring_fasteners", "chance": 50 } ], | ||
"l": [ { "item": "SUS_tailoring_materials", "chance": 30 }, { "item": "SUS_tailoring_fasteners", "chance": 50 } ], | ||
"J": { "item": "SUS_janitors_closet", "chance": 60 } | ||
} | ||
} | ||
] |
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
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