mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
* Mining points now carry over between rounds for each character. * Mining point carryover is capped at 15,000 points and expires after one week of inactivity. AI usage disclosure: The code for this was created in-part using GPT 5.6 Sol.
15 lines
396 B
Plaintext
15 lines
396 B
Plaintext
#define ORE_URANIUM "uranium"
|
|
#define ORE_IRON "iron"
|
|
#define ORE_COAL "coal"
|
|
#define ORE_SAND "sand"
|
|
#define ORE_PHORON "phoron"
|
|
#define ORE_SILVER "silver"
|
|
#define ORE_GOLD "gold"
|
|
#define ORE_DIAMOND "diamond"
|
|
#define ORE_PLATINUM "platinum"
|
|
#define ORE_HYDROGEN "metallic hydrogen"
|
|
#define ORE_BAUXITE "aluminium"
|
|
#define ORE_GALENA "lead"
|
|
|
|
#define MINING_POINTS_CARRYOVER_MAX 15000
|