From 9fe11863d96b0c1a4b4afd3ddab3d49a75e0d53d Mon Sep 17 00:00:00 2001 From: EvenInDeathIStillServe Date: Sat, 3 Aug 2024 21:48:44 +0100 Subject: [PATCH] Maxes out pilgrim and adventurer choices --- code/datums/migrants/migrant_role.dm | 4 ++-- .../modules/jobs/job_types/roguetown/adventurer/adventurer.dm | 4 ++-- code/modules/jobs/job_types/roguetown/adventurer/pilgrim.dm | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/datums/migrants/migrant_role.dm b/code/datums/migrants/migrant_role.dm index 62bb706d847..263343102da 100644 --- a/code/datums/migrants/migrant_role.dm +++ b/code/datums/migrants/migrant_role.dm @@ -27,11 +27,11 @@ /datum/migrant_role/pilgrim name = "Pilgrim" - advclass_cat_rolls = list(CTAG_PILGRIM = 10) + advclass_cat_rolls = list(CTAG_PILGRIM = 20) /datum/migrant_role/adventurer name = "Adventurer" - advclass_cat_rolls = list(CTAG_ADVENTURER = 5) + advclass_cat_rolls = list(CTAG_ADVENTURER = 20) /datum/migrant_role/bandit name = "Bandit" diff --git a/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm b/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm index d6d30d81469..a656ae791f5 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm @@ -21,8 +21,8 @@ GLOBAL_VAR_INIT(adventurer_hugbox_duration_still, 3 MINUTES) show_in_credits = FALSE min_pq = 0 max_pq = null - - advclass_cat_rolls = list(CTAG_ADVENTURER = 5) + + advclass_cat_rolls = list(CTAG_ADVENTURER = 20) PQ_boost_divider = 10 wanderer_examine = TRUE diff --git a/code/modules/jobs/job_types/roguetown/adventurer/pilgrim.dm b/code/modules/jobs/job_types/roguetown/adventurer/pilgrim.dm index 92d90d9ecbe..2be3b67eeaa 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/pilgrim.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/pilgrim.dm @@ -13,7 +13,7 @@ bypass_lastclass = TRUE bypass_jobban = FALSE - advclass_cat_rolls = list(CTAG_PILGRIM = 10) + advclass_cat_rolls = list(CTAG_PILGRIM = 20) PQ_boost_divider = 10 display_order = JDO_PILGRIM