About this mod
A simple Hair Growth System. Changes the hair\beard of the player after x-days.
- Requirements
- Permissions and credits
- Changelogs
- Donations
A simple hair and beard growth mod that changes the hair\beard of the player as time goes on. To cut the hair you can either assign a button(in the config.json file), or use another mod allowing apperance change(the Mirror mod for instance).
Not yet implemented\Planned Feature:
Optionally progressivly changes the hair to gray\white(depending on if you have light or dark hair) after x-amount of years.
Installation instructions:
Download then install SMAPI
Unzip\Create folder named HungerMod in Stadrew Vallley\Mods\
Should look like this:
Stardew Valley\Mods\HairGrowthMod\ containing these files:
config.json
HairGrowthMod.dll
HairGrowthMod.pdb
manifest.json
Update instructions:
Same as installation, if new features are added that can be configured it will be automatically generated to your config file(No need to manually add it)
Compatibility:
Compatible with all mods adding new hair-styles(but you'll have to do some mild-legg work yourself by adding the new hair-styles into the system in the config.json file). As a general rule the hair-id is the hair number at character creation -1. so say you have hairstyle #23, the Id is then 22.
Configuration:
"beard_growth": true, - Whether beard growing system is to be on or not
"hair_growth": true, - Whether hair growing system is to be on or not
"shave_entire_beard": true, - If false, progressivly reduce beard
"allow_female_beard_grow": false, - Make beard grow if you are playing a female character
"require_shares": true, - If true, you need to hold shears before you can cut\shave
"days_to_grow_hair": 14, - How many days it takes to progress to next hair stage
"days_to_grow_beard": 7, - How many days it takesto progress to next beard stage
"hair_id_button": "None", - Shows the ID of current hair-style(to make it easier for you to add to the list), change to any key
"shave_button": "OemComma", - Key used to shave(need shears with require_shares on true)
"cut_hair_button": "OemPeriod", - Key used to cut hair(need shears with require_shares on true)
- The list of accessory(beard), and hair IDs in order of growth.
"beard_growth_list": [
-1,
3,
5,
0
],
"hair_growth_list_male": [
7,
23,
0,
4,
12,
28
],
"hair_growth_list_female": [
23,
25,
27,
29,
24,
26
]