Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit e4288cc

Browse files
committed
removes the events for now
1 parent e252711 commit e4288cc

File tree

2 files changed

+50
-50
lines changed

2 files changed

+50
-50
lines changed
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
/datum/round_event_control/balm
2-
name = "Psi Balm"
3-
typepath = /datum/round_event/psi/balm
4-
weight = 20
5-
max_occurrences = 3
6-
max_alert = SEC_LEVEL_DELTA
1+
// /datum/round_event_control/balm
2+
// name = "Psi Balm"
3+
// typepath = /datum/round_event/psi/balm
4+
// weight = 20
5+
// max_occurrences = 3
6+
// max_alert = SEC_LEVEL_DELTA
77

8-
/datum/round_event/psi/balm
9-
var/static/list/balm_messages = list(
10-
"A soothing balm washes over your psyche.",
11-
"For a moment, you can hear a distant, familiar voice singing a quiet lullaby.",
12-
"A sense of peace and comfort falls over you like a warm blanket."
13-
)
8+
// /datum/round_event/psi/balm
9+
// var/static/list/balm_messages = list(
10+
// "A soothing balm washes over your psyche.",
11+
// "For a moment, you can hear a distant, familiar voice singing a quiet lullaby.",
12+
// "A sense of peace and comfort falls over you like a warm blanket."
13+
// )
1414

15-
/datum/round_event/psi/balm/apply_psi_effect(datum/psi_complexus/psi)
16-
var/soothed
17-
if(psi.stun > 1)
18-
psi.stun--
19-
soothed = TRUE
20-
else if(psi.stamina < psi.max_stamina)
21-
psi.adjust_stamina(rand(1,3))
22-
soothed = TRUE
23-
else if(psi.owner.getOrganLoss(ORGAN_SLOT_BRAIN) > 0)
24-
psi.owner.adjustOrganLoss(ORGAN_SLOT_BRAIN, -1)
25-
soothed = TRUE
26-
if(soothed && prob(10))
27-
to_chat(psi.owner, span_notice("<i>[pick(balm_messages)]</i>"))
15+
// /datum/round_event/psi/balm/apply_psi_effect(datum/psi_complexus/psi)
16+
// var/soothed
17+
// if(psi.stun > 1)
18+
// psi.stun--
19+
// soothed = TRUE
20+
// else if(psi.stamina < psi.max_stamina)
21+
// psi.adjust_stamina(rand(1,3))
22+
// soothed = TRUE
23+
// else if(psi.owner.getOrganLoss(ORGAN_SLOT_BRAIN) > 0)
24+
// psi.owner.adjustOrganLoss(ORGAN_SLOT_BRAIN, -1)
25+
// soothed = TRUE
26+
// if(soothed && prob(10))
27+
// to_chat(psi.owner, span_notice("<i>[pick(balm_messages)]</i>"))
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
/datum/round_event_control/wail
2-
name = "Psi Wail"
3-
typepath = /datum/round_event/psi/wail
4-
weight = 20
5-
max_occurrences = 3
6-
max_alert = SEC_LEVEL_DELTA
1+
// /datum/round_event_control/wail
2+
// name = "Psi Wail"
3+
// typepath = /datum/round_event/psi/wail
4+
// weight = 20
5+
// max_occurrences = 3
6+
// max_alert = SEC_LEVEL_DELTA
77

8-
/datum/round_event/psi/wail
9-
var/static/list/whine_messages = list(
10-
"A nerve-tearing psychic whine intrudes on your thoughts.",
11-
"A horrible, distracting humming sound breaks your train of thought.",
12-
"Your head aches as a psychic wail intrudes on your psyche."
13-
)
8+
// /datum/round_event/psi/wail
9+
// var/static/list/whine_messages = list(
10+
// "A nerve-tearing psychic whine intrudes on your thoughts.",
11+
// "A horrible, distracting humming sound breaks your train of thought.",
12+
// "Your head aches as a psychic wail intrudes on your psyche."
13+
// )
1414

15-
/datum/round_event/psi/wail/apply_psi_effect(datum/psi_complexus/psi)
16-
var/annoyed
17-
if(prob(1))
18-
psi.stunned(1)
19-
annoyed = TRUE
20-
else if(prob(10))
21-
psi.adjust_heat(rand(1,3))
22-
annoyed = TRUE
23-
else if(psi.stamina)
24-
psi.adjust_stamina(-rand(1,3))
25-
annoyed = TRUE
26-
if(annoyed && prob(1))
27-
to_chat(psi.owner, span_notice("<i>[pick(whine_messages)]</i></span>"))
15+
// /datum/round_event/psi/wail/apply_psi_effect(datum/psi_complexus/psi)
16+
// var/annoyed
17+
// if(prob(1))
18+
// psi.stunned(1)
19+
// annoyed = TRUE
20+
// else if(prob(10))
21+
// psi.adjust_heat(rand(1,3))
22+
// annoyed = TRUE
23+
// else if(psi.stamina)
24+
// psi.adjust_stamina(-rand(1,3))
25+
// annoyed = TRUE
26+
// if(annoyed && prob(1))
27+
// to_chat(psi.owner, span_notice("<i>[pick(whine_messages)]</i></span>"))

0 commit comments

Comments
 (0)