Files
Sirryan2002 61145a02f8 [TGUI] Space Credit Economy Overhaul + Supply Point -> Space Cash (#19209)
* initial edits

* initial edits

* converting shit over to machinery/economy

* vending and mapping fixes

* vending fix pt.2

* Converts Supply Economy to Use Space Credits instead of Supply Points

* Job Payment, NanoBank, and Paychecks

* clothing type path fixes (damn merge conflicts)

* fixes map typepath issues

* adjusts supply prices

* Vendor Price Adjustments

* account uplink terminal tweaks

* please pass tests

* Apply suggestions from code review

Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>

* reviews and bug fixes

* Review Suggestions/Fixes and Request Console Rewrite

* edits

* vending changes for merge

* typepath fix

* final tweaks

* proc ref fixes

* Fixes and Tweaks from 2nd TM

* rebuild TGUI

* final tweaks

* Apply suggestions from code review

Co-authored-by: Farie82 <farie82@users.noreply.github.com>

* requested reviews

* tweaks

* updates slot machine winnings

* fixes

* GC fixes

* fixes

* oops. still need to deconflict this

* Apply suggestions from code review

Co-authored-by: Farie82 <farie82@users.noreply.github.com>
Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>

* requested changes and bug fixes

* atm runtime fix

* requested reviews

* vend act stuff

* attempt to pass tests

* supply packs fix

* user tochat -> debug log

* FINAL FIXES

* removes CC db stuff

* Apply suggestions from code review

Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>

Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
Co-authored-by: Farie82 <farie82@users.noreply.github.com>
Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
2022-11-21 23:30:50 +00:00

87 lines
2.7 KiB
Plaintext

/datum/supply_packs/vending
name = "HEADER"
group = SUPPLY_VEND
cost = 50
/datum/supply_packs/vending/autodrobe
name = "Autodrobe Supply Crate"
contains = list(/obj/item/vending_refill/autodrobe)
containername = "autodrobe supply crate"
/datum/supply_packs/vending/clothes
name = "ClothesMate Supply Crate"
contains = list(/obj/item/vending_refill/clothing)
containername = "clothesmate supply crate"
/datum/supply_packs/vending/suit
name = "Suitlord Supply Crate"
contains = list(/obj/item/vending_refill/suitdispenser)
containername = "suitlord supply crate"
/datum/supply_packs/vending/hat
name = "Hatlord Supply Crate"
contains = list(/obj/item/vending_refill/hatdispenser)
containername = "hatlord supply crate"
/datum/supply_packs/vending/shoes
name = "Shoelord Supply Crate"
contains = list(/obj/item/vending_refill/shoedispenser)
containername = "shoelord supply crate"
/datum/supply_packs/vending/pets
name = "Pet Supply Crate"
contains = list(/obj/item/vending_refill/crittercare)
containername = "pet supply crate"
/datum/supply_packs/vending/bartending
name = "Booze-o-mat and Coffee Supply Crate"
contains = list(/obj/item/vending_refill/boozeomat,
/obj/item/vending_refill/coffee)
containername = "bartending supply crate"
announce_beacons = list("Bar" = list("Bar"))
/datum/supply_packs/vending/cigarette
name = "Cigarette Supply Crate"
contains = list(/obj/item/vending_refill/cigarette)
containername = "cigarette supply crate"
containertype = /obj/structure/closet/crate
/datum/supply_packs/vending/dinnerware
name = "Dinnerware Supply Crate"
contains = list(/obj/item/vending_refill/dinnerware)
containername = "dinnerware supply crate"
/datum/supply_packs/vending/imported
name = "Imported Vending Machines"
cost = 500
contains = list(/obj/item/vending_refill/sustenance,
/obj/item/vending_refill/robotics,
/obj/item/vending_refill/sovietsoda,
/obj/item/vending_refill/engineering)
containername = "unlabeled supply crate"
/datum/supply_packs/vending/ptech
name = "PTech Supply Crate"
contains = list(/obj/item/vending_refill/cart)
containername = "ptech supply crate"
/datum/supply_packs/vending/snack
name = "Snack Supply Crate"
contains = list(/obj/item/vending_refill/snack)
containername = "snacks supply crate"
/datum/supply_packs/vending/cola
name = "Softdrinks Supply Crate"
contains = list(/obj/item/vending_refill/cola)
containername = "softdrinks supply crate"
/datum/supply_packs/vending/vendomat
name = "Vendomat Supply Crate"
contains = list(/obj/item/vending_refill/assist)
containername = "vendomat supply crate"
/datum/supply_packs/vending/chinese
name = "Chinese Supply Crate"
contains = list(/obj/item/vending_refill/chinese)
containername = "chinese supply crate"