-
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 butchering profs * Thank you Ferret Co-authored-by: TheShadowFerret <[email protected]> * Update data/json/hobbies.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * remove prof_butchery_offal, tweak learning of the profs slightly * Astyle Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update src/activity_handlers.cpp Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix syntax error * fix whatever gods of github messed up in my PR * tweak learning time since now leaning is not count as all the time you spend butchering * change speeds, influence and training as it was discussed * penalize only time spend on this specific activity * Update src/activity_handlers.cpp * use much better code by IdleSol, apply penalties values by HadeanLake Co-authored-by: IdleSol <[email protected]> Co-authored-by: HadeanLake <[email protected]> * Apply suggestions from code review --------- Co-authored-by: TheShadowFerret <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: IdleSol <[email protected]> Co-authored-by: HadeanLake <[email protected]>
- Loading branch information
1 parent
67159f2
commit ab971ba
Showing
5 changed files
with
185 additions
and
6 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[ | ||
{ | ||
"type": "proficiency", | ||
"id": "prof_butchering_basic", | ||
"category": "prof_butchering", | ||
"name": { "str": "Principles of Butchering" }, | ||
"description": "You know how to pick up most of the meat from the animal body.", | ||
"can_learn": true, | ||
"time_to_learn": "2 h" | ||
}, | ||
{ | ||
"type": "proficiency", | ||
"id": "prof_butchering_adv", | ||
"category": "prof_butchering", | ||
"name": { "str": "Butchering Expert" }, | ||
"description": "There is very little meat left after your skillful knife movements.", | ||
"can_learn": true, | ||
"time_to_learn": "25 h", | ||
"required_proficiencies": [ "prof_butchering_basic" ] | ||
}, | ||
{ | ||
"type": "proficiency", | ||
"id": "prof_skinning_basic", | ||
"category": "prof_butchering", | ||
"name": { "str": "Principles of Skinning" }, | ||
"description": "You stopped making holes in the skin of animals you butcher.", | ||
"can_learn": true, | ||
"time_to_learn": "2 h" | ||
}, | ||
{ | ||
"type": "proficiency", | ||
"id": "prof_skinning_adv", | ||
"category": "prof_butchering", | ||
"name": { "str": "Skinning Expert" }, | ||
"description": "You really know how to skin the animal.", | ||
"can_learn": true, | ||
"time_to_learn": "25 h", | ||
"required_proficiencies": [ "prof_skinning_basic" ] | ||
} | ||
] |
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