Skip to content

Commit

Permalink
disable ion storms (#2345)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
title
<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Why It's Good For The Game
Sucks for players and admins alike
<!-- Please add a short description of why you think these changes would
benefit the game. If you can't justify it in words, it might not be
worth adding. -->

## Changelog

:cl:
del: ion storms are removed
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
thgvr authored Sep 13, 2023
1 parent e37c686 commit 46178d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/modules/overmap/missions/research_mission.dm
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@
if(!over_obj || !scanner.is_operational || scanner_port?.current_ship != servant)
return
num_current++

/* commented out until ion storms aren't literal torture
/datum/mission/research/ion
name = "Ion storm research mission"
desc = "We require data on the behavior of ion storms in the system for an ongoing study. \
Please anchor the attached sensor array to your ship and fly it through the storms. \
It must be powered to collect the data."
value = 3500
objective_type = /datum/overmap/event/emp

*/
/datum/mission/research/meteor
name = "Asteroid field research mission"
desc = "We require data on the behavior of asteroid fields in the system for an ongoing study. \
Expand Down
6 changes: 4 additions & 2 deletions code/modules/overmap/objects/event_datum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
/obj/effect/meteor/irradiated=10,
/obj/effect/meteor/tunguska = 1
)

/* commented out until ion storms aren't literal torture
///ION STORM - explodes your IPCs
/datum/overmap/event/emp
name = "ion storm (moderate)"
Expand Down Expand Up @@ -128,7 +128,7 @@
chance_to_affect = 25
chain_rate = 4
strength = 6

*/
///ELECTRICAL STORM - explodes your computer and IPCs
/datum/overmap/event/electric
name = "electrical storm (moderate)"
Expand Down Expand Up @@ -338,9 +338,11 @@ GLOBAL_LIST_INIT(overmap_event_pick_list, list(
/datum/overmap/event/electric/minor = 45,
/datum/overmap/event/electric = 40,
/datum/overmap/event/electric/major = 35,
/* commented out until ion storms aren't literal torture
/datum/overmap/event/emp/minor = 45,
/datum/overmap/event/emp = 40,
/datum/overmap/event/emp/major = 45,
*/
/datum/overmap/event/meteor/minor = 45,
/datum/overmap/event/meteor = 40,
/datum/overmap/event/meteor/major = 35,
Expand Down

0 comments on commit 46178d1

Please sign in to comment.