mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-30 11:32:20 +00:00
About The Pull Request
Changes our current underwear selection to greyscale so you can color them any way you like, just like hair.
Removed duplicate underwear types that only served as a few color options(female_yellow, male_blue, ect.) Underwear with designs are unaffected(female_uk, male_commie, ect.)
Added a new option in dressers to change underwear color.
Changed some underwear names to fit the new option(female_red is now female_lace, ect.)
A9hAqkxgin
If all is well i plan on adding this to undershirts and socks too.
also HUGE thank you to nonfictiongames for the help!!!!
Why It's Good For The Game
More character customization in roleplaying game GOOD
Changelog
cl
add: Underwear can now have any color. (Your character will most likely be nude now so check your prefs!!)
add: Underwear color option in dressers
tweak: changed some underwear names
imagedel: deleted duplicate underwear
/cl
41 lines
1.7 KiB
Plaintext
41 lines
1.7 KiB
Plaintext
|
|
/datum/admins/proc/create_mob(mob/user)
|
|
var/static/create_mob_html
|
|
if (!create_mob_html)
|
|
var/mobjs = null
|
|
mobjs = jointext(typesof(/mob), ";")
|
|
create_mob_html = file2text('html/create_object.html')
|
|
create_mob_html = replacetext(create_mob_html, "Create Object", "Create Mob")
|
|
create_mob_html = replacetext(create_mob_html, "null /* object types */", "\"[mobjs]\"")
|
|
|
|
user << browse(create_panel_helper(create_mob_html), "window=create_mob;size=425x475")
|
|
|
|
/proc/randomize_human(mob/living/carbon/human/H)
|
|
H.gender = pick(MALE, FEMALE)
|
|
H.real_name = random_unique_name(H.gender)
|
|
H.name = H.real_name
|
|
H.underwear = random_underwear(H.gender)
|
|
H.underwear_color = random_short_color()
|
|
H.skin_tone = random_skin_tone()
|
|
H.hair_style = random_hair_style(H.gender)
|
|
H.facial_hair_style = random_facial_hair_style(H.gender)
|
|
H.hair_color = random_short_color()
|
|
H.facial_hair_color = H.hair_color
|
|
H.eye_color = random_eye_color()
|
|
H.dna.blood_type = random_blood_type()
|
|
|
|
// Mutant randomizing, doesn't affect the mob appearance unless it's the specific mutant.
|
|
H.dna.features["mcolor"] = random_short_color()
|
|
H.dna.features["ethcolor"] = GLOB.color_list_ethereal[pick(GLOB.color_list_ethereal)]
|
|
H.dna.features["tail_lizard"] = pick(GLOB.tails_list_lizard)
|
|
H.dna.features["snout"] = pick(GLOB.snouts_list)
|
|
H.dna.features["horns"] = pick(GLOB.horns_list)
|
|
H.dna.features["frills"] = pick(GLOB.frills_list)
|
|
H.dna.features["spines"] = pick(GLOB.spines_list)
|
|
H.dna.features["body_markings"] = pick(GLOB.body_markings_list)
|
|
H.dna.features["moth_wings"] = pick(GLOB.moth_wings_list)
|
|
|
|
H.update_body()
|
|
H.update_hair()
|
|
H.update_body_parts()
|