[SEMI-MODULAR] CUSTOMIZATION - Modular Augmentation system (#1000)

* limbs finished

* only styles left

* STYLESzz

* a

* UI tweaks

* more UI tweak

* Update preferences.dm

* cyborg limbs 2 stronk

* Validation

* aa

* Render key fix
This commit is contained in:
Azarak
2020-09-27 22:38:19 +01:00
committed by GitHub
parent afe3fefa6f
commit 6eef1d8849
32 changed files with 519 additions and 27 deletions
@@ -591,14 +591,22 @@ generate/load female uniform sprites matching all previously decided variables
for(var/X in bodyparts)
var/obj/item/bodypart/BP = X
. += "-[BP.body_zone]"
//SKYRAT EDIT REMOVAL BEGIN - CUSTOMIZATION
/*
if(BP.status == BODYPART_ORGANIC)
. += "-organic"
else
. += "-robotic"
*/
//SKYRAT EDIT REMOVAL END
if(BP.use_digitigrade)
. += "-digitigrade[BP.use_digitigrade]"
if(BP.dmg_overlay_type)
. += "-[BP.dmg_overlay_type]"
//SKYRAT EDIT ADDITION BEGIN - CUSTOMIZATION
if(BP.organic_render)
. += "-OR"
//SKYRAT EDIT ADDITION END
if(HAS_TRAIT(src, TRAIT_HUSK))
. += "-husk"