Skip to content

Commit

Permalink
[MIRROR] Fixed the floortile crate, adds them to blackmarket (#2210)
Browse files Browse the repository at this point in the history
* Fixed the floortile crate, adds them to blackmarket  (#81742)

tgstation/tgstation#81512

i accidentally added it to the emagged console it should be on
contraband now.
also added a backpack to present it from interfering.
and its available in uplink

:cl:
add: box with a set of floortile camo, which can be ordered in black
market uplink
add: also adds a backpack to camouflage
fix: i had the crate under emagged console, should be fixed now.
/:cl:

---------



* Fixed the floortile crate, adds them to blackmarket

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: bigfatbananacyclops <[email protected]>
Co-authored-by: Ghom <[email protected]>
  • Loading branch information
4 people authored Mar 1, 2024
1 parent a9c976d commit f497bde
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 7 deletions.
6 changes: 6 additions & 0 deletions code/game/objects/items/storage/backpack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,12 @@
icon_state = "backpack-virology"
inhand_icon_state = "viropack"

/obj/item/storage/backpack/floortile
name = "floortile backpack"
desc = "It's a backpack especially designed for use in floortiles..."
icon_state = "floortile_backpack"
inhand_icon_state = "backpack"

/obj/item/storage/backpack/ert
name = "emergency response team commander backpack"
desc = "A spacious backpack with lots of pockets, worn by the Commander of an Emergency Response Team."
Expand Down
15 changes: 15 additions & 0 deletions code/game/objects/items/storage/boxes/clothes_boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -196,3 +196,18 @@
new /obj/item/clothing/suit/hooded/chaplain_hoodie/divine_archer(src)
new /obj/item/clothing/gloves/divine_archer(src)
new /obj/item/clothing/shoes/divine_archer(src)

/obj/item/storage/box/floor_camo
name = "floor tile camo box"
desc = "Thank you for shopping from Camo-J's, our uniquely designed \
floor-tile 'NT scum' styled camouflage fatigues is the ultimate \
espionage uniform used by the very best. Providing the best \
flexibility, with our latest Camo-tech threads. Perfect for \
risky-espionage hallway operations. Enjoy our product!"

/obj/item/storage/box/floor_camo/PopulateContents()
new /obj/item/clothing/under/syndicate/floortilecamo(src)
new /obj/item/clothing/mask/floortilebalaclava(src)
new /obj/item/clothing/gloves/combat/floortile(src)
new /obj/item/clothing/shoes/jackboots/floortile(src)
new /obj/item/storage/backpack/floortile(src)
16 changes: 16 additions & 0 deletions code/modules/cargo/markets/market_items/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,19 @@
price_max = CARGO_CRATE_VALUE * 1.5
stock_max = 5
availability_prob = 70

/datum/market_item/clothing/floortileset
name = "Floor-tile Camouflage Uniform"
desc = "Hey there, looking to surprise somebody? Spy? Steal? Then you're lucky, meet our newest \
floor-tile 'NT SCUM' styled camouflage fatigues. This is the ultimate \
espionage uniform used by the very best. Providing the best \
flexibility, with our latest Camo-tech threads. Perfect for \
risky espionage hallway operations. Enjoy our product!"
item = /obj/item/storage/box/floor_camo
price_min = CARGO_CRATE_VALUE * 0.5
price_max = CARGO_CRATE_VALUE
stock_max = 3
availability_prob = 40



15 changes: 8 additions & 7 deletions code/modules/cargo/packs/imports.dm
Original file line number Diff line number Diff line change
Expand Up @@ -315,17 +315,18 @@

/datum/supply_pack/imports/floortilecamo
name = "Floor-tile Camouflage Uniform"
desc = "Thank you for shopping from Camo-J's, our uniquely designed \
floor-tile 'NT SCUM' styled camouflage fatigues is the ultimate \
desc = "Hey there, looking to surprise somebody? Spy? Steal? Then you're lucky, meet our newest \
floor-tile 'NT SCUM' styled camouflage fatigues. This is the ultimate \
espionage uniform used by the very best. Providing the best \
flexibility, with our latest Camo-tech threads. Perfect for \
risky espionage hallway operations. Enjoy our product!"
hidden = TRUE
contraband = TRUE
cost = CARGO_CRATE_VALUE * 6
contains = list(/obj/item/clothing/under/syndicate/floortilecamo = 4,
/obj/item/clothing/mask/floortilebalaclava = 4,
/obj/item/clothing/gloves/combat/floortile = 4,
/obj/item/clothing/shoes/jackboots/floortile = 4
contains = list(/obj/item/clothing/under/syndicate/floortilecamo = 3,
/obj/item/clothing/mask/floortilebalaclava = 3,
/obj/item/clothing/gloves/combat/floortile = 3,
/obj/item/clothing/shoes/jackboots/floortile = 3,
/obj/item/storage/backpack/floortile = 3
)
crate_name = "floortile camouflauge crate"
crate_type = /obj/structure/closet/crate/secure/weapon
Binary file modified icons/mob/clothing/back/backpack.dmi
Binary file not shown.
Binary file modified icons/obj/storage/backpack.dmi
Binary file not shown.

0 comments on commit f497bde

Please sign in to comment.