diff --git a/code/modules/mob/living/carbon/human/human_defines_vr.dm b/code/modules/mob/living/carbon/human/human_defines_vr.dm index d3bb4f0b57..f21caae5e7 100644 --- a/code/modules/mob/living/carbon/human/human_defines_vr.dm +++ b/code/modules/mob/living/carbon/human/human_defines_vr.dm @@ -6,4 +6,5 @@ var/wagging = 0 //UGH. var/flapping = 0 var/vantag_pref = VANTAG_NONE //What's my status? - var/impersonate_bodytype //For impersonating a bodytype \ No newline at end of file + var/impersonate_bodytype //For impersonating a bodytype + var/fruit_type = "apple" // Decides the frruit type. Not used outside of Alraunes \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/station/alraune.dm b/code/modules/mob/living/carbon/human/species/station/alraune.dm index db57812851..a52377f0b2 100644 --- a/code/modules/mob/living/carbon/human/species/station/alraune.dm +++ b/code/modules/mob/living/carbon/human/species/station/alraune.dm @@ -15,7 +15,7 @@ max_age = 250 health_hud_intensity = 1.5 base_species = SPECIES_ALRAUNE - selects_bodytype = 1 + selects_bodytype = TRUE body_temperature = T20C breath_type = "carbon_dioxide" diff --git a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm index 670d72ce3d..45c5f4b8f3 100644 --- a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm @@ -1,17 +1,17 @@ /datum/species //var/vore_numbing = 0 - var/gets_food_nutrition = 1 // If this is set to 0, the person can't get nutrition from food. + var/gets_food_nutrition = TRUE // If this is set to 0, the person can't get nutrition from food. var/metabolism = 0.0015 - var/lightweight = 0 //Oof! Nonhelpful bump stumbles. - var/trashcan = 0 //It's always sunny in the wrestling ring. + var/lightweight = FALSE //Oof! Nonhelpful bump stumbles. + var/trashcan = FALSE //It's always sunny in the wrestling ring. var/base_species = null // Unused outside of a few species - var/selects_bodytype = 0 // Allows the species to choose from body types intead of being forced to be just one. + var/selects_bodytype = FALSE // Allows the species to choose from body types intead of being forced to be just one. /datum/species/custom name = SPECIES_CUSTOM name_plural = "Custom" - selects_bodytype = 1 + selects_bodytype = TRUE base_species = SPECIES_HUMAN unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/punch, /datum/unarmed_attack/bite) diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm index 0b536e1fbb..5315840a82 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm @@ -15,7 +15,7 @@ brute_mod = 0.8 //About as tanky to brute as a Unathi. They'll probably snap and go feral when hurt though. burn_mod = 1.15 //As vulnerable to burn as a Tajara. base_species = "Xenochimera" - selects_bodytype = 1 + selects_bodytype = TRUE num_alternate_languages = 2 secondary_langs = list("Sol Common") diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 22b4bb8353..d5d6191d5c 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -22,7 +22,6 @@ var/tail_alt = 0 // Tail layer toggle. var/can_be_drop_prey = 0 var/can_be_drop_pred = 1 // Mobs are pred by default. - var/fruit_type = "apple" // Not used outside of Alraunes. This is on all /living just in case some other mob gets it or it's being bussed in an event. Mobs with fruit, anyone? // // Hook for generic creation of stuff on new creatures diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 2e82c615cc..a61c7c836d 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -2023,8 +2023,8 @@ self_emote_descriptor = list("grab", "pick", "snatch") assigned_proc = /mob/living/carbon/human/proc/use_reagent_implant_fruit_implant -/obj/item/weapon/implant/reagent_generator/fruit_implant/implanted(mob/living/carbon/source) - if(source.species.name != "Alraune") +/obj/item/weapon/implant/reagent_generator/fruit_implant/implanted(mob/living/carbon/human/source) + if(source.species.name != SPECIES_ALRAUNE) to_chat(source, "Perhaps using this implant as a non Alraune was a bad idea...") //You wasted it. Good job. return 1 processing_objects += src