mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
adds fishing category to games vendor (#86699)
## About The Pull Request this pull request adds a fishing category to the games vendor with items that cost 50 credits more than their goodie alternatives. ## Why It's Good For The Game this allows people to start their fishing goals earlier without waiting 20 minutes for cargo at the caveat of the items costing 50 credits extra than normal ## Changelog 🆑 add: Added new fishing category to games vendor /🆑
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
worn_icon_state = "fish_analyzer"
|
||||
desc = "A fish-shaped scanner used to monitor fish's status and evolutionary traits."
|
||||
obj_flags = CONDUCTS_ELECTRICITY
|
||||
custom_price = PAYCHECK_CREW * 3
|
||||
item_flags = NOBLUDGEON
|
||||
slot_flags = ITEM_SLOT_BELT
|
||||
throwforce = 3
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
name = "Fish Encyclopedia"
|
||||
desc = "Indexes all fish known to mankind (and related species)."
|
||||
icon_state = "fishbook"
|
||||
custom_price = PAYCHECK_CREW * 2
|
||||
starting_content = "Lot of fish stuff" //book wrappers could use cleaning so this is not necessary
|
||||
|
||||
/obj/item/book/manual/fish_catalog/ui_interact(mob/user, datum/tgui/ui)
|
||||
|
||||
@@ -287,6 +287,7 @@
|
||||
icon_state = "fishing"
|
||||
inhand_icon_state = "artistic_toolbox"
|
||||
material_flags = NONE
|
||||
custom_price = PAYCHECK_CREW * 3
|
||||
|
||||
/obj/item/storage/toolbox/fishing/Initialize(mapload)
|
||||
. = ..()
|
||||
@@ -339,6 +340,7 @@
|
||||
/obj/item/storage/box/fishing_hooks
|
||||
name = "fishing hook set"
|
||||
illustration = "fish"
|
||||
custom_price = PAYCHECK_CREW * 2
|
||||
|
||||
/obj/item/storage/box/fishing_hooks/PopulateContents()
|
||||
new /obj/item/fishing_hook/magnet(src)
|
||||
@@ -355,6 +357,7 @@
|
||||
/obj/item/storage/box/fishing_lines
|
||||
name = "fishing line set"
|
||||
illustration = "fish"
|
||||
custom_price = PAYCHECK_CREW * 2
|
||||
|
||||
/obj/item/storage/box/fishing_lines/PopulateContents()
|
||||
new /obj/item/fishing_line/bouncy(src)
|
||||
@@ -403,6 +406,7 @@
|
||||
icon_state = "plasticbox"
|
||||
foldable_result = null
|
||||
illustration = "fish"
|
||||
custom_price = PAYCHECK_CREW * 9
|
||||
|
||||
/obj/item/storage/box/fishing_lures/PopulateContents()
|
||||
new /obj/item/paper/lures_instructions(src)
|
||||
|
||||
@@ -502,6 +502,7 @@
|
||||
icon_state = "fishing_rod_telescopic"
|
||||
desc = "A lightweight, ergonomic, easy to store telescopic fishing rod. "
|
||||
inhand_icon_state = null
|
||||
custom_price = PAYCHECK_CREW * 9
|
||||
force = 0
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
ui_description = "A collapsible fishing rod that can fit within a backpack."
|
||||
|
||||
@@ -45,6 +45,19 @@
|
||||
/obj/item/stack/pipe_cleaner_coil/random = 10,
|
||||
),
|
||||
),
|
||||
list(
|
||||
"name" = "Fishing",
|
||||
"icon" = "fish",
|
||||
"products" = list(
|
||||
/obj/item/storage/toolbox/fishing = 2,
|
||||
/obj/item/storage/box/fishing_hooks = 2,
|
||||
/obj/item/storage/box/fishing_lines = 2,
|
||||
/obj/item/storage/box/fishing_lures = 2,
|
||||
/obj/item/book/manual/fish_catalog = 5,
|
||||
/obj/item/fish_analyzer = 2,
|
||||
/obj/item/fishing_rod/telescopic = 1,
|
||||
),
|
||||
),
|
||||
list(
|
||||
"name" = "Skillchips",
|
||||
"icon" = "floppy-disk",
|
||||
|
||||
Reference in New Issue
Block a user