mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-28 06:27:26 +01:00
Adds Characther Descriptors (Height and Build) (#22417)
* char descriptors * ok well it works somewhat * I LOVE FIXING SHIT OORAH * fixes * Update code/modules/mob/living/carbon/human/human_examine.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/mob/living/carbon/human/human_examine.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/mob/living/carbon/human/human_examine.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/client/preference/character.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/mob/living/carbon/human/human_defines.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/mob/living/carbon/human/human_examine.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/client/preference/link_processing.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * ok we love our fixes * Update SQL/updates/51-52.sql Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> * reverts and sql change to fix * yeppers * Update SQL/paradise_schema.sql Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> * aa's review * grammar * Update code/modules/client/preference/link_processing.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * improves grammar * Create 52-32.sql * lmao please dont look at the change for this * glob list * Update code/modules/mob/living/carbon/human/human_examine.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * y * mhmhmh * autodoc * grgrgrggrg contra review --------- Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
co-authored by
DGamerL
Henri215
AffectedArc07
Luc
parent
d898519286
commit
6f0a93c672
@@ -700,6 +700,16 @@
|
||||
if(new_relation)
|
||||
active_character.nanotrasen_relation = new_relation
|
||||
|
||||
if("physique")
|
||||
var/new_physique = input(user, "Choose your descriptor for how built your character is on glance.", "Character Preference") as null|anything in GLOB.character_physiques
|
||||
if(new_physique)
|
||||
active_character.physique = new_physique
|
||||
|
||||
if("height")
|
||||
var/new_height = input(user, "Choose your descriptor for how tall your character is on glance.", "Character Preference") as null|anything in GLOB.character_heights
|
||||
if(new_height)
|
||||
active_character.height = new_height
|
||||
|
||||
if("flavor_text")
|
||||
var/msg = input(usr,"Set the flavor text in your 'examine' verb. The flavor text should be a physical descriptor of your character at a glance. SFW Drawn Art of your character is acceptable.","Flavor Text",html_decode(active_character.flavor_text)) as message
|
||||
|
||||
|
||||
Reference in New Issue
Block a user