mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-30 08:39:12 +01:00
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:
@@ -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 ..()
|
||||
Reference in New Issue
Block a user