diff --git a/baystation12.dme b/baystation12.dme index c0e362f5076..0a2c091a664 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -866,6 +866,7 @@ #include "code\modules\economy\utils.dm" #include "code\modules\events\blob.dm" #include "code\modules\events\borers.dm" +#include "code\modules\events\cargobonus.dm" #include "code\modules\events\carp_migration.dm" #include "code\modules\events\comms_blackout.dm" #include "code\modules\events\communications_blackout.dm" diff --git a/code/modules/events/cargobonus.dm b/code/modules/events/cargobonus.dm new file mode 100644 index 00000000000..f7135151d3b --- /dev/null +++ b/code/modules/events/cargobonus.dm @@ -0,0 +1,8 @@ +/datum/event/cargo_bonus + announceWhen = 5 + +/datum/event/cargo_bonus/announce() + command_alert("Congratulations! [station_name()] was chosen for supply limit increase, please contact local cargo department for details!.", "Supply Alert") + +/datum/event/cargo_bonus/start() + supply_controller.points+=rand(100,500) \ No newline at end of file diff --git a/code/modules/events/event_dynamic.dm b/code/modules/events/event_dynamic.dm index 7a9a0b2cc8f..1676db57c37 100644 --- a/code/modules/events/event_dynamic.dm +++ b/code/modules/events/event_dynamic.dm @@ -48,6 +48,9 @@ var/global/list/possibleEvents = list() possibleEvents[/datum/event/trivial_news] = 200 possibleEvents[/datum/event/mundane_news] = 150 + possibleEvents[/datum/event/cargo_bonus] = 150 + + possibleEvents[/datum/event/mass_hallucination] = 200 possibleEvents[/datum/event/falsealarm] = 300 // possibleEvents[/datum/event/immovable_rod] = 200