Skip to content

Commit

Permalink
Update group.dm (#8506)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeopold authored Aug 9, 2024
1 parent 1593356 commit 7d81fc9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/modules/core_implant/cruciform/rituals/group.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
var/stat_buff
var/buff_value = 3
var/aditional_value = 2
var/stat_message = "You feel like you're getting better."

/datum/group_ritual_effect/cruciform/stat/trigger_success(var/mob/starter, var/list/participants)
. = ..()
Expand All @@ -43,6 +44,7 @@
return FALSE
if(!get_active_mutation(M, MUTATION_ATHEIST))
M.stats.changeStat(stat_buff, buff_value + cnt * aditional_value)
to_chat(M, SPAN_NOTICE(stat_message))

/datum/ritual/group/cruciform/stat/mechanical
name = "Pounding Whisper"
Expand All @@ -64,6 +66,7 @@

/datum/group_ritual_effect/cruciform/stat/mechanical
stat_buff = STAT_MEC
stat_message = "You feel like you're getting smarter."


/datum/ritual/group/cruciform/stat/cognition
Expand All @@ -83,6 +86,7 @@

/datum/group_ritual_effect/cruciform/stat/cognition
stat_buff = STAT_COG
stat_message = "You feel like you're getting smarter."



Expand All @@ -103,6 +107,7 @@

/datum/group_ritual_effect/cruciform/stat/biology
stat_buff = STAT_BIO
stat_message = "You feel like you're getting smarter."


/datum/ritual/group/cruciform/stat/robustness
Expand All @@ -122,6 +127,7 @@

/datum/group_ritual_effect/cruciform/stat/robustness
stat_buff = STAT_ROB
stat_message = "You feel like you're getting stronger."

/datum/ritual/group/cruciform/stat/vigilance
name = "Chant of Observance"
Expand All @@ -140,6 +146,7 @@

/datum/group_ritual_effect/cruciform/stat/vigilance
stat_buff = STAT_VIG
stat_message = "You feel like you're getting more vigilant."


/datum/ritual/group/cruciform/stat/toughness
Expand All @@ -160,6 +167,7 @@

/datum/group_ritual_effect/cruciform/stat/toughness
stat_buff = STAT_TGH
stat_message = "You feel like you're getting sturdier."


/datum/ritual/group/cruciform/crusade
Expand Down

0 comments on commit 7d81fc9

Please sign in to comment.