More outfits for observers (#34487)

* Observers on vacation.

* .

* Update preferences_setup.dm

* Change prob.

* Increase contrast.
This commit is contained in:
Hinaichigo
2023-07-03 19:58:20 -04:00
committed by GitHub
parent 2dac1884a1
commit aeda6ad835
3 changed files with 13 additions and 5 deletions

View File

@@ -527,12 +527,20 @@
preview_icon.Blend(new /icon('icons/mob/previewbg.dmi',preview_background), ICON_UNDERLAY) preview_icon.Blend(new /icon('icons/mob/previewbg.dmi',preview_background), ICON_UNDERLAY)
// Observers get tourist outfit. // Observers get a tourist or vacationer outfit.
else else
clothes_s = new /icon(uniform_dmi, "tourist_s") if (prob(100/3) || fat == "_fat") //Currently no fat sprites for vacationer outfits.
clothes_s.Blend(new /icon(feet_dmi, "black"), ICON_UNDERLAY) clothes_s = new /icon(uniform_dmi, "tourist_s")
clothes_s.Blend(new /icon('icons/mob/clothing_accessories.dmi', "wristwatch"), ICON_UNDERLAY) clothes_s.Blend(new /icon(feet_dmi, "black"), ICON_UNDERLAY)
clothes_s=blend_backpack(clothes_s,backbag,"satchel-norm",null,"courierbag") clothes_s.Blend(new /icon('icons/mob/clothing_accessories.dmi', "wristwatch"), ICON_UNDERLAY)
clothes_s=blend_backpack(clothes_s,backbag,"satchel-norm",null,"courierbag")
else
clothes_s = new /icon(uniform_dmi, "vacationer_[rand(1,3)]_s")
clothes_s.Blend(new /icon(feet_dmi, "vacationer"), ICON_UNDERLAY)
if (prob(50))
var/drink_icon = pick('icons/mob/in-hand/right/drinkingglass.dmi', 'icons/mob/in-hand/left/drinkingglass.dmi')
var/drink_icon_state = pick("coffee", "cafe_latte", "beer", "alebottle", "gargleblasterglass", "energy_drink", "sangria", "gintonicglass")
clothes_s.Blend(new /icon(drink_icon, drink_icon_state), ICON_OVERLAY)
if(disabilities & NEARSIGHTED) if(disabilities & NEARSIGHTED)
preview_icon.Blend(new /icon('icons/mob/eyes.dmi', "glasses"), ICON_OVERLAY) preview_icon.Blend(new /icon('icons/mob/eyes.dmi', "glasses"), ICON_OVERLAY)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 KiB

After

Width:  |  Height:  |  Size: 317 KiB