mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[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:
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user