Skip to content

Commit

Permalink
Adds neko vending machine (#5060)
Browse files Browse the repository at this point in the history
* Adds neko vending machine

* Update code/game/machinery/vendor/misc_vendors.dm

Co-authored-by: Trilbyspaceclone <[email protected]>

---------

Co-authored-by: Trilbyspaceclone <[email protected]>
  • Loading branch information
Twomoon-Github and Trilbyspaceclone authored Feb 23, 2024
1 parent 862e50b commit 1e9b989
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions code/game/machinery/vendor/misc_vendors.dm
Original file line number Diff line number Diff line change
Expand Up @@ -319,3 +319,26 @@
/obj/item/reagent_containers/syringe/stim/bouncer = 3,
/obj/item/reagent_containers/syringe/stim/violence = 3
)


/obj/machinery/vending/neko
name = "Neko vending machine"
desc = "A machine filled with every neko related items you can imagine."
icon_state = "neko"
product_slogans = "Supporting nekos since 1984!"
product_ads = "For all cat-boys and cat-girls!;release your inner tiger!"
products = list(/obj/item/storage/box/costume/nekomaid = 3,
/obj/item/clothing/head/costume/animal/kitty = 10,
/obj/item/toy/plushie/cat = 10,
/obj/item/toy/plushie/kitten = 5,
/obj/item/paper/card/cat = 10 )
prices = list(/obj/item/storage/box/costume/nekomaid = 200,
/obj/item/clothing/head/costume/animal/kitty =20,
/obj/item/toy/plushie/cat = 10,
/obj/item/toy/plushie/kitten = 10,
/obj/item/paper/card/cat = 10,
/mob/living/simple_animal/cat/kitten = 500 )
contraband = list(/mob/living/simple_animal/cat/kitten = 1)
idle_power_usage = 50
auto_price = FALSE
always_open = TRUE
Binary file modified icons/obj/vending.dmi
Binary file not shown.
1 change: 1 addition & 0 deletions maps/__Nadezhda/map/_Nadezhda_Colony_New.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -111645,6 +111645,7 @@
/turf/simulated/floor/tiled/dark,
/area/nadezhda/command/hallway)
"wYq" = (
/obj/machinery/vending/neko,
/turf/simulated/floor/tiled/steel/gray_platform,
/area/nadezhda/maintenance/undergroundfloor1west)
"wYz" = (
Expand Down

0 comments on commit 1e9b989

Please sign in to comment.