[MIRROR] Facility event stuff (#8444)

Co-authored-by: SatinIsle <98125273+SatinIsle@users.noreply.github.com>
Co-authored-by: CHOMPStation2 <chompsation2@gmail.com>
This commit is contained in:
CHOMPStation2
2024-06-03 08:42:12 -07:00
committed by GitHub
parent a4bd7bac3e
commit 036efba372
11 changed files with 146 additions and 0 deletions

View File

@@ -291,6 +291,14 @@
base_reagent = /obj/item/weapon/potion_base/ichor
product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph
/obj/item/weapon/potion_material/glamour_shard
name = "glamour_shard"
desc = "A shard of hardened white crystal that seems to change shapes as you hold it."
icon = 'icons/obj/chemical_potionreagents.dmi'
icon_state = "glamour_shard"
base_reagent = /obj/item/weapon/potion_base/aqua_regia
product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/glamour
//base ingredients
/obj/item/weapon/potion_base/aqua_regia

View File

@@ -315,3 +315,18 @@
log_debug("polymorph tf_type pass")
var/new_mob = new tf_type(get_turf(target))
return new_mob
/datum/reagent/glamour
name = "Glamour"
id = "glamour"
description = "This material is from somewhere else, just being near produces changes."
taste_description = "change"
reagent_state = LIQUID
color = "#ffffff"
scannable = 1
/datum/reagent/glamour/affect_blood(var/mob/living/carbon/target, var/removed)
target.verbs |= /mob/living/carbon/human/proc/enter_cocoon
target.bloodstr.clear_reagents() //instantly clears reagents afterwards
target.ingested.clear_reagents()
target.touching.clear_reagents()