Prep Work
This commit is contained in:
@@ -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>")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user