Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds NanoPharm, Misc Fluff Meds #19740

Closed
wants to merge 31 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1694a2d
Adds Nanopharm
HanSolo1519 Jul 31, 2024
e374312
Update pill_bottle.dm
HanSolo1519 Jul 31, 2024
d819d89
Update Chemistry-Reagents-Medicine.dm
HanSolo1519 Jul 31, 2024
dad2bc9
Update vending_types.dm
HanSolo1519 Jul 31, 2024
5f6187d
Update Chemistry-Reagents-Medicine.dm
HanSolo1519 Jul 31, 2024
8a20250
Update pill.dm
HanSolo1519 Jul 31, 2024
cbca370
Update pill_bottle.dm
HanSolo1519 Jul 31, 2024
5ce3286
Update pill.dm
HanSolo1519 Jul 31, 2024
f541dac
Update pill.dm
HanSolo1519 Jul 31, 2024
ddc16a2
Update pill.dm
HanSolo1519 Jul 31, 2024
e6189b5
Update pill_bottle.dm
HanSolo1519 Jul 31, 2024
d809cb1
Update pill.dm
HanSolo1519 Jul 31, 2024
cd133aa
Update vending_types.dm
HanSolo1519 Jul 31, 2024
ef73617
Update Chemistry-Reagents-Medicine.dm
HanSolo1519 Jul 31, 2024
6be0695
Update vending_types.dm
HanSolo1519 Jul 31, 2024
2c49c19
Update vending_types.dm
HanSolo1519 Jul 31, 2024
f0961be
Update pill_bottle.dm
HanSolo1519 Jul 31, 2024
600f7d9
Update vending_types.dm
HanSolo1519 Jul 31, 2024
4e256dc
Adds Nanopharm sprite
HanSolo1519 Jul 31, 2024
092d5c4
Update Chemistry-Reagents-Medicine.dm
HanSolo1519 Jul 31, 2024
9ac95b1
Update Chemistry-Reagents-Medicine.dm
HanSolo1519 Jul 31, 2024
9c47425
Update pill.dm
HanSolo1519 Aug 1, 2024
6999a79
Update Chemistry-Reagents-Medicine.dm
HanSolo1519 Aug 3, 2024
9dc1d65
Update pill_bottle.dm
HanSolo1519 Aug 3, 2024
7f4b58d
Adds Nanopharm to the Horizon, thanks CourierBravo!
HanSolo1519 Aug 3, 2024
38c0259
Update vending_types.dm
HanSolo1519 Aug 3, 2024
0b4967a
Add files via upload
HanSolo1519 Aug 3, 2024
f2acfb3
edits nanopharm sprite
HanSolo1519 Aug 3, 2024
7494e88
nanotrasen buys out the pharmacy market
HanSolo1519 Aug 6, 2024
93bc1db
actually makes bandages, ointment, and inap pens cost something
HanSolo1519 Aug 9, 2024
1600c8a
fixes vending machine icon conflict
HanSolo1519 Aug 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions code/game/machinery/vending_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,29 @@
obj_flags = OBJ_FLAG_MOVES_UNSUPPORTED
manufacturer = "zenghu"

/obj/machinery/vending/wallpharm
name = "\improper NanoPharm Mini"
desc = "A wall-mounted pharmaceuticals vending machine packed with over-the-counter bottles. For the sick salaried worker in you."
icon_state = "wallpharm"
density = 0
products = list(

Check failure on line 780 in code/game/machinery/vending_types.dm

View workflow job for this annotation

GitHub Actions / Lint SpacemanDMM

non-constant assignment
/obj/item/storage/pill_bottle/antidexafen = 4.
/obj/item/storage/pill_bottle/corophenidate = 4, //ADHD medication, unsure if perscription
/obj/item/storage/pill_bottle/rmt = 2
)
prices = list(
/obj/item/storage/pill_bottle/antidexafen = 70,
/obj/item/storage/pill_bottle/corophenidate = 4, 120,
/obj/item/storage/pill_bottle/rmt = 200
)
contraband = list(
/obj/item/reagent_containers/pill/tox = 3
)
random_itemcount = 0
temperature_setting = -1
light_color = LIGHT_COLOR_GREEN
obj_flags = OBJ_FLAG_MOVES_UNSUPPORTED
manufacturer = "zenghu"
/obj/machinery/vending/security
name = "SecTech"
desc = "A security equipment vendor."
Expand Down
Loading