Changes

Jump to navigation Jump to search
→‎Contents: update for 1.6.4 (added SpecificBaitBuff + SpecificBaitMultiplier + CanUseTrainingRod)
Line 1: Line 1:  
← [[Modding:Index]]
 
← [[Modding:Index]]
   −
Data/Locations controls many things about locations.
+
This page explains how to create and edit in-game locations.
   −
Here is an example location:
+
==Terminology==
 +
A few terms may be used interchangeably or have different meanings depending on the context. In the context of Stardew Valley:
   −
<syntaxhighlight lang="json">
+
* A '''location''' is part of the game code and save data. It manages the in-game area and everything inside it (including non-map entities like players). The location is read/written to the save file, and is only loaded when loading the save file.
"Beach": "372 .9 718 .1 719 .3 723 .3/372 .9 394 .5 718 .1 719 .3 723 .3/372 .9 718 .1 719 .3 723 .3/372 .4 392 .8 718 .05 719 .2 723 .2/129 -1 131 -1 147 -1 148 -1 152 -1 708 -1 267 -1/128 -1 130 -1 146 -1 149 -1 150 -1 152 -1 155 -1 708 -1 701 -1 267 -1/129 -1 131 -1 148 -1 150 -1 152 -1 154 -1 155 -1 705 -1 701 -1/708 -1 130 -1 131 -1 146 -1 147 -1 150 -1 151 -1 152 -1 154 -1 705 -1/384 .08 589 .09 102 .15 390 .25 330 1",
+
* A '''[[Modding:Maps|map]]''' is an asset which describes the tile layout, tilesheets, and map/tile properties for the in-game area. The map is reloaded each time you load a save, and each time a mod changes the map.
 +
* A '''[[Modding:World map|world map]]''' is the image shown for a world region in the in-game menu.
 +
 
 +
In other words, a ''location'' (part of the game code) references the ''map'' (loaded from the <samp>Content</samp> folder):
 +
 
 +
<pre>
 +
┌─────────────────────────────────┐
 +
│ Location                        │
 +
│  - objects                    │
 +
│  - furniture                  │
 +
│  - crops                      │
 +
│  - bushes and trees            │
 +
│  - NPCs and players            │
 +
│  - etc                        │
 +
│                                │
 +
│  ┌─────────────────────────┐  │
 +
│  │ Map asset              │  │
 +
│  │  - tile layout        │  │
 +
│  │  - map/tile properties │  │
 +
│  │  - tilesheets          │  │
 +
│  └─────────────────────────┘  │
 +
└─────────────────────────────────┘
 +
</pre>
 +
 
 +
==Data format==
 +
You can add or edit locations by editing the <samp>Data/Locations</samp> asset.
 +
 
 +
This consists of a string → model lookup, where...
 +
* The key is the [[Modding:Common data field types#Unique string ID|unique string ID]] of the location (i.e. "internal name"), which will also be used as the location's <samp>Name</samp> (not <samp>DisplayName</samp>) field. (The farm will use <samp>Farm_{{t|type key}}</samp> for a vanilla farm type, or <samp>Farm_{{t|type ID}}</samp> for a custom farm type, or <samp>Farm_Standard</samp> if no type-specific entry was found.)
 +
* The value is a model with the fields listed below.
 +
 
 +
===Basic info===
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| <samp>DisplayName</samp>
 +
| ''(Optional but strongly recommended)'' A [[Modding:Tokenizable strings|tokenizable string]] for the translated location name. This is used anytime the location name is shown in-game for base game logic or mods.
 +
|-
 +
| <samp>DefaultArrivalTile</samp>
 +
| ''(Optional but strongly recommended)'' The default tile position where the player should be placed when they arrive in the location, if arriving from a warp that didn't specify a tile position. Default none, which usually places the player at (0, 0).
 +
|-
 +
| <samp>CreateOnLoad</samp>
 +
| ''(Optional)'' If set, the location will be created automatically when the save is loaded using this data.
 +
 
 +
This consists of a model with these fields:
 +
 
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| <samp>MapPath</samp>
 +
| The asset name for the map to use for this location.
 +
|-
 +
| <samp>AlwaysActive</samp>
 +
| ''(Optional)'' Whether this location is always synchronized to farmhands in multiplayer, even if they're not in the location. Any location which allows building cabins '''must''' have this enabled to avoid breaking game logic.
 +
|-
 +
| <samp>Type</samp>
 +
| ''(Optional)'' The full name of the C# location class to create. This must be one of the vanilla types to avoid a crash when saving. There are too many to list here, but the most useful types are likely <samp>StardewValley.GameLocation</samp> (default value) and <samp>StardewValley.Locations.DecoratableLocation</samp>.
 +
|}
 +
|-
 +
| <samp>CanPlantHere</samp>
 +
| ''(Optional)'' Whether crops and trees can be planted and grown here by default, unless overridden by their plantable rules. Defaults to true for farms and false for other locations.
 +
|-
 +
| <samp>ExcludeFromNpcPathfinding</samp>
 +
| ''(Optional)'' Whether NPCs should ignore this location when pathfinding between locations. Default false.
 +
|}
 +
 
 +
===Contents===
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| <samp>ArtifactSpots</samp>
 +
| ''(Optional)'' The items that can be found when digging [[Artifact Spot|artifact spots]] in this location.
 +
 
 +
An artifact spot is selected by combining this field with the equivalent field on the <samp>Default</samp> entry, sorting by <samp>Precedence</samp> value, and then choosing the first entry whose fields match. (Artifact spot drops can also be listed in [[Modding:Items#Objects|<samp>Data/Objects</samp>]]'s <samp>Miscellaneous</samp> field; those are applied by the <samp>RANDOM_ARTIFACT_FOR_DIG_SPOT</samp> entry in <samp>DefaultArtifactSpots</samp>.)
 +
 
 +
This consists of a list of models with these fields:
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| ''common fields''
 +
| See [[Modding:Item queries#Item spawn fields|item spawn fields]] for the generic item fields supported by artifact spot drops.
 +
 
 +
If set to an [[Modding:Item queries|item query]] which returns multiple items, one of them will be selected at random.
 +
|-
 +
| <samp>Chance</samp>
 +
| ''(Optional)'' The probability that the item will be dropped if the other fields match, as a decimal value between 0 (never) and 1 (always). Default 1.
 +
|-
 +
| <samp>ApplyGenerousEnchantment</samp>
 +
| ''(Optional)'' Whether to apply the 'Generous' [[Forge#Enchantments|enchantment]], which adds a 50% chance of the item dropping twice. If the enchantment is applied, the item's fields are rerolled for the second drop (e.g. a new random value between <samp>MinStack</samp> and <samp>MaxStack</samp> is selected). Default true.
 +
|-
 +
| <samp>OneDebrisPerDrop</samp>
 +
| ''(Optional)'' Whether to split the dropped item stack into multiple floating debris that each have a stack size of one. For example, if the dropped item has a stack size of 3, this will spawn three separate item stacks. Default true.
 +
|-
 +
| <samp>ContinueOnDrop</samp>
 +
| ''(Optional)'' Whether to continue checking for more items to drop when this item is dropped. Default false.
 +
|-
 +
| <samp>Precedence</samp>
 +
| ''(Optional)'' The order in which this entry should be checked, where lower values are checked first. This can be a negative value. Artifact spots with the same precedence are checked in the order listed. Default 0.
 +
 
 +
For consistency, vanilla artifact drops mostly use these values:
 +
* <samp>-1000</samp>: location items which should override the global priority items (e.g. fossils on Ginger Island);
 +
* <samp>-100</samp>: global priority items (e.g. Qi Beans);
 +
* <samp>0</samp>: normal items;
 +
* <samp>100</samp>: global fallback items (e.g. clay).
 +
|}
 +
 
 +
For example, a location with this field will drop 2-4 pufferfish with a 50% chance on summer days:
 +
<syntaxhighlight lang="js">
 +
"ArtifactSpots": [
 +
    {
 +
          "Condition": "LOCATION_SEASON Here summer",
 +
          "ItemId": "(O)128",
 +
          "MinStack": 2,
 +
          "MaxStack": 4
 +
    }
 +
]
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
|-
 +
| <samp>FishAreas</samp>
 +
| ''(Optional)'' The distinct [[fishing]] areas within the location. These can be referenced by fish via <samp>FishAreaId</samp>, and determine which fish are collected by [[Crab Pot|crab pots]].
 +
 +
This consists of a string → model lookup, where the key is the fish area ID and the value consists of a list of models with these fields:
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| <samp>Position</samp>
 +
| ''(Optional)'' The tile position and size covered by this fishing area, specified as an object with <samp>X</samp>, <samp>Y</samp>, <samp>Width</samp>, and <samp>Height</samp> fields. This area will apply for crab pots placed within it, or when the fishing rod bobber lands within it. Default null (anywhere).
 +
 +
Areas with a <samp>Position</samp> value have priority over those without.
 +
|-
 +
| <samp>CrabPotFishTypes</samp>
 +
| ''(Optional)'' A list of fish types that can be caught by crab pots within the area. This is matched against field index 4 in [[Modding:Fish data|<samp>Data/Fish</samp>]] for 'trap' (i.e. crab pot) fish. The vanilla types are <samp>freshwater</samp> and <samp>ocean</samp>. If omitted, defaults to <samp>freshwater</samp>.
 +
|-
 +
| <samp>CrabPotJunkChance</samp>
 +
| ''(Optional)'' The chance that crab pots within the area will find junk instead of a fish each time they produce a harvest. This is ignored if the player has the [[Fishing#Fishing Skill|Mariner]] profession. Default <samp>0.2</samp> (20%).
 +
|}
 +
|-
 +
| <samp>Fish</samp>
 +
| ''(Optional)'' The fish that can be caught in the location.
 +
 +
A fish is selected by combining this field with the equivalent field on the <samp>Default</samp> entry, sorting by <samp>Precedence</samp> value (and randomly shuffling entries with the same precedence), and then choosing the first entry whose fields match.
 +
 +
Note: the produced item ID is saved to recreate the fish later. Any item info that's not based on the item ID is ignored (like stack size, quality, flavored variants like Blueberry Wine vs Wine, and the is-recipe flag).
 +
 +
This consists of a list of models with these fields:
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| ''common fields''
 +
| See [[Modding:Item queries#Item spawn fields|item spawn fields]] for the generic item fields supported by forage items.
 +
 +
This must return an <samp>Object</samp> item (or subclass of <samp>Object</samp>). If set to an [[Modding:Item queries|item query]] which returns multiple items, one of them will be selected at random.
 +
|-
 +
| <samp>Chance</samp>
 +
| ''(Optional)'' The probability that the fish will spawn if selected, as a decimal value between 0 (never) and 1 (always). Default 1.
 +
|-
 +
| <samp>Season</samp>
 +
| ''(Optional)'' If set, the specific season when the fish can be caught. This is much more efficient than using <samp>Condition</samp>, but only supports a single season. Defaults to <samp>null</samp> (all seasons).
 +
|-
 +
| <samp>FishAreaId</samp>
 +
| ''(Optional)'' If set, the fish area in which the fish can be caught (as an area ID defined under <samp>FishAreas</samp>). Defaults to <samp>null</samp> (all zones).
 +
|-
 +
| <samp>BobberPosition</samp>
 +
| ''(Optional)'' If set, the tile area within the location where the fishing rod's bobber must land to catch the fish. Default <samp>null</samp> (anywhere).
 +
|-
 +
| <samp>PlayerPosition</samp>
 +
| ''(Optional)'' If set, the tile area within the location where the player must be standing to catch the fish. Default <samp>null</samp> (anywhere).
 +
|-
 +
| <samp>MinFishingLevel</samp>
 +
| ''(Optional)'' The minimum fishing level needed for the fish to appear. Default 0.
 +
|-
 +
| <samp>ApplyDailyLuck</samp>
 +
| ''(Optional)'' Whether to add the player's [[Luck|daily luck]] to the spawn chance. This affects both the <samp>Chance</samp> field and the <samp>Data\Fish</samp> chance, if applicable. Default false.
 +
|-
 +
| <samp>CuriosityLureBuff</samp>
 +
| ''(Optional)'' The value to add to the spawn chance when the player has the [[Curiosity Lure]] equipped, if set to 0 or higher. This affects both the <samp>Chance</samp> field and the <samp>Data\Fish</samp> chance, if applicable. Default -1, which keeps the default behavior (i.e. no effect on the <samp>Chance</samp> field and a scaled boost to the <samp>Data\Fish</samp> chance).
 +
|-
 +
| <samp>SpecificBaitBuff</samp>
 +
| ''(Optional)'' A flat increase to the spawn chance when the player has a specific bait equipped which targets this fish. Default 0.
 +
|-
 +
| <samp>SpecificBaitMultiplier</samp>
 +
| ''(Optional)'' A multiplier applied to the spawn chance when the player has a specific bait equipped which targets this fish. Default 1.66.
 +
|-
 +
| <samp>CatchLimit</samp>
 +
| ''(Optional)'' The maximum number of this fish which can be caught by each player. This limit is permanent (i.e. once it's reached, that fish will never appear again). For example, legendary fish set this to one. Default -1 (no limit).
 +
|-
 +
| <samp>CanUseTrainingRod</samp>
 +
| ''(Optional)'' Whether the player can catch this fish using a training rod. This can be <samp>true</samp> (always allowed), <samp>false</samp> (never allowed), or <samp>null</samp> (apply default logic, i.e. allowed for difficulty ratings under 50). Default null.
 +
|-
 +
| <samp>IsBossFish</samp>
 +
| ''(Optional)'' Whether this is a 'boss fish' catch. This shows a crowned fish sprite in the fishing minigame and gives five times normal XP, like [[Legendary Fish|legendary fish]].
 +
|-
 +
| <samp>RequireMagicBait</samp>
 +
| ''(Optional)'' Whether the player must fish with Magic Bait for this fish to spawn. Default false.
 +
|-
 +
| <samp>MinDistanceFromShore</samp>
 +
| ''(Optional)'' The minimum distance from the nearest shore (measured in tiles) at which the fish can be caught, where zero is water directly adjacent to shore.
 +
|-
 +
| <samp>MaxDistanceFromShore</samp>
 +
| ''(Optional)'' The maximum distance from the nearest shore (measured in tiles) at which the fish can be caught, where zero is water directly adjacent to shore. Default -1 (no limit).
 +
|-
 +
| <samp>Precedence</samp>
 +
| ''(Optional)'' The order in which this entry should be checked, where lower values are checked first. This can be a negative value. Fish with the same precedence are shuffled randomly. Default 0.
 +
 +
For consistency, vanilla fish mostly use values in these ranges:
 +
* <samp>-1100</samp> to <samp>-1000</samp>: global priority items (e.g. Qi Beans);
 +
* <samp>-200</samp> to <samp>-100</samp>: unique location items (e.g. legendary fish or secret items);
 +
* <samp>-50</samp> to <samp>-1</samp>: normal high-priority items;
 +
* <samp>0</samp>: normal items;
 +
* <samp>1</samp> to <samp>100</samp>: normal low-priority items;
 +
* <samp>1000+</samp>: global fallback items (e.g. trash).
 +
|-
 +
| <samp>IgnoreFishDataRequirements</samp>
 +
| ''(Optional)'' Whether to ignore spawn requirements listed in [[Modding:Fish data|<samp>Data/Fish</samp>]], if applicable.
 +
 +
The <samp>Data/Fish</samp> requirements are ignored regardless of this field for non-object (<samp>(O)</samp>)-type items, or objects whose ID isn't listed in <samp>Data/Fish</samp>.
 +
|-
 +
| <samp>CanBeInherited</samp>
 +
| ''(Optional)'' Whether this fish can be spawned in another location via the <samp>LOCATION_FISH</samp> [[Modding:Item queries|item query]]. Default true.
 +
|-
 +
| <samp>SetFlagOnCatch</samp>
 +
| ''(Optional)'' The mail flag to set for the current player when this fish is successfully caught. Default none.
 +
|-
 +
| <samp>ChanceModifiers</samp>
 +
| ''(Optional)'' [[Modding:Migrate to Stardew Valley 1.6#Quantity modifiers|Quantity modifiers]] applied to the <samp>Chance</samp> value. Default none.
 +
|-
 +
| <samp>ChanceModifierMode</samp>
 +
| ''(Optional)'' [[Modding:Migrate to Stardew Valley 1.6#Quantity modifiers|quantity modifier modes]] which indicate what to do if multiple modifiers in the <samp>ChanceModifiers</samp> field apply at the same time. Default <samp>Stack</samp>.
 +
|}
 +
|-
 +
| <samp>Forage</samp>
 +
| ''(Optional)'' The [[forage]] that can spawn in the location.
 +
 +
Notes:
 +
* Unlike other item spawn lists, these entries aren't checked sequentially. Instead, the game...
 +
*# combines this list with any forage in the <samp>Default</samp> location entry;
 +
*# adds every forage entry whose <samp>Condition</samp> and <samp>Season</samp> match to a spawn pool;
 +
*# chooses a random number of spawn ''opportunities'' (between 1 and 4);
 +
*# for each spawn opportunity, chooses a random tile position and forage to spawn. If the spawn fails (e.g. the tile is water/occupied or the forage's <samp>Chance</samp> doesn't pass), the game will make nine other attempts with a re-randomized tile & forage before skipping this spawn opportunity.
 +
* The stack size is ignored.
 +
 +
This consists of a list of models with these fields:
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| ''common fields''
 +
| See [[Modding:Item queries#Item spawn fields|item spawn fields]] for the generic item fields supported by forage items.
 +
 +
This must return an <samp>Object</samp> (<samp>(O)</samp>)-type item. If it uses an [[Modding:Item queries|item query]] that returns multiple items, one will be selected at random. If it returns null or a non-<samp>Object</samp> item, the spawn attempt will be skipped (with a logged warning if the item type is invalid).
 +
|-
 +
| <samp>Chance</samp>
 +
| ''(Optional)'' The probability that the item will spawn if selected, as a decimal value between 0 (never) and 1 (always). Default 1.
 +
|-
 +
| <samp>Season</samp>
 +
| ''(Optional)'' The specific season when the forage should apply. This is more efficient than using <samp>Condition</samp>, but only supports a single season. Defaults to <samp>null</samp> (all seasons).
 +
|}
 +
|-
 +
| <samp>MinDailyWeeds</samp><br /><samp>MaxDailyWeeds</samp>
 +
| ''(Optional)'' The minimum and maximum number of weeds to spawn in a day, if applicable. Default 1 and 5 respectively.
 +
|-
 +
| <samp>FirstDayWeedMultiplier</samp>
 +
| ''(Optional)'' On the first day of each year, a multiplier to apply to the number of daily weeds spawned. Default 15.
 +
|-
 +
| <samp>MinDailyForageSpawn</samp><br /><samp>MaxDailyForageSpawn</samp>
 +
| ''(Optional)'' The minimum and maximum number of forage to try spawning in one day, if applicable and the location has fewer than <samp>MaxSpawnedForageAtOnce</samp> forage. Default 1 and 4 respectively.
 +
|-
 +
| <samp>MaxSpawnedForageAtOnce</samp>
 +
| ''(Optional)'' The maximum number of spawned forage that can be present at once on the map before they stop spawning. Default 6.
 +
|-
 +
| <samp>ChanceForClay</samp>
 +
| ''(Optional)'' The probability that digging a tile will produce clay, as a value between 0 (never) and 1 (always).
 +
|}
   −
Breaking it down:
+
===Music===
 
{| class="wikitable"
 
{| class="wikitable"
! Index
  −
! Entry
  −
! Explanation
   
|-
 
|-
| 0
+
! field
| "372 .9 718 .1 719 .3 723 .3"
+
! effect
| Spring forage. Item ID chance. No particular order required.
+
|-
 +
| <samp>Music</samp>
 +
| ''(Optional)'' The music to play when the player enters the location (subject to the other fields like <samp>MusicContext</samp>).
 +
 
 +
The first matching entry is used. If none match, falls back to <samp>MusicDefault</samp>.
 +
 
 +
This consists of a list of models with these fields:
 +
{| class="wikitable"
 +
|-
 +
! field
 +
! effect
 +
|-
 +
| <samp>Id</samp>
 +
| ''(Optional)'' A [[Modding:Common data field types#Unique string ID|unique string ID]] which identifies this entry within the list. Defaults to the <samp>Track</samp> value.
 +
|-
 +
| <samp>Track</samp>
 +
| The [[Modding:Migrate to Stardew Valley 1.6#Custom audio|audio track ID]] to play.
 +
|-
 +
| <samp>Condition</samp>
 +
| ''(Optional)'' A [[Modding:Game state queries|game state query]] which indicates whether this entry applies. Default true.
 +
|}
 +
|-
 +
| <samp>MusicDefault</samp>
 +
| ''(Optional)'' The music to play if none of the options in <samp>Music</samp> matched. If this is null, falls back to the <samp>Music</samp> [[Modding:Maps|map property]] (if set).
 
|-
 
|-
| 1
+
| <samp>MusicContext</samp>
| "372 .9 394 .5 718 .1 719 .3 723 .3"
+
| ''(Optional)'' The music context for this location. The recommended values are <samp>Default</samp> or <samp>SubLocation</samp>. Default <samp>Default</samp>.
| Summer forage. As above.
+
 
 +
Setting <samp>SubLocation</samp> has two effects:
 +
* <samp>SubLocation</samp> has a lower priority than <samp>Default</samp>. In split-screen mode, that means if player A is at a location with a <samp>Default</samp> music context, and player B is a location with a <samp>SubLocation</samp> context, the game will choose player A's music.
 +
* When the player leaves a location with <samp>SubLocation</samp> music, the music will be stopped unless the new location has the same music and music context set.
 
|-
 
|-
| 2
+
| <samp>MusicIgnoredInRain</samp>
| "372 .9 718 .1 719 .3 723 .3"
+
| ''(Optional)'' Whether the location music is ignored when it's raining in this location. Default false.
| Fall forage. As above.
   
|-
 
|-
| 3
+
| <samp>MusicIgnoredInSpring</samp><br /><samp>MusicIgnoredInSummer</samp><br /><samp>MusicIgnoredInFall</samp><br /><samp>MusicIgnoredInWinter</samp>
| "372 .4 392 .8 718 .05 719 .2 723 .2"
+
| ''(Optional)'' Whether the location music is ignored in the given season. Default false.
| Winter forage. As above.
   
|-
 
|-
| 4
+
| <samp>MusicIgnoredInFallDebris</samp>
| "129 -1 131 -1 147 -1 148 -1 152 -1 708 -1 267 -1"
+
| ''(Optional)'' Whether the location music is ignored in fall during windy weather. Default false.
| Fish data for spring. Fish is ID zoneNumber ID zoneNumber. Some locations have multiple fishing locations. To seperate fish, the zoneNumber is used. It starts at -1, and some locations have 0, or even 1, to indicate the zone. For more information, see [[Modding:Fish_data]]
   
|-
 
|-
| 5
+
| <samp>MusicIsTownTheme</samp>
| "128 -1 130 -1 146 -1 149 -1 150 -1 152 -1 155 -1 708 -1 701 -1 267 -1"  
+
| ''(Optional)'' Whether to use the same behavior as [[Pelican Town]]'s music: it will start playing after the day music has finished, and will continue playing while the player travels through indoor areas, but will stop when entering another outdoor area that isn't marked with the same <samp>Music</samp> and <samp>MusicIsTownTheme</samp> values. Default false.
| Fish data for summer
+
|}
 +
 
 +
===Advanced===
 +
{| class="wikitable"
 
|-
 
|-
| 6
+
! field
| "129 -1 131 -1 148 -1 150 -1 152 -1 154 -1 155 -1 705 -1 701 -1"
+
! effect
| Fish data for autumn
   
|-
 
|-
| 7
+
| <samp>CustomFields</samp>
| "708 -1 130 -1 131 -1 146 -1 147 -1 150 -1 151 -1 152 -1 154 -1 705 -1"
+
| ''(Optional)'' The [[Modding:Common data field types#Custom fields|custom fields]] for this entry.
| Fish data for winter
   
|-
 
|-
| 8
+
| <samp>FormerLocationNames</samp>
| "384 .08 589 .09 102 .15 390 .25 330 1"
+
| ''(Optional)'' The former location names which may appear in save data. See ''[[#Can I rename a location?|Can I rename a location?]]'' in the FAQs for more info.
| Artifact data. (Article data TBA): Artifacts should be added in increasing likelihood, and in format: ID chance ID chance, with chance being addressed in 0 to 1.
   
|}
 
|}
   −
Note that not all fields are required: If you have no fish, you can just put -1 for the relevant fields, and if you have no forage, you can just put -1 for the relevant fields.  
+
==Default entry==
 +
The <samp>Data/Locations</samp> asset has a location with the key <samp>Default</samp>. The <samp>ArtifactSpots</samp>, <samp>Fish</samp>, and <samp>Forage</samp> fields for this entry are added to every other location's equivalent fields, so this lets you add artifact spots / fish / forage in all locations.
   −
Examples are:
+
==FAQs==
 +
===How do I get to a custom location in-game?===
 +
Adding a location to <samp>Data/Locations</samp> only adds the location to the game. Don't forget to give players some way to reach it, usually by adding warps from another map using <samp>EditMap</samp> in a [[Modding:Content Patcher|Content Patcher content pack]].
   −
<pre>
+
For a quick test, you can run the <code>debug warp {{t|location name}}</code> [[Modding:Console commands|console command]] to warp directly into it.
  "Farm": "-1/-1/-1/-1/-1/-1/-1/-1/382 .05 770 .1 390 .25 330 1",
+
 
</pre>
+
===Can I make the location conditional?===
 +
There's many ways you can decide when players have access. For example, you can use <samp>EditMap</samp> in a [[Modding:Content Patcher|Content Patcher content pack]] to add warps conditionally or to add some form of roadblock that must be cleared (e.g. a landslide).
 +
 
 +
'''Note:''' don't make the existence of the location itself conditional, just make it unreachable. Removing the location will permanently delete everything inside it.
 +
 
 +
===Can I rename a location?===
 +
'''Renaming a location will permanently lose player changes made for the old name if you're not careful.'''
 +
 
 +
You can avoid that by setting the <samp>FormerLocationNames</samp> field in <samp>Data/Locations</samp>. If a location in save data has a name which (a) matches one of the <samp>FormerLocationNames</samp> and (b) doesn't match the name of a loaded location, its data will be loaded into the location which specified the <samp>FormerLocationNames</samp> field instead.
   −
This has no forage or fishing data (handled programmatically) so it's just -1.
+
For example:
 +
<syntaxhighlight lang="js">
 +
"FormerLocationNames": [ "Custom_SomeOldName" ]
 +
</syntaxhighlight>
   −
In order to have artifacts work, custom locations need to add their data to this file, which can be done with mods such as Content Patcher.
+
Legacy names can have any format, but they must be '''globally''' unique. They can't match the <samp>Name</samp> or <samp>FormerLocationNames</samp> of any other location in <samp>Data/Locations</samp> (whether vanilla or custom).
   −
==GameLocation Names==
+
==Location names==
 +
In-game locations like the farm or beach are represented by the [[Modding:Modder Guide/Game Fundamentals#GameLocation et al|<samp>GameLocation</samp> class]] (or a subclass), and are identified by a unique name.
   −
<samp>[[Modding:Modder_Guide/Game_Fundamentals#GameLocation_et_al|GameLocation]]</samp> objects represent an area that the player can move around in, such as the Farm, Beach, or Saloon. They all have names as strings. Some are represented by subclasses of <samp>GameLocation</samp>. The following table lists several <samp>GameLocation</samp> objects in vanilla Stardew Valley:
+
Here are some of the vanilla locations:
    
{| class="wikitable sortable"
 
{| class="wikitable sortable"
 
|-
 
|-
! style="position: sticky; top: 0;"|Name
+
! style="position: sticky; top: 0;"| Name
! style="position: sticky; top: 0;"|Class
+
! style="position: sticky; top: 0;"| Class
! style="position: sticky; top: 0;"|Description
+
! style="position: sticky; top: 0;"| Description
 
|-  
 
|-  
 
| <samp>Farm</samp>
 
| <samp>Farm</samp>
Line 108: Line 428:  
| <samp>ManorHouse</samp>
 
| <samp>ManorHouse</samp>
 
| <samp>StardewValley.Locations.ManorHouse</samp>
 
| <samp>StardewValley.Locations.ManorHouse</samp>
| Mayor [[Lewis]]'s house.
+
| Mayor [[Lewis]]' house.
 
|-
 
|-
 
| <samp>SeedShop</samp>
 
| <samp>SeedShop</samp>
Line 116: Line 436:  
| <samp>Saloon</samp>
 
| <samp>Saloon</samp>
 
| <samp>StardewValley.GameLocation</samp>
 
| <samp>StardewValley.GameLocation</samp>
| [[The Stardrop Saloon]] (and [[Gus]]'s house)
+
| [[The Stardrop Saloon]] (and [[Gus]]' house)
 
|-
 
|-
 
| <samp>Trailer</samp>
 
| <samp>Trailer</samp>
Line 180: Line 500:  
| <samp>Sewer</samp>
 
| <samp>Sewer</samp>
 
| <samp>StardewValley.Locations.Sewer</samp>
 
| <samp>StardewValley.Locations.Sewer</samp>
| The [[The Sewers|sewers]] where [[Krobus]]'s shop is.
+
| The [[The Sewers|sewers]] where [[Krobus]]' shop is.
 
|-
 
|-
 
| <samp>BugLand</samp>
 
| <samp>BugLand</samp>
translators
8,441

edits

Navigation menu