Skip to content

Commit

Permalink
Allow numbers in names, give palsmamen, arachnids, and flies hair (#3906
Browse files Browse the repository at this point in the history
)

* peak

* modulizard
  • Loading branch information
Shoddd authored Oct 23, 2024
1 parent 09575ed commit d81975a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
4 changes: 4 additions & 0 deletions code/modules/client/preferences/names.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
// The `_` makes it first in ABC order.
group = "_real_name"
savefile_key = "real_name"
allow_numbers = TRUE // Monkestation addition

/datum/preference/name/real_name/apply_to_human(mob/living/carbon/human/target, value)
target.real_name = value
Expand Down Expand Up @@ -71,6 +72,7 @@
explanation = "Backup human name"
group = "backup_human"
savefile_key = "human_name"
allow_numbers = TRUE // Monkestation addition

/datum/preference/name/backup_human/create_informed_default_value(datum/preferences/preferences)
var/gender = preferences.read_preference(/datum/preference/choiced/gender)
Expand All @@ -83,6 +85,7 @@
explanation = "Clown name"
group = "fun"
relevant_job = /datum/job/clown
allow_numbers = TRUE // Monkestation addition

/datum/preference/name/clown/create_default_value()
return pick(GLOB.clown_names)
Expand All @@ -93,6 +96,7 @@
explanation = "Mime name"
group = "fun"
relevant_job = /datum/job/mime
allow_numbers = TRUE // Monkestation addition

/datum/preference/name/mime/create_default_value()
return pick(GLOB.mime_names)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,12 @@
limb_id = SPECIES_FLYPERSON
is_dimorphic = FALSE
should_draw_greyscale = FALSE
//MONKESTATION ADDITION START
/*
head_flags = HEAD_EYESPRITES | HEAD_DEBRAIN

*/
head_flags = HEAD_EYESPRITES | HEAD_DEBRAIN | HEAD_HAIR
//MONKESTATION ADDITION END
/obj/item/bodypart/chest/fly
limb_id = SPECIES_FLYPERSON
is_dimorphic = TRUE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
is_dimorphic = FALSE
should_draw_greyscale = FALSE
dmg_overlay_type = null
//MONKESTATION ADDITION START
/*
head_flags = HEAD_EYESPRITES

*/
head_flags = HEAD_EYESPRITES | HEAD_HAIR
// MONKESTATION ADDITION END
/obj/item/bodypart/chest/plasmaman
icon = 'icons/mob/species/plasmaman/bodyparts.dmi'
icon_state = "plasmaman_chest"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
icon_greyscale = 'monkestation/icons/mob/species/arachnid/bodyparts.dmi'
limb_id = SPECIES_ARACHNIDS
is_dimorphic = FALSE
head_flags = HEAD_EYESPRITES | HEAD_EYEHOLES | HEAD_DEBRAIN | HEAD_EYECOLOR
head_flags = HEAD_EYESPRITES | HEAD_EYEHOLES | HEAD_DEBRAIN | HEAD_EYECOLOR | HEAD_HAIR
palette = /datum/color_palette/generic_colors
palette_key = MUTANT_COLOR

Expand Down

0 comments on commit d81975a

Please sign in to comment.