diff --git a/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm b/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm index a656ae791..d0fde5e9b 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/adventurer.dm @@ -8,7 +8,7 @@ GLOBAL_VAR_INIT(adventurer_hugbox_duration_still, 3 MINUTES) flag = ADVENTURER department_flag = PEASANTS faction = "Station" - total_positions = 20 + total_positions = 10 spawn_positions = 20 allowed_races = RACES_ALL_KINDS tutorial = "Hero of nothing, adventurer by trade. Whatever led you to this fate is up to the wind to decide, and you've never fancied yourself for much other than the thrill. Someday your pride is going to catch up to you, and you're going to find out why most men don't end up in the annals of history." diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/barbarian.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/barbarian.dm index 9fb2e3b53..61aa527e8 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/barbarian.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/barbarian.dm @@ -5,6 +5,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/barbarian + maximum_possible_slots = 3 traits_applied = list(TRAIT_CRITICAL_RESISTANCE, TRAIT_NOPAINSTUN, TRAIT_STEELHEARTED) cmode_music = 'sound/music/combat_gronn.ogg' category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/bard.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/bard.dm index 3d2735d25..1b0748400 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/bard.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/bard.dm @@ -8,6 +8,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/bard + maximum_possible_slots = 3 traits_applied = list(TRAIT_MEDIUMARMOR, TRAIT_DODGEEXPERT) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/cleric.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/cleric.dm index d818b16c1..0cb9af7fe 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/cleric.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/cleric.dm @@ -6,6 +6,7 @@ allowed_races = RACES_ALL_KINDS vampcompat = FALSE outfit = /datum/outfit/job/roguetown/adventurer/cleric + maximum_possible_slots = 3 traits_applied = list(TRAIT_HEAVYARMOR) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dbomb.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dbomb.dm index a115263fb..5b06b6f4b 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dbomb.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dbomb.dm @@ -4,6 +4,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = list(/datum/species/dwarf/mountain) outfit = /datum/outfit/job/roguetown/adventurer/dbomb + maximum_possible_slots = 3 traits_applied = list(TRAIT_HEAVYARMOR) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dwarfranger.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dwarfranger.dm index e389ff47a..e2cd6b834 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dwarfranger.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/dwarfranger.dm @@ -6,6 +6,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = list(/datum/species/dwarf/mountain) outfit = /datum/outfit/job/roguetown/adventurer/dranger + maximum_possible_slots = 3 traits_applied = list(TRAIT_MEDIUMARMOR) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/mage.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/mage.dm index 3e86646c9..5219da244 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/mage.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/mage.dm @@ -4,6 +4,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/mage + maximum_possible_slots = 3 category_tags = list(CTAG_ADVENTURER) /datum/outfit/job/roguetown/adventurer/mage diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/monk.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/monk.dm index 4c3b176e1..7b71f8ad9 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/monk.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/monk.dm @@ -5,6 +5,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/monk + maximum_possible_slots = 3 traits_applied = list(TRAIT_DODGEEXPERT) vampcompat = FALSE diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/ranger.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/ranger.dm index 27446cbcc..f1fce79f8 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/ranger.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/ranger.dm @@ -4,6 +4,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/ranger + maximum_possible_slots = 3 traits_applied = list(TRAIT_MEDIUMARMOR, TRAIT_DODGEEXPERT) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/necromancer.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/necromancer.dm index d3a833d9a..d4ea6287e 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/necromancer.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/necromancer.dm @@ -4,6 +4,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/necromancer + maximum_possible_slots = 3 pickprob = 30 traits_applied = list(TRAIT_ZOMBIE_IMMUNE) category_tags = list(CTAG_DISABLED) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/sentinel.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/sentinel.dm index 3d859d5f9..915a1b379 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/sentinel.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/sentinel.dm @@ -9,7 +9,7 @@ /datum/species/elf/wood, ) outfit = /datum/outfit/job/roguetown/adventurer/sentinal - maximum_possible_slots = 5 + maximum_possible_slots = 3 traits_applied = list(TRAIT_MEDIUMARMOR, TRAIT_DODGEEXPERT) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/treasurehunter.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/treasurehunter.dm index fc9347dac..af159b55f 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/treasurehunter.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/treasurehunter.dm @@ -5,6 +5,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/gravedigger + maximum_possible_slots = 3 traits_applied = list(TRAIT_MEDIUMARMOR, TRAIT_SEEPRICES) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/witchhunter.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/witchhunter.dm index c70bce59e..73c2364fe 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/witchhunter.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rare/witchhunter.dm @@ -7,6 +7,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/puritan + maximum_possible_slots = 3 maximum_possible_slots = 2 traits_applied = list(TRAIT_MEDIUMARMOR) category_tags = list(CTAG_ADVENTURER) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rogue.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rogue.dm index bb412f39f..38bd99733 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rogue.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/rogue.dm @@ -6,6 +6,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/rogue + maximum_possible_slots = 3 traits_applied = list(TRAIT_MEDIUMARMOR, TRAIT_DODGEEXPERT) category_tags = list(CTAG_ADVENTURER) cmode_music = 'sound/music/combat_rogue.ogg' diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/sorceress.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/sorceress.dm index c380b1103..d167acbe7 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/sorceress.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/sorceress.dm @@ -4,6 +4,7 @@ allowed_sexes = list(FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/sorceress + maximum_possible_slots = 3 allowed_ages = list(AGE_MIDDLEAGED, AGE_OLD) category_tags = list(CTAG_DISABLED) diff --git a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/warrior.dm b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/warrior.dm index cf13e0efd..51f65335a 100644 --- a/code/modules/jobs/job_types/roguetown/adventurer/types/combat/warrior.dm +++ b/code/modules/jobs/job_types/roguetown/adventurer/types/combat/warrior.dm @@ -6,6 +6,7 @@ allowed_sexes = list(MALE, FEMALE) allowed_races = RACES_ALL_KINDS outfit = /datum/outfit/job/roguetown/adventurer/sfighter + maximum_possible_slots = 3 traits_applied = list(TRAIT_HEAVYARMOR) category_tags = list(CTAG_ADVENTURER)