Added icons, fixes, special cases resolved

This commit is contained in:
Arkatos1
2019-05-02 18:28:39 +02:00
parent 2e4de13f0f
commit fedb9c1770
28 changed files with 106 additions and 54 deletions
@@ -1,4 +1,4 @@
#define EGG_INCUBATION_TIME 120
#define EGG_INCUBATION_TIME 10
/mob/living/simple_animal/hostile/headcrab
name = "headslug"
@@ -59,9 +59,6 @@
return
target.attack_animal(src)
/obj/item/organ/internal/body_egg/changeling_egg
name = "changeling egg"
desc = "Twitching and disgusting."
@@ -91,7 +88,12 @@
if(origin.changeling.can_absorb_dna(M, owner))
origin.changeling.absorb_dna(owner, M)
origin.changeling.purchasedpowers += new /datum/action/changeling/humanform(null)
var/datum/action/changeling/humanform/HF = new
HF.Grant(M)
for(var/power in origin.changeling.purchasedpowers)
var/datum/action/changeling/S = power
if(istype(S) && S.needs_button)
S.Grant(M)
M.key = origin.key
owner.gib()