-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optional worldmod to disable lifting requirements (strength and lifti…
…ng quality) (#42) * Initial implementation of mod Based on previous attempt: CleverRaven/Cataclysm-DDA#24053 * Astyle modinfo.json * do not check aid or strength when installing parts * Astyling * Do not display lifting and strength requirements if disabled Happy to remove the string if needed * No string for disabled requirements Might require further investigation into the display of 'Additional Requirements' * Json Styling Windows defender was preventing make style-json from running correctly * Only display additional requirements if they exist * Show jacking when required, remove irrelevant calculations * Astyle
- Loading branch information
Showing
3 changed files
with
81 additions
and
33 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,15 @@ | ||
[ | ||
{ | ||
"type": "MOD_INFO", | ||
"ident": "disable_lifting", | ||
"name": "No Lifting Reqs", | ||
"authors": "Wad67", | ||
"description": "Strength checks and lifting qualities are no longer required for installing or removing vehicle parts.", | ||
"category": "rebalance", | ||
"dependencies": [ "dda" ] | ||
}, | ||
{ | ||
"type": "WORLD_OPTION", | ||
"options": [ "DISABLE_LIFTING" ] | ||
} | ||
] |
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