mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
Bluespace Harvester: Loot changes, Events, and more (#27438)
* Description, vars * Lootpools and item spawning * Automatic spawning, Motherlode * PBJ Bag, Proper dirty probability * Added more items to organic lootpool * BSH Events * Event condensing, product var fix * Spawn location condensing Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> * Postclean * Event list relocation, some announcement changes. * Motherlode announcement over radio instead of announcement * Created parent type for engineering events * Motherlode spawn location optimization and turf selection * More efficient rarity picking * Adjusted lootpool * Adjusted ruins that use BSH loot pools * Excess Spacing Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> * Comment Format Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> * Comment Format Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> * Lootpool comments * Made syndie donk rare * Migrated lootpools * Map fixes * fix up maps * Repaths a couple map things * Engineering event documentation and cleanup * Product documentation, tap location, formatting * Nulled var on destroy, documentation * Handles not finding a valid spawn location * Error fixes * Fixes runtime if no NAD spawn points. --------- Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Co-authored-by: warriorstar-orion <orion@snowfrost.garden>
This commit is contained in:
co-authored by
Contrabang
1080pCat
warriorstar-orion
parent
57c0d13619
commit
1c1eb2d3f7
@@ -2,10 +2,11 @@
|
||||
name = "bluespace harvester reward spawner"
|
||||
spawn_loot_count = 1
|
||||
|
||||
/obj/effect/spawner/random/bluespace_tap/hat
|
||||
name = "exotic hat"
|
||||
// Common clothing pool
|
||||
/obj/effect/spawner/random/bluespace_tap/clothes_common
|
||||
name = "exotic common clothing"
|
||||
loot = list(
|
||||
/obj/item/clothing/head/collectable/chef, //same weighing on all of them
|
||||
/obj/item/clothing/head/collectable/chef,
|
||||
/obj/item/clothing/head/collectable/paper,
|
||||
/obj/item/clothing/head/collectable/tophat,
|
||||
/obj/item/clothing/head/collectable/captain,
|
||||
@@ -13,9 +14,7 @@
|
||||
/obj/item/clothing/head/collectable/welding,
|
||||
/obj/item/clothing/head/collectable/flatcap,
|
||||
/obj/item/clothing/head/collectable/pirate,
|
||||
/obj/item/clothing/head/collectable/kitty,
|
||||
/obj/item/clothing/head/crown/fancy,
|
||||
/obj/item/clothing/head/collectable/rabbitears,
|
||||
/obj/item/clothing/head/collectable/wizard,
|
||||
/obj/item/clothing/head/collectable/hardhat,
|
||||
/obj/item/clothing/head/collectable/hos,
|
||||
@@ -25,90 +24,198 @@
|
||||
/obj/item/clothing/head/collectable/police,
|
||||
/obj/item/clothing/head/collectable/slime,
|
||||
/obj/item/clothing/head/collectable/xenom,
|
||||
/obj/item/clothing/head/collectable/petehat
|
||||
/obj/item/clothing/head/collectable/petehat,
|
||||
/obj/item/clothing/under/retro/medical,
|
||||
/obj/item/clothing/under/retro/engineering,
|
||||
/obj/item/clothing/under/retro/science,
|
||||
/obj/item/clothing/under/retro/security,
|
||||
/obj/item/clothing/under/costume/captain_fly,
|
||||
/obj/item/clothing/under/costume/mankini,
|
||||
/obj/item/clothing/under/costume/janimaid,
|
||||
/obj/item/clothing/under/costume/psyjump
|
||||
)
|
||||
|
||||
|
||||
/obj/effect/spawner/random/bluespace_tap/cultural
|
||||
name = "cultural artifacts"
|
||||
// Uncommon Clothing Pool
|
||||
/obj/effect/spawner/random/bluespace_tap/clothes_uncommon
|
||||
name = "exotic uncommon clothing"
|
||||
loot = list(
|
||||
/obj/vehicle/space/speedbike/red = 10,
|
||||
/obj/item/grenade/clusterbuster/honk = 10,
|
||||
/obj/item/toy/katana = 10,
|
||||
/obj/item/stack/tile/brass/fifty = 20,
|
||||
/obj/item/stack/sheet/mineral/abductor/fifty = 20,
|
||||
/obj/item/sord = 20,
|
||||
/obj/item/toy/syndicateballoon = 15,
|
||||
/obj/item/lighter/zippo/gonzofist = 5,
|
||||
/obj/item/lighter/zippo/engraved = 5,
|
||||
/obj/item/lighter/zippo/nt_rep = 5,
|
||||
/obj/item/gun/projectile/automatic/c20r/toy = 1,
|
||||
/obj/item/gun/projectile/automatic/l6_saw/toy = 1,
|
||||
/obj/item/gun/projectile/automatic/toy/pistol = 2,
|
||||
/obj/item/gun/projectile/automatic/toy/pistol/enforcer = 1,
|
||||
/obj/item/gun/projectile/shotgun/toy = 1,
|
||||
/obj/item/gun/projectile/shotgun/toy/crossbow = 1,
|
||||
/obj/item/gun/projectile/shotgun/toy/tommygun = 1,
|
||||
/obj/item/gun/projectile/automatic/sniper_rifle/toy = 1,
|
||||
/obj/item/dualsaber/toy = 5,
|
||||
/obj/machinery/snow_machine = 10,
|
||||
/obj/item/clothing/head/kitty = 5,
|
||||
/obj/item/coin/antagtoken = 5,
|
||||
/obj/item/toy/prizeball/action_figure = 15,
|
||||
/obj/item/toy/prizeball/therapy = 10,
|
||||
/obj/item/bedsheet/patriot = 2,
|
||||
/obj/item/bedsheet/rainbow = 2,
|
||||
/obj/item/bedsheet/captain = 2,
|
||||
/obj/item/bedsheet/centcom = 1, //mythic rare rarity
|
||||
/obj/item/bedsheet/syndie = 2,
|
||||
/obj/item/bedsheet/cult = 2,
|
||||
/obj/item/bedsheet/wiz = 2,
|
||||
/obj/item/stack/sheet/mineral/tranquillite/fifty = 3,
|
||||
/obj/item/clothing/gloves/combat = 5,
|
||||
/obj/item/blank_tarot_card = 5,
|
||||
/obj/item/tarot_card_pack = 5,
|
||||
/obj/item/tarot_card_pack/jumbo = 3,
|
||||
/obj/item/tarot_card_pack/mega = 2
|
||||
/obj/item/clothing/head/collectable/kitty,
|
||||
/obj/item/clothing/head/collectable/rabbitears,
|
||||
/obj/item/clothing/suit/armor/vest,
|
||||
/obj/item/clothing/suit/armor/vest/bloody,
|
||||
/obj/item/clothing/suit/armor/riot,
|
||||
/obj/item/clothing/suit/armor/riot/knight,
|
||||
/obj/item/clothing/suit/armor/vest/durathread,
|
||||
/obj/item/clothing/suit/armor/bulletproof,
|
||||
/obj/item/clothing/suit/storage/iaa/blackjacket/armored,
|
||||
/obj/item/clothing/suit/hooded/goliath,
|
||||
/obj/item/clothing/suit/armor/bone,
|
||||
/obj/item/clothing/under/chameleon,
|
||||
/obj/item/clothing/glasses/chameleon,
|
||||
/obj/item/clothing/gloves/chameleon,
|
||||
/obj/item/clothing/head/chameleon,
|
||||
/obj/item/clothing/mask/chameleon,
|
||||
/obj/item/clothing/mask/chameleon/voice_change,
|
||||
/obj/item/clothing/shoes/chameleon,
|
||||
/obj/item/clothing/shoes/chameleon/noslip,
|
||||
/obj/item/storage/belt/chameleon,
|
||||
/obj/item/clothing/head/helmet,
|
||||
/obj/item/clothing/head/helmet/riot,
|
||||
/obj/item/clothing/head/helmet/riot/knight,
|
||||
/obj/item/clothing/head/helmet/alt
|
||||
)
|
||||
|
||||
/obj/effect/spawner/random/bluespace_tap/organic
|
||||
name = "organic objects"
|
||||
// Rare clothing pool
|
||||
/obj/effect/spawner/random/bluespace_tap/clothes_rare
|
||||
name = "exotic rare clothing"
|
||||
loot = list(
|
||||
/obj/item/seeds/random/labelled = 50,
|
||||
/obj/item/guardiancreator/biological = 5,
|
||||
/obj/item/organ/internal/vocal_cords/adamantine = 15,
|
||||
/obj/item/storage/pill_bottle/random_meds/labelled = 25,
|
||||
/obj/item/reagent_containers/glass/bottle/reagent/omnizine = 15,
|
||||
/obj/item/dnainjector/telemut = 5,
|
||||
/obj/item/dnainjector/small_size = 5,
|
||||
/obj/item/dnainjector/morph = 5,
|
||||
/obj/item/dnainjector/regenerate = 5,
|
||||
/mob/living/simple_animal/pet/dog/corgi/ = 5,
|
||||
/mob/living/simple_animal/pet/cat = 5,
|
||||
/mob/living/simple_animal/pet/dog/fox/ = 5,
|
||||
/mob/living/simple_animal/pet/penguin/baby = 5,
|
||||
/mob/living/simple_animal/pig = 5,
|
||||
/obj/item/slimepotion/sentience = 5,
|
||||
/obj/item/clothing/mask/cigarette/cigar/havana = 3,
|
||||
/obj/item/stack/sheet/mineral/bananium/fifty = 2, //bananas are organic, clearly.
|
||||
/obj/item/storage/box/monkeycubes = 5,
|
||||
/obj/item/stack/tile/carpet/twenty = 10,
|
||||
/obj/item/stack/tile/carpet/black/twenty = 10,
|
||||
/obj/item/soap/deluxe = 5
|
||||
/obj/item/clothing/suit/armor/swat,
|
||||
/obj/item/clothing/suit/armor/laserproof,
|
||||
/obj/item/clothing/suit/hooded/drake,
|
||||
/obj/item/clothing/glasses/chameleon/night,
|
||||
/obj/item/clothing/head/helmet/meson,
|
||||
/obj/item/clothing/head/helmet/justice,
|
||||
/obj/item/clothing/head/helmet/swat,
|
||||
/obj/item/mod/control/pre_equipped/standard,
|
||||
/obj/item/mod/control/pre_equipped/engineering,
|
||||
/obj/item/mod/control/pre_equipped/atmospheric,
|
||||
/obj/item/mod/control/pre_equipped/loader,
|
||||
/obj/item/mod/control/pre_equipped/mining,
|
||||
/obj/item/mod/control/pre_equipped/rescue,
|
||||
/obj/item/mod/control/pre_equipped/security,
|
||||
/obj/item/mod/control/pre_equipped/cosmohonk
|
||||
)
|
||||
|
||||
/obj/effect/spawner/random/bluespace_tap/food
|
||||
name = "fancy food"
|
||||
spawn_loot_count = 3
|
||||
// Common cultural pool
|
||||
/obj/effect/spawner/random/bluespace_tap/cultural_common
|
||||
name = "common cultural artifacts"
|
||||
loot = list(
|
||||
/obj/item/grenade/clusterbuster/honk,
|
||||
/obj/item/stack/sheet/mineral/abductor/fifty,
|
||||
/obj/item/toy/syndicateballoon,
|
||||
/obj/item/lighter/zippo/gonzofist,
|
||||
/obj/item/lighter/zippo/engraved,
|
||||
/obj/item/gun/projectile/automatic/toy/pistol,
|
||||
/obj/item/gun/projectile/shotgun/toy,
|
||||
/obj/item/gun/projectile/shotgun/toy/crossbow,
|
||||
/obj/item/gun/projectile/shotgun/toy/tommygun,
|
||||
/obj/machinery/snow_machine,
|
||||
/obj/item/clothing/head/kitty,
|
||||
/obj/item/coin/antagtoken,
|
||||
/obj/item/bedsheet/patriot,
|
||||
/obj/item/bedsheet/rainbow,
|
||||
/obj/item/bedsheet/captain,
|
||||
/obj/item/bikehorn/golden,
|
||||
/obj/item/salvage/ruin/brick,
|
||||
/obj/item/toy/sword,
|
||||
/obj/item/toy/windup_toolbox,
|
||||
/obj/item/toy/foamblade,
|
||||
/obj/item/toy/redbutton,
|
||||
/obj/item/toy/figure/crew/ce,
|
||||
/obj/item/toy/figure/crew/syndie,
|
||||
/obj/item/stack/sheet/mineral/tranquillite/thirty,
|
||||
/obj/item/stack/sheet/mineral/bananium/thirty
|
||||
)
|
||||
|
||||
// Uncommon cultural pool
|
||||
/obj/effect/spawner/random/bluespace_tap/cultural_uncommon
|
||||
name = "uncommon cultural artifacts"
|
||||
loot = list(
|
||||
/obj/item/gun/projectile/automatic/c20r/toy,
|
||||
/obj/item/dualsaber/toy,
|
||||
/obj/item/gun/projectile/automatic/toy/pistol/enforcer,
|
||||
/obj/item/bedsheet/syndie,
|
||||
/obj/item/bedsheet/wiz,
|
||||
/obj/item/clothing/gloves/combat,
|
||||
/obj/item/blank_tarot_card,
|
||||
/obj/item/storage/box/syndie_kit/space,
|
||||
/obj/item/wrench/brass,
|
||||
/obj/item/crowbar/brass,
|
||||
/obj/item/screwdriver/brass,
|
||||
/obj/item/weldingtool/experimental/brass,
|
||||
/obj/item/wirecutters/brass
|
||||
)
|
||||
|
||||
// Rare cultural pool
|
||||
/obj/effect/spawner/random/bluespace_tap/cultural_rare
|
||||
name = "rare cultural artifacts"
|
||||
loot = list(
|
||||
/obj/vehicle/space/speedbike/red,
|
||||
/obj/item/gun/projectile/automatic/l6_saw/toy,
|
||||
/obj/item/gun/projectile/automatic/sniper_rifle/toy,
|
||||
/obj/item/bedsheet/centcom,
|
||||
/obj/item/tarot_card_pack,
|
||||
/obj/item/clothing/mask/holo_cigar,
|
||||
/obj/item/melee/baseball_bat/homerun,
|
||||
/obj/item/mod/module/dispenser,
|
||||
/obj/item/storage/box/enforcer_rubber,
|
||||
/obj/item/storage/belt/utility/brass
|
||||
)
|
||||
|
||||
// Common organic pool
|
||||
/obj/effect/spawner/random/bluespace_tap/organic_common
|
||||
name = "common organic objects"
|
||||
loot = list(
|
||||
/obj/item/soap/syndie,
|
||||
/obj/item/dnainjector/telemut,
|
||||
/obj/item/dnainjector/small_size,
|
||||
/obj/item/dnainjector/morph,
|
||||
/obj/item/dnainjector/regenerate,
|
||||
/obj/item/dnainjector/firemut,
|
||||
/obj/item/dnainjector/nobreath,
|
||||
/obj/item/dnainjector/remoteview,
|
||||
/obj/item/dnainjector/insulation,
|
||||
/obj/item/dnainjector/eatmut,
|
||||
/obj/item/dnainjector/noprints,
|
||||
/obj/item/dnainjector/comic,
|
||||
/obj/item/seeds/random/labelled,
|
||||
/obj/item/organ/internal/regenerative_core,
|
||||
/obj/item/reagent_containers/glass/bottle/reagent/omnizine,
|
||||
/obj/item/reagent_containers/glass/bottle/reagent/lazarus_reagent
|
||||
)
|
||||
|
||||
// Uncommon organic pool
|
||||
/obj/effect/spawner/random/bluespace_tap/organic_uncommon
|
||||
name = "uncommon organic objects"
|
||||
loot = list(
|
||||
/obj/item/storage/pill_bottle/random_meds/labelled,
|
||||
/obj/item/dnainjector/hulkmut,
|
||||
/obj/item/organ/internal/alien/plasmavessel,
|
||||
/obj/item/organ/internal/alien/acidgland,
|
||||
/obj/item/organ/internal/alien/hivenode,
|
||||
/obj/item/organ/internal/alien/neurotoxin,
|
||||
/obj/item/organ/internal/alien/resinspinner,
|
||||
/obj/item/organ/internal/alien/eggsac,
|
||||
/obj/item/organ/internal/heart/gland/heals,
|
||||
/obj/item/organ/internal/heart/gland/ventcrawling,
|
||||
/obj/item/organ/internal/heart/gland/egg,
|
||||
/obj/item/slimepotion/fireproof,
|
||||
/obj/item/slimepotion/oil_slick
|
||||
)
|
||||
|
||||
// Rare organic pool
|
||||
/obj/effect/spawner/random/bluespace_tap/organic_rare
|
||||
name = "rare organic objects"
|
||||
loot = list(
|
||||
/obj/item/guardiancreator/biological,
|
||||
/obj/item/organ/internal/vocal_cords/adamantine,
|
||||
/obj/item/food/grown/shell/gatfruit,
|
||||
/obj/item/food/grown/cherry_bomb,
|
||||
/obj/item/bio_chip_implanter/storage,
|
||||
/obj/item/slimepotion/sentience,
|
||||
/obj/item/slimepotion/transference
|
||||
)
|
||||
|
||||
// Common food pool
|
||||
/obj/effect/spawner/random/bluespace_tap/food_common
|
||||
name = "common fancy food"
|
||||
spawn_loot_count = 1
|
||||
loot = list(
|
||||
/obj/item/food/wingfangchu,
|
||||
/obj/item/food/hotdog,
|
||||
/obj/item/food/sliceable/turkey,
|
||||
/obj/item/food/cookie,
|
||||
/obj/item/food/plumphelmetbiscuit,
|
||||
/obj/item/food/appletart,
|
||||
/obj/item/food/sliceable/cheesecake,
|
||||
/obj/item/food/sliceable/bananacake,
|
||||
/obj/item/food/sliceable/chocolatecake,
|
||||
/obj/item/food/soup/meatballsoup,
|
||||
/obj/item/food/soup/mysterysoup,
|
||||
/obj/item/food/soup/stew,
|
||||
@@ -118,6 +225,73 @@
|
||||
/obj/item/food/cubancarp,
|
||||
/obj/item/food/fishandchips,
|
||||
/obj/item/food/meatpie,
|
||||
/obj/item/pizzabox/hawaiian, //it ONLY gives hawaiian. MUHAHAHA
|
||||
/obj/item/food/sliceable/xenomeatbread //maybe add some dangerous/special food here, ie robobuger?
|
||||
/obj/item/pizzabox/hawaiian,
|
||||
/obj/item/food/fortunecookie,
|
||||
/obj/item/food/sugarcookie,
|
||||
/obj/item/food/pie,
|
||||
/obj/item/food/donut/sprinkles,
|
||||
/obj/item/food/chinese/rice,
|
||||
/obj/item/food/pancake,
|
||||
/obj/item/food/chawanmushi,
|
||||
/obj/item/food/syntikebab,
|
||||
/obj/item/food/salad/citrusdelight,
|
||||
/obj/item/food/donkpocket,
|
||||
/obj/item/food/onionrings,
|
||||
/obj/item/food/tatortot,
|
||||
/obj/item/food/stuffing,
|
||||
/obj/item/food/waffles
|
||||
)
|
||||
|
||||
// Uncommon food pool
|
||||
/obj/effect/spawner/random/bluespace_tap/food_uncommon
|
||||
name = "uncommon fancy food"
|
||||
spawn_loot_count = 1
|
||||
loot = list(
|
||||
/obj/item/food/sliceable/cheesecake,
|
||||
/obj/item/food/sliceable/bananacake,
|
||||
/obj/item/food/sliceable/chocolatecake,
|
||||
/obj/item/food/sliceable/turkey,
|
||||
/obj/item/food/sliceable/xenomeatbread,
|
||||
/obj/item/food/amanita_pie,
|
||||
/obj/item/food/xemeatpie,
|
||||
/obj/item/food/sliceable/pumpkinpie,
|
||||
/obj/item/food/donut/chaos,
|
||||
/obj/item/pizzabox/meat,
|
||||
/obj/item/pizzabox/pepperoni,
|
||||
/obj/item/pizzabox/firecracker,
|
||||
/obj/item/pizzabox/garlic,
|
||||
/obj/item/food/burger/xeno,
|
||||
/obj/item/food/burger/spell,
|
||||
/obj/item/food/burger/superbite,
|
||||
/obj/item/food/burger/crazy,
|
||||
/obj/item/food/burger/ppatty/white,
|
||||
/obj/item/food/burger/ppatty/red,
|
||||
/obj/item/food/burger/ppatty/orange,
|
||||
/obj/item/food/burger/ppatty/yellow,
|
||||
/obj/item/food/burger/ppatty/green,
|
||||
/obj/item/food/burger/ppatty/blue,
|
||||
/obj/item/food/burger/ppatty/purple,
|
||||
/obj/item/food/baguette,
|
||||
/obj/item/food/rofflewaffles
|
||||
)
|
||||
|
||||
// Rare food pool
|
||||
/obj/effect/spawner/random/bluespace_tap/food_rare
|
||||
name = "rare fancy food"
|
||||
spawn_loot_count = 1
|
||||
loot = list(
|
||||
/obj/item/food/monkeysdelight,
|
||||
/obj/item/food/dionaroast,
|
||||
/obj/item/food/boiledslimecore,
|
||||
/obj/item/food/burger/brain,
|
||||
/obj/item/food/liquidfood,
|
||||
/obj/item/food/burger/ghost,
|
||||
/obj/item/food/burger/hamborger,
|
||||
/obj/item/food/burger/ppatty/rainbow,
|
||||
/obj/item/food/burger/elec,
|
||||
/obj/item/food/notasandwich,
|
||||
/obj/item/storage/box/papersack/pbj_lunch,
|
||||
/obj/item/food/soylentviridians,
|
||||
/obj/item/food/syndidonkpocket,
|
||||
/obj/item/food/baguette/combat
|
||||
)
|
||||
|
||||
@@ -393,6 +393,9 @@ GLOBAL_LIST_INIT(sandbag_recipes, list (
|
||||
/obj/item/stack/sheet/mineral/bananium/ten
|
||||
amount = 10
|
||||
|
||||
/obj/item/stack/sheet/mineral/bananium/thirty
|
||||
amount = 30
|
||||
|
||||
/obj/item/stack/sheet/mineral/bananium/fifty
|
||||
amount = 50
|
||||
|
||||
@@ -424,6 +427,9 @@ GLOBAL_LIST_INIT(sandbag_recipes, list (
|
||||
/obj/item/stack/sheet/mineral/tranquillite/ten
|
||||
amount = 10
|
||||
|
||||
/obj/item/stack/sheet/mineral/tranquillite/thirty
|
||||
amount = 30
|
||||
|
||||
/obj/item/stack/sheet/mineral/tranquillite/fifty
|
||||
amount = 50
|
||||
|
||||
|
||||
@@ -135,6 +135,14 @@
|
||||
new /obj/item/extinguisher/mini(src)
|
||||
update_icon()
|
||||
|
||||
/obj/item/storage/belt/utility/brass/populate_contents()
|
||||
new /obj/item/wrench/brass(src)
|
||||
new /obj/item/crowbar/brass(src)
|
||||
new /obj/item/screwdriver/brass(src)
|
||||
new /obj/item/weldingtool/experimental/brass(src)
|
||||
new /obj/item/wirecutters/brass(src)
|
||||
update_icon()
|
||||
|
||||
/obj/item/storage/belt/utility/chief
|
||||
name = "advanced toolbelt"
|
||||
desc = "Holds tools, looks snazzy, and fits nicely into a bag."
|
||||
|
||||
@@ -1049,6 +1049,14 @@
|
||||
return
|
||||
return ..()
|
||||
|
||||
/obj/item/storage/box/papersack/pbj_lunch
|
||||
name = "peanut butter and jelly lunch"
|
||||
desc = "A paper sack filled with enough sandwiches to feed a department."
|
||||
|
||||
/obj/item/storage/box/papersack/pbj_lunch/populate_contents()
|
||||
for(var/i in 1 to 10)
|
||||
new /obj/item/food/peanut_butter_jelly(src)
|
||||
|
||||
/obj/item/storage/box/relay_kit
|
||||
name = "telecommunications relay kit"
|
||||
desc = "Contains everything you need to set up your own telecommunications array!"
|
||||
|
||||
Reference in New Issue
Block a user