mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-23 07:05:13 +01:00
cbde7d6206
This bounty was requested by @ArrisFairburne Cleans up the character customization; various customization features have been moved into three new tabs, "Character Basics" "OOC Preferences" and "Silicon Preferences". A ton of the character customization options (maybe 40%?) are stuff that almost nobody would use on a regular basis. Options like mushroom caps, frills, fluff, taur bodies, xenodorsal heads, etc. could be ignored by a most players because they're irrelevant to their characters. Ideally the most necessary stuff (basic furry parts, our required FTs, and soundbytes for speaking) are the stuff the players see first, with more stuff continuing to be available upon checking different tabs. Silicon prefs are moved into their own tab because most characters are carbons so they just won't ever need to bother with them. <details> <summary>Screenshots/Videos</summary> <img width="1100" height="790" alt="basics" src="https://github.com/user-attachments/assets/f84ce557-09fd-414d-a076-58569392a84b" /> <img width="1100" height="790" alt="visuals" src="https://github.com/user-attachments/assets/0e184209-f6d0-43f7-8452-0ec409f13dba" /> <img width="1100" height="790" alt="lore" src="https://github.com/user-attachments/assets/b0f8f74c-5b21-49f3-823a-8684015c7b61" /> <img width="1100" height="790" alt="lore2" src="https://github.com/user-attachments/assets/114088bc-6f3f-4a83-b528-d0d14055426e" /> <img width="1100" height="790" alt="ooc" src="https://github.com/user-attachments/assets/14333121-dc87-4396-a64d-fd2d07e86780" /> <img width="1100" height="790" alt="silicon" src="https://github.com/user-attachments/assets/5992d37e-17ca-4854-a88a-f6cc87f27128" /> </details> 🆑 ArrisFairburne qol: Cleaned up the character preference window. /🆑 ^ Conflicts: ^ tgui/packages/tgui/interfaces/PreferencesMenu/types.ts
54 lines
1.6 KiB
Plaintext
54 lines
1.6 KiB
Plaintext
/datum/preference/choiced/random_body
|
|
category = PREFERENCE_CATEGORY_NON_CONTEXTUAL
|
|
savefile_key = "random_body"
|
|
savefile_identifier = PREFERENCE_CHARACTER
|
|
can_randomize = FALSE
|
|
|
|
/datum/preference/choiced/random_body/apply_to_human(mob/living/carbon/human/target, value)
|
|
return
|
|
|
|
/datum/preference/choiced/random_body/init_possible_values()
|
|
return list(
|
|
RANDOM_ANTAG_ONLY,
|
|
RANDOM_DISABLED,
|
|
RANDOM_ENABLED,
|
|
)
|
|
|
|
/datum/preference/choiced/random_body/create_default_value()
|
|
return RANDOM_DISABLED
|
|
|
|
/datum/preference/toggle/random_hardcore
|
|
category = PREFERENCE_CATEGORY_OOC_PREFS // BUBBER EDIT CHANGE - Original: PREFERENCE_CATEGORY_NON_CONTEXTUAL
|
|
savefile_key = "random_hardcore"
|
|
savefile_identifier = PREFERENCE_CHARACTER
|
|
can_randomize = FALSE
|
|
default_value = FALSE
|
|
|
|
/datum/preference/toggle/random_hardcore/apply_to_human(mob/living/carbon/human/target, value)
|
|
return
|
|
|
|
/datum/preference/toggle/random_hardcore/is_accessible(datum/preferences/preferences)
|
|
if (!..(preferences))
|
|
return FALSE
|
|
|
|
return preferences.parent && (preferences.parent.get_exp_living(pure_numeric = TRUE) >= PLAYTIME_HARDCORE_RANDOM)
|
|
|
|
/datum/preference/choiced/random_name
|
|
category = PREFERENCE_CATEGORY_NON_CONTEXTUAL
|
|
savefile_key = "random_name"
|
|
savefile_identifier = PREFERENCE_CHARACTER
|
|
can_randomize = FALSE
|
|
|
|
/datum/preference/choiced/random_name/apply_to_human(mob/living/carbon/human/target, value)
|
|
return
|
|
|
|
/datum/preference/choiced/random_name/init_possible_values()
|
|
return list(
|
|
RANDOM_ANTAG_ONLY,
|
|
RANDOM_DISABLED,
|
|
RANDOM_ENABLED,
|
|
)
|
|
|
|
/datum/preference/choiced/random_name/create_default_value()
|
|
return RANDOM_DISABLED
|