mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 06:00:23 +01:00
Merge pull request #2070 from Ketrai/master
Adds 4 new crates for the 4 primal races
This commit is contained in:
@@ -3,4 +3,32 @@
|
||||
cost = 200 //You're getting 22 birds. Of course it's going to be a lot!
|
||||
containertype = /obj/structure/largecrate/birds
|
||||
containername = "Bird crate"
|
||||
access = access_hydroponics
|
||||
access = access_hydroponics
|
||||
|
||||
/datum/supply_packs/hydro/sobaka
|
||||
name = "Sobaka crate"
|
||||
contains = list (/obj/item/weapon/storage/box/monkeycubes/sobakacubes)
|
||||
cost = 20
|
||||
containertype = /obj/structure/closet/crate/freezer
|
||||
containername = "Sobaka crate"
|
||||
|
||||
/datum/supply_packs/hydro/saru
|
||||
name = "Saru crate"
|
||||
contains = list (/obj/item/weapon/storage/box/monkeycubes/sarucubes)
|
||||
cost = 20
|
||||
containertype = /obj/structure/closet/crate/freezer
|
||||
containername = "Saru crate"
|
||||
|
||||
/datum/supply_packs/hydro/sparra
|
||||
name = "Sparra crate"
|
||||
contains = list (/obj/item/weapon/storage/box/monkeycubes/sparracubes)
|
||||
cost = 20
|
||||
containertype = /obj/structure/closet/crate/freezer
|
||||
containername = "Sparra crate"
|
||||
|
||||
/datum/supply_packs/hydro/wolpin
|
||||
name = "Wolpin crate"
|
||||
contains = list (/obj/item/weapon/storage/box/monkeycubes/wolpincubes)
|
||||
cost = 20
|
||||
containertype = /obj/structure/closet/crate/freezer
|
||||
containername = "Wolpin crate"
|
||||
|
||||
@@ -189,3 +189,35 @@
|
||||
..()
|
||||
reagents.add_reagent("protein", 4)
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sobakacube
|
||||
name = "sobaka cube"
|
||||
monkey_type = "Sobaka"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/sobakacube
|
||||
name = "sobaka cube"
|
||||
monkey_type = "Sobaka"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sarucube
|
||||
name = "saru cube"
|
||||
monkey_type = "Saru"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/sarucube
|
||||
name = "saru cube"
|
||||
monkey_type = "Saru"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/sparracube
|
||||
name = "sparra cube"
|
||||
monkey_type = "Sparra"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/sparracube
|
||||
name = "sparra cube"
|
||||
monkey_type = "Sparra"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wolpincube
|
||||
name = "wolpin cube"
|
||||
monkey_type = "Wolpin"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/wolpincube
|
||||
name = "wolpin cube"
|
||||
monkey_type = "Wolpin"
|
||||
|
||||
@@ -242,3 +242,40 @@ Swimsuits, for general use, to avoid arriving to work with your swimsuit.
|
||||
/obj/item/weapon/storage/box/fluff/swimsuit/medical
|
||||
name = "Medical Swimsuit capsule"
|
||||
has_items = list(/obj/item/clothing/under/swimsuit/fluff/medical)
|
||||
|
||||
//Monkey boxes for the new primals we have
|
||||
/obj/item/weapon/storage/box/monkeycubes/sobakacubes
|
||||
name = "sobaka cube box"
|
||||
desc = "Drymate brand sobaka cubes. Just add water!"
|
||||
|
||||
/obj/item/weapon/storage/box/monkeycubes/sobakacubes/New()
|
||||
..()
|
||||
for(var/i = 1 to 4)
|
||||
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/sobakacube(src)
|
||||
|
||||
/obj/item/weapon/storage/box/monkeycubes/sarucubes
|
||||
name = "saru cube box"
|
||||
desc = "Drymate brand saru cubes. Just add water!"
|
||||
|
||||
/obj/item/weapon/storage/box/monkeycubes/sarucubes/New()
|
||||
..()
|
||||
for(var/i = 1 to 4)
|
||||
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/sarucube(src)
|
||||
|
||||
/obj/item/weapon/storage/box/monkeycubes/sparracubes
|
||||
name = "sparra cube box"
|
||||
desc = "Drymate brand sparra cubes. Just add water!"
|
||||
|
||||
/obj/item/weapon/storage/box/monkeycubes/sparracubes/New()
|
||||
..()
|
||||
for(var/i = 1 to 4)
|
||||
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/sparracube(src)
|
||||
|
||||
/obj/item/weapon/storage/box/monkeycubes/wolpincubes
|
||||
name = "wolpin cube box"
|
||||
desc = "Drymate brand wolpin cubes. Just add water!"
|
||||
|
||||
/obj/item/weapon/storage/box/monkeycubes/wolpincubes/New()
|
||||
..()
|
||||
for(var/i = 1 to 4)
|
||||
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/wolpincube(src)
|
||||
|
||||
Reference in New Issue
Block a user