Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Adventurer Outsiders with Beards (44.xx)  (Read 1990 times)

peasant cretin

  • Bay Watcher
  • [MEANDERER][GNAWER]
    • View Profile
Adventurer Outsiders with Beards (44.xx)
« on: January 24, 2018, 06:35:43 pm »

Just a little flavor add-on for anyone who wants their male outsider dorf/elf/harman/gobbo adventurer to have facial hair :)

Outsider dwarves and humans have beards/mustaches/sideburns, while outsider elves/goblins have just beards/sideburns.

The recruit title for all 4 has also been changed to wanderer.

Just toss the creature_outsider_advmd.txt into your raw folder before loading the game and rolling a character. No world regen necessary.

Download here.
Logged

Random_Dragon

  • Bay Watcher
  • Psycho Bored Dragon
    • View Profile
Re: Adventurer Outsiders with Beards (44.xx)
« Reply #1 on: May 25, 2018, 09:30:46 pm »

Oof. Smol and cute, but I'm having trouble finding what's actually changed. Already hair and beards are set to grow at a daily rate...
Logged
On DF Wiki · On DFFD

"Hey idiots, someone hacked my account to call you all idiots! Wasn't me you idiots!" seems to stretch credulity a bit.

peasant cretin

  • Bay Watcher
  • [MEANDERER][GNAWER]
    • View Profile
Re: Adventurer Outsiders with Beards (44.xx)
« Reply #2 on: May 25, 2018, 11:02:53 pm »

For dorf/humans/gobbos/elf the description field is determined by anything with APP_MOD_NOUN entries: "His/her APP_MOD_NOUN is extremely long." In this case, hair.

I duplicated the hair entry and renamed its APP_MOD_NOUN:could_be_anything:SING/PLURAL to beard/sideburns/moustache so the description field will fill out what I wanted.

Or something like what I had mentioned here.
Logged

Random_Dragon

  • Bay Watcher
  • Psycho Bored Dragon
    • View Profile
Re: Adventurer Outsiders with Beards (44.xx)
« Reply #3 on: May 25, 2018, 11:39:08 pm »

Ah, hmm. So that sounds like the only thing that needs to be changed is something like converting this...

Code: [Select]
[SET_TL_GROUP:BY_CATEGORY:HEAD:HAIR]
[PLUS_TL_GROUP:BY_CATEGORY:HEAD:CHEEK_WHISKERS]
[PLUS_TL_GROUP:BY_CATEGORY:HEAD:CHIN_WHISKERS]
[PLUS_TL_GROUP:BY_CATEGORY:HEAD:MOUSTACHE]
[PLUS_TL_GROUP:BY_CATEGORY:HEAD:SIDEBURNS]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:0:0:0:0:0:0:0]
[APP_MOD_NOUN:hair:SINGULAR]
[APP_MOD_RATE:1:DAILY:0:1000:0:0:NO_END]
[APP_MOD_DESC_RANGE:10:25:75:125:200:300]

Into this:
Code: [Select]
[SET_TL_GROUP:BY_CATEGORY:HEAD:HAIR]
[PLUS_TL_GROUP:BY_CATEGORY:HEAD:SIDEBURNS]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:0:0:0:0:0:0:0]
[APP_MOD_NOUN:hair:SINGULAR]
[APP_MOD_RATE:1:DAILY:0:1000:0:0:NO_END]
[APP_MOD_DESC_RANGE:10:25:75:125:200:300]
[SET_TL_GROUP:BY_CATEGORY:HEAD:CHEEK_WHISKERS]
[PLUS_TL_GROUP:BY_CATEGORY:HEAD:CHIN_WHISKERS]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:0:0:0:0:0:0:0]
[APP_MOD_NOUN:beard:SINGULAR]
[APP_MOD_RATE:1:DAILY:0:1000:0:0:NO_END]
[APP_MOD_DESC_RANGE:10:25:75:125:200:300]
[SET_TL_GROUP:BY_CATEGORY:HEAD:MOUSTACHE]
[TISSUE_LAYER_APPEARANCE_MODIFIER:LENGTH:0:0:0:0:0:0:0]
[APP_MOD_NOUN:moustache:SINGULAR]
[APP_MOD_RATE:1:DAILY:0:1000:0:0:NO_END]
[APP_MOD_DESC_RANGE:10:25:75:125:200:300]

Simplest code change that comes to mind. This does neglect to split up greasiness, curliness, etc though.
Logged
On DF Wiki · On DFFD

"Hey idiots, someone hacked my account to call you all idiots! Wasn't me you idiots!" seems to stretch credulity a bit.