mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-28 14:37:27 +01:00
@@ -85,12 +85,13 @@
|
||||
var/turf/T = get_turf(src)
|
||||
if(T && T.movement_cost)
|
||||
tally += T.movement_cost
|
||||
|
||||
|
||||
if(CE_SPEEDBOOST in chem_effects)
|
||||
if (tally >= 0) // cut any penalties in half
|
||||
tally = tally/2
|
||||
tally -= 1 // give 'em a buff on top.
|
||||
return (tally+config.human_delay)
|
||||
|
||||
return (tally+config.human_delay)
|
||||
|
||||
/mob/living/carbon/human/Process_Spacemove(var/check_drift = 0)
|
||||
//Can we act?
|
||||
|
||||
@@ -363,7 +363,36 @@ var/global/list/damage_icon_parts = list()
|
||||
if(update_icons) update_icons()
|
||||
return
|
||||
|
||||
overlays_standing[HAIR_LAYER] = head_organ.get_hair_icon()
|
||||
//base icons
|
||||
var/icon/face_standing = new /icon('icons/mob/human_face.dmi',"bald_s")
|
||||
|
||||
if(f_style)
|
||||
var/datum/sprite_accessory/facial_hair_style = facial_hair_styles_list[f_style]
|
||||
if(facial_hair_style && facial_hair_style.species_allowed && (src.species.get_bodytype(src) in facial_hair_style.species_allowed))
|
||||
var/icon/facial_s = new/icon("icon" = facial_hair_style.icon, "icon_state" = "[facial_hair_style.icon_state]_s")
|
||||
if(facial_hair_style.do_colouration)
|
||||
facial_s.Blend(rgb(r_facial, g_facial, b_facial), ICON_ADD)
|
||||
|
||||
face_standing.Blend(facial_s, ICON_OVERLAY)
|
||||
|
||||
if(h_style && !(head && (head.flags_inv & BLOCKHEADHAIR)))
|
||||
var/datum/sprite_accessory/hair_style = hair_styles_list[h_style]
|
||||
if(hair_style && (src.species.get_bodytype(src) in hair_style.species_allowed))
|
||||
var/icon/hair_s = new/icon("icon" = hair_style.icon, "icon_state" = "[hair_style.icon_state]_s")
|
||||
if(hair_style.do_colouration)
|
||||
hair_s.Blend(rgb(r_hair, g_hair, b_hair), ICON_ADD)
|
||||
|
||||
face_standing.Blend(hair_s, ICON_OVERLAY)
|
||||
|
||||
// VOREStation Edit - START
|
||||
var/icon/ears_s = get_ears_overlay()
|
||||
if (ears_s)
|
||||
face_standing.Blend(ears_s, ICON_OVERLAY)
|
||||
// VOREStation Edit - END
|
||||
if(head_organ.nonsolid)
|
||||
face_standing += rgb(,,,120)
|
||||
|
||||
overlays_standing[HAIR_LAYER] = image(face_standing)
|
||||
|
||||
if(update_icons) update_icons()
|
||||
|
||||
|
||||
@@ -46,19 +46,16 @@
|
||||
/datum/sprite_accessory/hair
|
||||
|
||||
icon = 'icons/mob/Human_face.dmi' // default icon for all hairs
|
||||
var/veryshort
|
||||
|
||||
bald
|
||||
name = "Bald"
|
||||
icon_state = "bald"
|
||||
gender = MALE
|
||||
species_allowed = list("Human","Unathi")
|
||||
veryshort=1
|
||||
|
||||
short
|
||||
name = "Short Hair" // try to capatilize the names please~
|
||||
icon_state = "hair_a" // you do not need to define _s or _l sub-states, game automatically does this for you
|
||||
veryshort=1
|
||||
|
||||
short2
|
||||
name = "Short Hair 2"
|
||||
@@ -99,12 +96,10 @@
|
||||
halfbang
|
||||
name = "Half-banged Hair"
|
||||
icon_state = "hair_halfbang"
|
||||
veryshort=1
|
||||
|
||||
halfbangalt
|
||||
name = "Half-banged Hair Alt"
|
||||
icon_state = "hair_halfbang_alt"
|
||||
veryshort=1
|
||||
|
||||
ponytail1
|
||||
name = "Ponytail 1"
|
||||
@@ -172,7 +167,6 @@
|
||||
sleeze
|
||||
name = "Sleeze"
|
||||
icon_state = "hair_sleeze"
|
||||
veryshort=1
|
||||
|
||||
quiff
|
||||
name = "Quiff"
|
||||
@@ -223,38 +217,31 @@
|
||||
bowl
|
||||
name = "Bowl"
|
||||
icon_state = "hair_bowlcut"
|
||||
veryshort=1
|
||||
|
||||
buzz
|
||||
name = "Buzzcut"
|
||||
icon_state = "hair_buzzcut"
|
||||
species_allowed = list("Human","Unathi")
|
||||
veryshort=1
|
||||
|
||||
shavehair
|
||||
name = "Shaved Hair"
|
||||
icon_state = "hair_shaved"
|
||||
veryshort=1
|
||||
|
||||
crew
|
||||
name = "Crewcut"
|
||||
icon_state = "hair_crewcut"
|
||||
veryshort=1
|
||||
|
||||
combover
|
||||
name = "Combover"
|
||||
icon_state = "hair_combover"
|
||||
veryshort=1
|
||||
|
||||
father
|
||||
name = "Father"
|
||||
icon_state = "hair_father"
|
||||
veryshort=1
|
||||
|
||||
reversemohawk
|
||||
name = "Reverse Mohawk"
|
||||
icon_state = "hair_reversemohawk"
|
||||
veryshort=1
|
||||
|
||||
devillock
|
||||
name = "Devil Lock"
|
||||
@@ -283,17 +270,14 @@
|
||||
rows
|
||||
name = "Rows"
|
||||
icon_state = "hair_rows1"
|
||||
veryshort=1
|
||||
|
||||
rows2
|
||||
name = "Rows 2"
|
||||
icon_state = "hair_rows2"
|
||||
veryshort=1
|
||||
|
||||
sargeant
|
||||
name = "Flat Top"
|
||||
icon_state = "hair_sargeant"
|
||||
veryshort=1
|
||||
|
||||
emo
|
||||
name = "Emo"
|
||||
@@ -330,7 +314,6 @@
|
||||
fag
|
||||
name = "Flow Hair"
|
||||
icon_state = "hair_f"
|
||||
veryshort=1
|
||||
|
||||
feather
|
||||
name = "Feather"
|
||||
@@ -397,13 +380,11 @@
|
||||
skinhead
|
||||
name = "Skinhead"
|
||||
icon_state = "hair_skinhead"
|
||||
veryshort=1
|
||||
|
||||
balding
|
||||
name = "Balding Hair"
|
||||
icon_state = "hair_e"
|
||||
gender = MALE
|
||||
veryshort=1
|
||||
gender = MALE // turnoff!
|
||||
|
||||
familyman
|
||||
name = "The Family Man"
|
||||
@@ -483,7 +464,6 @@
|
||||
shortbangs
|
||||
name = "Short Bangs"
|
||||
icon_state = "hair_shortbangs"
|
||||
veryshort=1
|
||||
|
||||
halfshaved
|
||||
name = "Half-Shaved Emo"
|
||||
@@ -505,24 +485,20 @@
|
||||
name = "Low Fade"
|
||||
icon_state = "hair_lowfade"
|
||||
gender = MALE
|
||||
veryshort=1
|
||||
|
||||
medfade
|
||||
name = "Medium Fade"
|
||||
icon_state = "hair_medfade"
|
||||
veryshort=1
|
||||
|
||||
highfade
|
||||
name = "High Fade"
|
||||
icon_state = "hair_highfade"
|
||||
gender = MALE
|
||||
veryshort=1
|
||||
|
||||
baldfade
|
||||
name = "Balding Fade"
|
||||
icon_state = "hair_baldfade"
|
||||
gender = MALE
|
||||
veryshort=1
|
||||
|
||||
nofade
|
||||
name = "Regulation Cut"
|
||||
@@ -533,13 +509,11 @@
|
||||
name = "Trimmed Flat Top"
|
||||
icon_state = "hair_trimflat"
|
||||
gender = MALE
|
||||
veryshort=1
|
||||
|
||||
trimmed
|
||||
name = "Trimmed"
|
||||
icon_state = "hair_trimmed"
|
||||
gender = MALE
|
||||
veryshort=1
|
||||
|
||||
tightbun
|
||||
name = "Tight Bun"
|
||||
@@ -578,8 +552,8 @@
|
||||
shaved
|
||||
name = "Shaved"
|
||||
icon_state = "bald"
|
||||
species_allowed = list("Human","Unathi","Tajara","Skrell", "Machine","Teshari", "Vox")
|
||||
gender = NEUTER
|
||||
species_allowed = list("Human","Unathi","Tajara","Skrell", "Machine","Teshari", "Vox")
|
||||
|
||||
watson
|
||||
name = "Watson Mustache"
|
||||
@@ -744,14 +718,15 @@
|
||||
skr_tentacle_m
|
||||
name = "Skrell Male Tentacles"
|
||||
icon_state = "skrell_hair_m"
|
||||
gender = MALE
|
||||
species_allowed = list("Skrell")
|
||||
gender = MALE
|
||||
|
||||
skr_tentacle_f
|
||||
name = "Skrell Female Tentacles"
|
||||
icon_state = "skrell_hair_f"
|
||||
gender = FEMALE
|
||||
species_allowed = list("Skrell")
|
||||
gender = FEMALE
|
||||
|
||||
//Tajaran hairstyles
|
||||
taj_ears
|
||||
name = "Tajaran Ears"
|
||||
|
||||
Reference in New Issue
Block a user