mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
Update icon fixes
This commit is contained in:
@@ -368,7 +368,7 @@
|
||||
mymob.blind = new /obj/screen()
|
||||
mymob.blind.icon = 'icons/mob/screen1_full.dmi'
|
||||
mymob.blind.icon_state = "blackimageoverlay"
|
||||
mymob.blind.name = " "
|
||||
mymob.blind.name = "blind"
|
||||
mymob.blind.screen_loc = "1,1"
|
||||
mymob.blind.mouse_opacity = 0
|
||||
mymob.blind.layer = 0
|
||||
|
||||
@@ -342,3 +342,9 @@
|
||||
icon_state = "mucus"
|
||||
random_icon_states = list("mucus")
|
||||
var/list/datum/disease2/disease/virus2 = list()
|
||||
var/dry=0 // Keeps the lag down
|
||||
|
||||
/obj/effect/decal/cleanable/mucus/New()
|
||||
spawn(DRYING_TIME * 2)
|
||||
dry=1
|
||||
|
||||
|
||||
@@ -1343,9 +1343,7 @@ mob/living/carbon/human/yank_out_object()
|
||||
if(species.name=="Slime People")
|
||||
dna.mutantrace = "slime"
|
||||
|
||||
if(mutations.len==0)
|
||||
mutations=species.default_mutations
|
||||
|
||||
mutations+=species.default_mutations
|
||||
|
||||
spawn(0)
|
||||
update_icons()
|
||||
|
||||
@@ -267,9 +267,6 @@ proc/get_damage_icon_part(damage_state, body_part)
|
||||
else
|
||||
temp = part.get_icon()
|
||||
|
||||
if(part.status & ORGAN_ROBOT)
|
||||
temp.GrayScale()
|
||||
|
||||
if(part.status & ORGAN_DEAD)
|
||||
temp.ColorTone(necrosis_color_mod)
|
||||
temp.SetIntensity(0.7)
|
||||
|
||||
@@ -174,6 +174,7 @@
|
||||
attack_verb = "punch"
|
||||
path = /mob/living/carbon/human/grey
|
||||
darksight = 5 // BOOSTED from 2
|
||||
eyes = "grey_eyes_s"
|
||||
max_hurt_damage = 3 // From 5 (for humans)
|
||||
default_mutations=list(mRemotetalk) // TK is also another candidate, but TK is overpowered as fuck.
|
||||
|
||||
|
||||
@@ -625,6 +625,8 @@
|
||||
|
||||
/datum/organ/external/get_icon(gender="",isFat=0)
|
||||
//stand_icon = new /icon(icobase, "torso_[g][fat?"_fat":""]")
|
||||
if (status & ORGAN_ROBOT)
|
||||
return new /icon('icons/mob/human_races/robotic.dmi', "[icon_name][gender ? "_[gender]" : ""]")
|
||||
if(gender)
|
||||
gender="_[gender]"
|
||||
var/fat=""
|
||||
|
||||
@@ -361,6 +361,14 @@
|
||||
if (prob(30))
|
||||
mob.jitteriness += 10
|
||||
|
||||
/datum/disease2/effect/drunk
|
||||
name = "Glasgow Syndrome"
|
||||
stage = 2
|
||||
activate(var/mob/living/carbon/mob,var/multiplier)
|
||||
mob << "<span class='notice'>You feel like you had one hell of a party!</span>"
|
||||
if (mob.reagents.get_reagent_amount("ethanol") < 325)
|
||||
mob.reagents.add_reagent("ethanol", 5*multiplier)
|
||||
|
||||
////////////////////////STAGE 1/////////////////////////////////
|
||||
|
||||
/datum/disease2/effect/sneeze
|
||||
@@ -369,8 +377,13 @@
|
||||
activate(var/mob/living/carbon/mob,var/multiplier)
|
||||
mob.say("*sneeze")
|
||||
if (prob(50))
|
||||
var/obj/effect/decal/cleanable/mucus/M = new(get_turf(mob))
|
||||
M.virus2 = virus_copylist(mob.virus2)
|
||||
var/obj/effect/decal/cleanable/mucus/M= locate(/obj/effect/decal/cleanable/mucus) in get_turf(mob)
|
||||
if(M==null)
|
||||
M = new(get_turf(mob))
|
||||
else
|
||||
if(M.dry)
|
||||
M.dry=0
|
||||
M.virus2 |= virus_copylist(mob.virus2)
|
||||
|
||||
/datum/disease2/effect/gunck
|
||||
name = "Flemmingtons"
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Reference in New Issue
Block a user