99/1 for the Star/Galaxy allocation

This commit is contained in:
zramsay 2025-10-17 16:49:01 +00:00
parent 0a482b1f15
commit 791dfd88a6

View File

@ -22,8 +22,8 @@ NUM_STARS = pow(2, 16) - pow(2, 8)
NUM_PLANETS = pow(2, 32) - pow(2, 16)
# Allocation Distribution
STAR_ALLOCATION_PERCENT = Decimal(NUM_STARS / pow(2, 16))
GALAXY_ALLOCATION_PERCENT = 1 - STAR_ALLOCATION_PERCENT
STAR_ALLOCATION_PERCENT = 0.99
GALAXY_ALLOCATION_PERCENT = 0.01
# Lockdrop Duration (5 years including 1 leap year)
LOCKDROP_DURATION_SECONDS = 5 * 365.25 * 24 * 60 * 60