Adds purchaseable Piano crates to cargo

Costs 150 cargo points, to deliver a largecrate infamous for their ability to make their contents lighter and ship better. When pried open the crate produces either a minimoog or space piano.
This commit is contained in:
spaghettiweaver
2020-04-23 00:28:03 -05:00
parent 2950b03e5a
commit f87c9e7b7e
2 changed files with 17 additions and 0 deletions
@@ -111,3 +111,13 @@
/obj/structure/largecrate/animal/chick
name = "chicken crate"
starts_with = list(/mob/living/simple_mob/animal/passive/chick = 5)
/obj/structure/largecrate/piano
name = "piano crate"
starts_with = list(/obj/structure/device/piano)
desc = "*Grand piano may end up being a minimoog."
/obj/structure/largecrate/piano/Initialize() //This is nessesary to get a random one each time.
starts_with = list(pick(/obj/structure/device/piano/minimoog,
/obj/structure/device/piano))
return ..()