Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Curators, chaplains, and monster hunters can now all actually USE the Archive of the Kindred #1352

Merged
merged 1 commit into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@
. = ..()
var/mob/living/current_mob = mob_override || owner.current
current_mob.add_traits(list(TRAIT_NOSOFTCRIT, TRAIT_NOCRITDAMAGE), HUNTER_TRAIT)
ADD_TRAIT(owner, TRAIT_BLOODSUCKER_HUNTER, HUNTER_TRAIT)
owner.unconvertable = TRUE

/datum/antagonist/monsterhunter/remove_innate_effects(mob/living/mob_override)
. = ..()
var/mob/living/current_mob = mob_override || owner.current
current_mob.remove_traits(list(TRAIT_NOSOFTCRIT, TRAIT_NOCRITDAMAGE), HUNTER_TRAIT)
REMOVE_TRAITS_IN(current_mob, HUNTER_TRAIT)
REMOVE_TRAITS_IN(owner, HUNTER_TRAIT)
owner.unconvertable = FALSE

/datum/antagonist/monsterhunter/on_gain()
Expand Down
4 changes: 4 additions & 0 deletions monkestation/code/modules/jobs/job_types/chaplain.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/job/chaplain/after_spawn(mob/living/spawned, client/player_client)
. = ..()
if(spawned.mind)
ADD_TRAIT(spawned.mind, TRAIT_BLOODSUCKER_HUNTER, JOB_TRAIT)
4 changes: 4 additions & 0 deletions monkestation/code/modules/jobs/job_types/curator.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/job/curator/after_spawn(mob/living/spawned, client/player_client)
. = ..()
if(spawned.mind)
ADD_TRAIT(spawned.mind, TRAIT_BLOODSUCKER_HUNTER, JOB_TRAIT)
2 changes: 2 additions & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -6216,7 +6216,9 @@
#include "monkestation\code\modules\job_xp\preferences\base_preferences.dm"
#include "monkestation\code\modules\job_xp\preferences\xp_handlers.dm"
#include "monkestation\code\modules\jobs\job_types\candysalesman.dm"
#include "monkestation\code\modules\jobs\job_types\chaplain.dm"
#include "monkestation\code\modules\jobs\job_types\clown.dm"
#include "monkestation\code\modules\jobs\job_types\curator.dm"
#include "monkestation\code\modules\jobs\job_types\dietwizard.dm"
#include "monkestation\code\modules\jobs\job_types\ghost.dm"
#include "monkestation\code\modules\jobs\job_types\godzilla.dm"
Expand Down
Loading