Introduction
Greetings, readers! Are you looking to expand your trading empire in Starsector by adding new items to the market? Whether you’re a seasoned trader or a newbie just starting out, this comprehensive guide will provide you with all the knowledge you need to become a market master.
Section 1: Understanding Market Supply and Demand
1.1 Market Supply
The supply of an item in the market is the total amount of that item that is available for purchase. Supply can be increased by producing more of the item, importing it from other markets, or finding hidden stashes.
1.2 Market Demand
The demand for an item in the market is the total amount of that item that consumers want to buy. Demand can be increased by increased population, economic growth, or new uses being discovered for the item.
Section 2: Adding Items to the Market
2.1 Production
Producing an item is the most direct way to add it to the market. To produce an item, you will need to have the necessary resources, production facilities, and blueprints. The production process can be automated or manual, depending on the item.
2.2 Trade
Importing items from other markets is another way to add them to your local market. To trade, you will need to find a market that has a surplus of the item you want and is willing to sell it to you. The price of the item will be determined by the supply and demand in both markets.
2.3 Exploration
Exploring hidden stashes is a risky but potentially rewarding way to add items to the market. These stashes can contain rare or valuable items that are not available anywhere else. To find hidden stashes, you will need to use exploration equipment and search in remote or uninhabited areas.
Section 3: Growing Your Business
3.1 Market Research
Before you start adding items to the market, it is important to conduct market research to identify which items are in high demand and which ones are likely to sell well. You can do this by talking to traders, visiting different markets, and reading industry news.
3.2 Pricing
Setting the right price for your items is essential for success. You want to price your items competitively so that you can attract customers, but you also want to make sure you are making a profit. The price of an item will also vary depending on the supply and demand in the market.
Section 4: Market Table Breakdown
Item | Supply | Demand | Price |
---|---|---|---|
Heavy Machinery | Low | High | $$$ |
Rare Artifacts | Medium | Medium | $$ |
Luxury Goods | Low | Medium | $$ |
Food and Supplies | High | High | $ |
Building Materials | Medium | Medium | $$ |
Conclusion
Adding items to the market in Starsector is a complex but rewarding process. By understanding the basics of supply and demand and using the techniques described in this guide, you can become a successful trader and grow your business.
If you enjoyed this article, be sure to check out our other guides on Starsector trading, combat, and exploration.
FAQ about Adding Items to the Market in Starsector
1. How do I add a new item to the market?
Open the starsector-core/data/world/items folder. Create a new JSON file named "your_item.json" and paste the following code into it:
{
"id": "your_item_id",
"name": "Your Item Name",
"description": "Your Item Description",
"price": 100,
"rarity": 0.5,
"size": 1,
"tags": ["tag1", "tag2"],
"stats": {}
}
Replace "your_item_id" with a unique identifier for your item.
2. How do I set the item’s stats?
Add a "stats" object to the JSON file and list the stat names and values you want to apply to the item. For example:
"stats": {
"durability": 10,
"attack_damage": 5
}
3. How do I specify the item’s weight and dimensions?
Use the "weight" and "volume" properties in the JSON file. For example:
"weight": 10,
"volume": 2
4. How do I add a sprite for the item?
Create a PNG image named "your_item_id.png" and place it in the starsector-core/graphics/items folder.
5. How do I set the item’s rarity?
Use the "rarity" property in the JSON file. Rarity values range from 0 to 1, with 0 being the most common and 1 being the rarest.
6. How do I set the item’s tags?
Use the "tags" array in the JSON file to specify tags for the item. Tags are used to group similar items together in the market.
7. How do I set the item’s price?
Use the "price" property in the JSON file to set the item’s price in credits.
8. How do I specify the item’s supply?
Use the "supply" property in the JSON file to set the initial supply of the item in the market.
9. How do I update the item’s data?
After making changes to an item’s JSON file, you need to relaunch the game for the changes to take effect.
10. Where can I find more information about adding items to the market?
Refer to the Starsector Wiki or the Starsector Forums for additional guidance and examples.