forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First aid proficiencies (CleverRaven#53048)
Co-authored-by: Kevin Granade <[email protected]>
- Loading branch information
1 parent
3dc1a79
commit db37efe
Showing
12 changed files
with
168 additions
and
37 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
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,23 @@ | ||
[ | ||
{ | ||
"type": "proficiency", | ||
"id": "prof_wound_care", | ||
"name": { "str": "Wound Care" }, | ||
"description": "You know how to bandage wounds and understand basic principles of wound care.", | ||
"can_learn": true, | ||
"default_time_multiplier": 2, | ||
"default_fail_multiplier": 1.5, | ||
"time_to_learn": "2 h" | ||
}, | ||
{ | ||
"type": "proficiency", | ||
"id": "prof_wound_care_expert", | ||
"name": { "str": "Wound Care Expert" }, | ||
"description": "Your extensive field experience in bandaging and wound care is on par with that of a paramedic.", | ||
"can_learn": true, | ||
"default_time_multiplier": 2, | ||
"default_fail_multiplier": 1.25, | ||
"time_to_learn": "14 h", | ||
"required_proficiencies": [ "prof_firstaid" ] | ||
} | ||
] |
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,51 @@ | ||
[ | ||
{ | ||
"id": "prac_health_care_beg", | ||
"type": "practice", | ||
"activity_level": "NO_EXERCISE", | ||
"category": "CC_PRACTICE", | ||
"subcategory": "CSC_PRACTICE_HEALTH", | ||
"name": "bandaging (beginner)", | ||
"description": "Practice bandaging imaginary wounds while making sure your bandage won't fall off during activities.", | ||
"skill_used": "firstaid", | ||
"time": "1 h", | ||
"practice_data": { "min_difficulty": 0, "max_difficulty": 1, "skill_limit": 1 }, | ||
"proficiencies": [ { "proficiency": "prof_wound_care", "fail_multiplier": 1, "time_multiplier": 1 } ], | ||
"autolearn": [ [ "firstaid", 0 ] ], | ||
"flags": [ "BLIND_HARD" ], | ||
"components": [ | ||
[ | ||
[ "bandages", 1 ], | ||
[ "bandages_makeshift", 1 ], | ||
[ "bandages_makeshift_bleached", 1 ], | ||
[ "bandages_makeshift_boiled", 1 ] | ||
] | ||
], | ||
"byproducts": [ [ "rag", 1 ] ] | ||
}, | ||
{ | ||
"id": "prac_health_care_int", | ||
"type": "practice", | ||
"activity_level": "NO_EXERCISE", | ||
"category": "CC_PRACTICE", | ||
"subcategory": "CSC_PRACTICE_HEALTH", | ||
"name": "bandaging (advanced)", | ||
"description": "Practice bandaging different limbs and less accessible parts of your body using both hands and each of your hands alone.", | ||
"skill_used": "firstaid", | ||
"time": "1 h", | ||
"practice_data": { "min_difficulty": 1, "max_difficulty": 2, "skill_limit": 3 }, | ||
"proficiencies": [ { "proficiency": "prof_wound_care_expert", "fail_multiplier": 1, "time_multiplier": 1 } ], | ||
"autolearn": [ [ "firstaid", 1 ] ], | ||
"flags": [ "BLIND_HARD" ], | ||
"book_learn": [ [ "booklet_firstaid", 0 ], [ "mag_firstaid", 0 ], [ "pocket_firstaid", 0 ], [ "manual_first_aid", 0 ] ], | ||
"components": [ | ||
[ | ||
[ "bandages", 2 ], | ||
[ "bandages_makeshift", 2 ], | ||
[ "bandages_makeshift_bleached", 2 ], | ||
[ "bandages_makeshift_boiled", 2 ] | ||
] | ||
], | ||
"byproducts": [ [ "rag", 2 ] ] | ||
} | ||
] |
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
Oops, something went wrong.