mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Changes fishing loot pools for indoor fishing
This commit is contained in:
29
code/modules/fishing/fishing_vr.dm
Normal file
29
code/modules/fishing/fishing_vr.dm
Normal file
@@ -0,0 +1,29 @@
|
||||
GLOBAL_LIST_INIT(indoor_fishing_chance_list, list(FISHING_RARE = 5, FISHING_UNCOMMON = 20, FISHING_COMMON = 30, FISHING_JUNK = 15, FISHING_NOTHING = 50))
|
||||
GLOBAL_LIST_INIT(indoor_fishing_junk_list, list(
|
||||
/obj/random/junk = 15,
|
||||
/obj/random/maintenance/clean = 1
|
||||
))
|
||||
|
||||
/turf/simulated/floor/water/indoors
|
||||
min_fishing_time = 45
|
||||
max_fishing_time = 120
|
||||
|
||||
/turf/simulated/floor/water/indoors/handle_fish()
|
||||
if(has_fish)
|
||||
rare_fish_list = GLOB.generic_fishing_rare_list
|
||||
uncommon_fish_list = GLOB.generic_fishing_uncommon_list
|
||||
common_fish_list = GLOB.generic_fishing_common_list
|
||||
junk_list = GLOB.indoor_fishing_junk_list
|
||||
fishing_loot = GLOB.indoor_fishing_chance_list
|
||||
|
||||
/turf/simulated/floor/water/deep/indoors
|
||||
min_fishing_time = 45
|
||||
max_fishing_time = 120
|
||||
|
||||
/turf/simulated/floor/water/deep/indoors/handle_fish()
|
||||
if(has_fish)
|
||||
rare_fish_list = GLOB.generic_fishing_rare_list
|
||||
uncommon_fish_list = GLOB.generic_fishing_uncommon_list
|
||||
common_fish_list = GLOB.generic_fishing_common_list
|
||||
junk_list = GLOB.indoor_fishing_junk_list
|
||||
fishing_loot = GLOB.indoor_fishing_chance_list
|
||||
@@ -1820,6 +1820,7 @@
|
||||
#include "code\modules\fishing\fishing_net.dm"
|
||||
#include "code\modules\fishing\fishing_rod.dm"
|
||||
#include "code\modules\fishing\fishing_rod_vr.dm"
|
||||
#include "code\modules\fishing\fishing_vr.dm"
|
||||
#include "code\modules\flufftext\Dreaming.dm"
|
||||
#include "code\modules\flufftext\Hallucination.dm"
|
||||
#include "code\modules\flufftext\look_up.dm"
|
||||
|
||||
Reference in New Issue
Block a user