|
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 |
7 | 7 |
|
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 | +// ) |
14 | 14 |
|
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>")) |
0 commit comments