Skip to content

Commit

Permalink
Reduces ship spawn limit for everything to 1 (#3166)
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

Reduces the spawn limit for every ship to 1, and makes the default limit
for new ships 1.

## Why It's Good For The Game

Nearly every ship was already set to a limit of 1. Making it the default
just saves time. Most of the handful of ships that still had a cap of 2-
mudskipper, li tieguai, and delta, for instance - were ships that would
just compete for pop or nudge each other out of their niche if
double-spawned, and a greater variety of ships are available to accept
players after existing ones fill up than there previously were.

## Changelog

:cl:
balance: reduced default ship spawn limit to 1.
/: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
Apogee-dev authored Jul 8, 2024
1 parent 7cc3bcc commit 45326f2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _maps/configs/independent_beluga.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"Service"
],
"starting_funds": 4000,
"limit": 2,
"limit": 1,
"job_slots": {
"Captain": {
"outfit": "/datum/outfit/job/independent/captain",
Expand Down
2 changes: 1 addition & 1 deletion _maps/configs/independent_mudskipper.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"SPACE"
],
"map_path": "_maps/shuttles/independent/independent_mudskipper.dmm",
"limit": 2,
"limit": 1,
"starting_funds": 1500,
"job_slots": {
"Salvage Leader": {
Expand Down
2 changes: 1 addition & 1 deletion _maps/configs/independent_schmiedeberg.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"SUNS",
"GENERAL"
],
"limit": 2,
"limit": 1,
"job_slots": {
"Chief Pharmacist": {
"outfit": "/datum/outfit/job/independent/cmo/pharma",
Expand Down
2 changes: 1 addition & 1 deletion _maps/configs/nanotrasen_gecko.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"Mining",
"Engineering"
],
"limit": 2,
"limit": 1,
"starting_funds": 5000,
"job_slots": {
"Captain": {
Expand Down
2 changes: 1 addition & 1 deletion _maps/example_ship_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"prefix": "STSV",
"namelists": ["GENERAL", "SPACE", "MYTHOLOGICAL", "WEAPONS"],
"map_path": "_maps/shuttles/shiptest/null.dmm",
"limit": 2,
"limit": 1,
"spawn_time_coeff": 1.5,
"officer_time_coeff": 0.5,
"job_slots": {
Expand Down
2 changes: 1 addition & 1 deletion _maps/ship_config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"description": "The amount of ships that can be spawned in by players in a round at once.",
"minimum": 0,
"maximum": 100,
"default": 2
"default": 1
},
"starting_funds":{
"title": "Ship Starting Funds",
Expand Down

0 comments on commit 45326f2

Please sign in to comment.