mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-30 03:34:20 +00:00
21 lines
490 B
Plaintext
21 lines
490 B
Plaintext
/datum/mood_event
|
|
var/description ///For descriptions, use the span classes bold nicegreen, nicegreen, none, warning and boldwarning in order from great to horrible.
|
|
var/mood_change = 0
|
|
var/timeout = 0
|
|
var/hidden = FALSE//Not shown on examine
|
|
var/mob/owner
|
|
|
|
/datum/mood_event/New(mob/M, param)
|
|
owner = M
|
|
add_effects(param)
|
|
|
|
/datum/mood_event/Destroy()
|
|
remove_effects()
|
|
return ..()
|
|
|
|
/datum/mood_event/proc/add_effects(param)
|
|
return
|
|
|
|
/datum/mood_event/proc/remove_effects()
|
|
return
|