deluxe plushie box

This commit is contained in:
BongaTheProto
2023-02-23 23:35:06 -05:00
parent b5d8813d54
commit 9e21a4feda
2 changed files with 17 additions and 0 deletions
@@ -253,3 +253,16 @@
// Set flavor text
name = "broken hand mirror"
desc = "You won\'t get much use out of it."
/obj/item/choice_beacon/box/plushie/deluxe
name = "Deluxe choice box (plushie)"
desc = "Using the power of quantum entanglement, this box contains five times every plush, until the moment it is opened!"
var/uses = 5
/obj/item/choice_beacon/box/plushie/deluxe/spawn_option(choice, mob/living/M)
//I don't wanna recode two different procs just for it to do the same as doing this
if(uses > 1)
var/obj/item/choice_beacon/box/plushie/deluxe/replace = new
replace.uses = uses - 1
M.put_in_hands(replace)
. = ..()