Prep Work

This commit is contained in:
Zandario
2020-10-02 17:17:50 -05:00
parent da0c7a0ff2
commit bdd121cd81
35 changed files with 150 additions and 123 deletions
@@ -2276,7 +2276,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
boozepwr = 50
/datum/reagent/consumable/ethanol/species_drink/on_mob_life(mob/living/carbon/C)
if(C.dna.species && C.dna.species.species_type == species_required) //species have a species_type variable that refers to one of the drinks
if(C.dna.species && C.dna.species.species_category == species_required) //species have a species_category variable that refers to one of the drinks
quality = RACE_DRINK
else
C.adjust_disgust(disgust)
@@ -786,8 +786,8 @@
if(isjellyperson(H))
to_chat(H, "<span class='warning'>Your jelly shifts and morphs, turning you into another subspecies!</span>")
var/species_type = pick(subtypesof(/datum/species/jelly))
H.set_species(species_type)
var/species_category = pick(subtypesof(/datum/species/jelly))
H.set_species(species_category)
H.reagents.del_reagent(type)
switch(current_cycle)
@@ -801,8 +801,8 @@
if(prob(10))
to_chat(H, "<span class='warning'>[pick("You feel your internal organs turning into slime.", "You feel very slimelike.")]</span>")
if(20 to INFINITY)
var/species_type = pick(subtypesof(/datum/species/jelly))
H.set_species(species_type)
var/species_category = pick(subtypesof(/datum/species/jelly))
H.set_species(species_category)
H.reagents.del_reagent(type)
to_chat(H, "<span class='warning'>You've become \a jellyperson!</span>")