Adds bloodpacks for vampiric crew to loadout (#17201)

This commit is contained in:
Cameron Lennox
2025-02-23 10:56:15 -05:00
committed by GitHub
parent 484d74dd36
commit 7c19cdffdc
2 changed files with 13 additions and 0 deletions

View File

@@ -316,3 +316,8 @@ modular computers
display_name = "podzu music player"
path = /obj/item/walkpod
cost = 2
/datum/gear/utility/bloodbag //For your vampiric crew!
display_name = "blood bag (Randomized)"
path = /obj/item/reagent_containers/blood/random_bloodsucker
cost = 1

View File

@@ -109,3 +109,11 @@
desc = "Seems pretty useless... Maybe if there were a way to fill it?"
icon_state = "empty"
item_state = "bloodpack_empty"
/obj/item/reagent_containers/blood/random_bloodsucker
name = "Ration BloodPack"
desc = "A standard issue BloodPack Ration given to crew that require blood to be sustained!"
/obj/item/reagent_containers/blood/random_bloodsucker/Initialize()
blood_type = pick("A+", "A-", "B+", "B-", "O-", "O+", "AB+", "AB-")
. = ..()