mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-26 10:03:45 +00:00
Adding vox reagents, removing Vox Delight.
This commit is contained in:
@@ -7,6 +7,21 @@
|
||||
hierarchy_type = /decl/hierarchy/outfit/vox
|
||||
flags = OUTFIT_HAS_BACKPACK
|
||||
|
||||
var/list/consumables = list(
|
||||
/obj/item/reagent_containers/food/drinks/flask/vox/protoslurry,
|
||||
/obj/item/reagent_containers/food/drinks/flask/vox/repairgel,
|
||||
/obj/item/reagent_containers/food/drinks/flask/vox/riaak
|
||||
)
|
||||
|
||||
/decl/hierarchy/outfit/vox/equip(mob/living/carbon/human/H, rank, assignment)
|
||||
. = ..()
|
||||
if(istype(H) && length(consumables))
|
||||
for(var/consumable in consumables)
|
||||
var/thing = new consumable
|
||||
if(!H.equip_to_storage(thing))
|
||||
qdel(thing)
|
||||
break
|
||||
|
||||
/decl/hierarchy/outfit/vox/survivor
|
||||
name = "Vox Survivor"
|
||||
belt = /obj/item/gun/launcher/spikethrower/small
|
||||
|
||||
Reference in New Issue
Block a user