Files
Aurora.3/code/modules/cargo/items/robotics.dm
T
14b3228582 Adjusts credit value to be more consistent (#20913)
- Reworked prices, wages and balances of (almost) everything ingame.
- Added coinage and decimal support to cash, ruthlessly sanitized to
avoid floating-point errors. Reflected in cash-related things like ATMs.
- Tweaked how cash bundles are made and distributed to support
decimalization.
- Adjusted the starting money individuals and departments receive in
their accounts.
- Adjusted the funding Tajara, Unathi, Diona, Vaurca, and IPCs receive
in their accounts. Should earn more on average than they used to.

Credit values are now roughly 1/10th what they were before, across the
board.

Coins were added too! These have names:
- Unie: 0.01 credits
- Quin: 0.05 credits
- Dece: 0.10 credits
- Quarter: 0.25 credits

These can be seen cameo'd in the screenshots below.

Values, wages, etc, are based on the wiki page
https://wiki.aurorastation.org/index.php?title=Guide_to_Wages_and_Pay .

Values are not anchored to any singular real-world currency.

Example price differences:

| Example Item | Old Price | New Price |
| --- | --- | --- |
| Comet Cola | 15.00 | 1.50 |
| Cup Ramen | 20.00 | 2.00 |
| Jyalara | 38.00 | 3.00 |
| Trans-Stellar Cigarettes | 76.00 | 9.00 |
| Zo'ra Soda | 29.00 | 2.50 |
| Gumball | 5.00 | 0.25 |
| 50x plasteel sheets | 700.00 | 120.00 |
| 5x meat (cargo) | 160.00 | 55.00 |
| 50x phoron crystals (cargo) | 2200.00 | 400.00 |

Wages and account balances have also been tweaked:
| Type | Old Amount | New Amount |
| --- | --- | --- |
| Ship Account | 75,000.00 | 35,000.00 |
| Departmental Accounts | 10,000.00 | 15,000.00 |
| Personal Account (avg) | 200.00 - 20,000.00 | 20.00 - 2,000.00 |

Might break the economy; prices will likely need some adjusting
depending on gameplay constraints. Can be adjusted in TMs.
A little testing never hurt anyone.


![image](https://github.com/user-attachments/assets/006e78bf-bfe6-4003-a88d-7b26d6cf2e80)

![image](https://github.com/user-attachments/assets/ac365c3d-bd55-4de5-bd9f-95c7c629462a)

---------

Signed-off-by: naut <55491249+nauticall@users.noreply.github.com>
Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
2025-07-28 18:11:58 +00:00

127 lines
3.0 KiB
Plaintext

/singleton/cargo_item/positronicbrain
category = "robotics"
name = "positronic brain"
supplier = "hephaestus"
description = "An IPC-grade inactivated positronic brain fresh off the factory line. These sentient, enigmatic computers are the brains of advanced synthetics across the galaxy."
price = 8450
items = list(
/obj/item/device/mmi/digital/posibrain
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_baseline
category = "robotics"
name = "Torso - Baseline"
supplier = "hephaestus"
description = "A torso for a baseline frame IPC."
price = 3200
items = list(
/obj/item/robot_parts/chest/ipc
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_bishop
category = "robotics"
name = "Torso - Bishop Cybernetics"
supplier = "bishop"
description = "A bishop cybernetics torso."
price = 4000
items = list(
/obj/item/robot_parts/chest/bishop
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_g1
category = "robotics"
name = "Torso - Hephaestus G1 Industrial Frame"
supplier = "hephaestus"
description = "A torso for a Hephaestus G1 Industrial Frame."
price = 3500
items = list(
/obj/item/robot_parts/chest/industrial
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_g2
category = "robotics"
name = "Torso - Hephaestus G2 Industrial Frame"
supplier = "hephaestus"
description = "A torso for a Hephaestus G2 Industrial Frame."
price = 5000
items = list(
/obj/item/robot_parts/chest/hephaestus
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_heph
category = "robotics"
name = "Torso - Hephaestus Integrated"
supplier = "hephaestus"
description = "A torso for a Hephaestus Integrated Frame."
price = 3000
items = list(
/obj/item/robot_parts/chest/ipc
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_synthskin
category = "robotics"
name = "Torso - Synthskin"
supplier = "zeng_hu"
description = "A synthskin torso."
price = 9000
items = list(
/obj/item/robot_parts/chest/synthskin
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_xion
category = "robotics"
name = "Torso - Xion Manufacturing"
supplier = "xion"
description = "A Xion Manufacturing torso."
price = 4500
items = list(
/obj/item/robot_parts/chest/xion
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/torso_zenghu
category = "robotics"
name = "Torso - Zeng - Hu Pharmaceuticals"
supplier = "zeng_hu"
description = "A Zeng - Hu Pharmaceuticals torso."
price = 3000
items = list(
/obj/item/robot_parts/chest/zenghu
)
access = ACCESS_ROBOTICS
container_type = "crate"
groupable = TRUE
spawn_amount = 1