Files
Aurora.3/code/modules/cargo/items/mining.dm
naut 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

128 lines
3.6 KiB
Plaintext

/singleton/cargo_item/miningvoidsuit
category = "mining"
name = "mining voidsuit"
supplier = "nanotrasen"
description = "A special suit that protects against hazardous, low pressure environments. Has reinforced plating."
price = 800
items = list(
/obj/item/clothing/suit/space/void/mining
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/miningvoidsuithelmet
category = "mining"
name = "mining voidsuit helmet"
supplier = "nanotrasen"
description = "A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating."
price = 500
items = list(
/obj/item/clothing/head/helmet/space/void/mining
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/classakineticaccelerator
category = "mining"
name = "Class A Kinetic Accelerator"
supplier = "hephaestus"
description = "Contains a tactical KA frame, an experimental core KA power converter, a recoil reloading KA cell, and a upgrade chip - damage increase."
price = 3200
items = list(
/obj/item/gun/custom_ka/frame05/prebuilt
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/classbkineticaccelerator
category = "mining"
name = "Class B Kinetic Accelerator"
supplier = "hephaestus"
description = "Contains a heavy KA frame, a planet core KA power converter, a uranium recharging KA cell, and a upgrade chip - efficiency increase."
price = 2850
items = list(
/obj/item/gun/custom_ka/frame04/prebuilt
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/classckineticaccelerator
category = "mining"
name = "Class C Kinetic Accelerator"
supplier = "hephaestus"
description = "Contains a medium KA frame, a meteor core KA power converter, a kinetic KA cell, and a upgrade chip - focusing."
price = 2200
items = list(
/obj/item/gun/custom_ka/frame03/prebuilt
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/classdkineticaccelerator
category = "mining"
name = "Class D Kinetic Accelerator"
supplier = "hephaestus"
description = "Contains a light KA frame, a professional core KA power converter, an advanced pump recharging KA cell, and a upgrade chip - firedelay increase."
price = 1850
items = list(
/obj/item/gun/custom_ka/frame02/prebuilt
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/classekineticaccelerator
category = "mining"
name = "Class E Kinetic Accelerator"
supplier = "hephaestus"
description = "Contains a compact KA frame, a standard core KA power converter, a pump recharging KA cell, and a upgrade chip - focusing."
price = 1400
items = list(
/obj/item/gun/custom_ka/frame01/prebuilt
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/industrialminingdrill
category = "mining"
name = "mining drill"
supplier = "hephaestus"
description = "A large industrial drill. Its bore does not penetrate deep enough to access the sublevels."
price = 5000
items = list(
/obj/machinery/mining/drill,
/obj/machinery/mining/brace,
/obj/machinery/mining/brace
)
access = ACCESS_MINING
container_type = "crate"
groupable = TRUE
spawn_amount = 1
/singleton/cargo_item/orebox
category = "mining"
name = "ore box"
supplier = "hephaestus"
description = "Contains a box for storing ore."
price = 150
items = list(
/obj/structure/ore_box
)
access = 0
container_type = "box"
groupable = TRUE
spawn_amount = 1