I'm spending too much time trying to fix something rejected.
This commit is contained in:
@@ -42,6 +42,7 @@ I'd like to point out from my calculations it'll take about 60-80 minutes to die
|
||||
G.health = 5
|
||||
G.melee_damage_lower = 0
|
||||
G.melee_damage_upper = 0
|
||||
G.obj_damage = 0
|
||||
G.deathmessage = "disappears as if it was never really there to begin with"
|
||||
G.incorporeal_move = 1
|
||||
G.alpha = 35
|
||||
|
||||
@@ -396,6 +396,7 @@
|
||||
catto.name = H.name
|
||||
catto.desc = "A cute catto! They remind you of [H] somehow."
|
||||
catto.color = "#[H.dna.features["mcolor"]]"
|
||||
catto.pseudo_death = TRUE
|
||||
H.forceMove(catto)
|
||||
log_game("FERMICHEM: [H] ckey: [H.key] has been made into a cute catto.")
|
||||
//Just to deal with rascally ghosts
|
||||
@@ -403,13 +404,10 @@
|
||||
//catto.health = 1000 //To simulate fake death, while preventing ghosts escaping.
|
||||
|
||||
/datum/reagent/fermi/secretcatchem/on_mob_life(mob/living/carbon/H)
|
||||
/*
|
||||
if(catto.health <= 950) //So the dead can't ghost
|
||||
catto.icon_state = "custom_cat_dead"
|
||||
catto.Stun(1000)
|
||||
catto.canmove = 0
|
||||
*/
|
||||
if(prob(5))
|
||||
if(catto.health <= 0) //So the dead can't ghost
|
||||
if(prob(10))
|
||||
to_chat(H, "<span class='notice'>You feel your body start to slowly shift back from it's dead form.</span>")
|
||||
else if(prob(5))
|
||||
playsound(get_turf(catto), 'modular_citadel/sound/voice/merowr.ogg', 50, 1, -1)
|
||||
catto.say("lets out a meowrowr!*")
|
||||
..()
|
||||
|
||||
@@ -467,7 +467,7 @@
|
||||
var/additions = list("aluminium", "silver", "gold", "plasma", "silicon", "bluespace", "uranium", "milk")
|
||||
required_reagents[pick(additions)] = rand(1, 5)//weird
|
||||
|
||||
/datum/chemical_reaction/fermi/secretcatchem/FermiFinish(datum/reagents/holder, var/atom/my_atom)//Strange how this doesn't work but the other does.
|
||||
/datum/chemical_reaction/fermi/secretcatchem/FermiFinish(datum/reagents/holder, var/atom/my_atom)
|
||||
SSblackbox.record_feedback("tally", "catgirlium")//log
|
||||
|
||||
/datum/chemical_reaction/fermi/secretcatchem/FermiExplode(datum/reagents, var/atom/my_atom, volume, temp, pH)
|
||||
@@ -476,7 +476,7 @@
|
||||
for(var/mob/M in seen)
|
||||
to_chat(M, "<span class='warning'>The reaction suddenly gives out a meow, condensing into a chemcat!</b></span>")//meow!
|
||||
playsound(get_turf(my_atom), 'modular_citadel/sound/voice/merowr.ogg', 50, 1, -1)
|
||||
catto.name = "FermiCat"
|
||||
catto.desc = "A cute Fermichem cat, created by a lot of compicated and confusing chemistry!"
|
||||
catto.name = "Chemcat"
|
||||
catto.desc = "A cute chem cat, created by a lot of compicated and confusing chemistry!"
|
||||
catto.color = "#770000"
|
||||
my_atom.reagents.remove_any(10)
|
||||
|
||||
@@ -34,7 +34,8 @@
|
||||
if(!I)
|
||||
user.put_in_active_hand(src)
|
||||
|
||||
/obj/item/FermiChem/pHbooklet/MouseDrop(atom/over_object, mob/living/user)
|
||||
/obj/item/FermiChem/pHbooklet/MouseDrop()
|
||||
var/mob/living/user = usr
|
||||
if(numberOfPages >= 1)
|
||||
var/obj/item/FermiChem/pHpaper/P = new /obj/item/FermiChem/pHpaper
|
||||
P.add_fingerprint(user)
|
||||
|
||||
Reference in New Issue
Block a user