Making sense of deposit size

Discussion in 'The Hangar Bay' started by Levarith, Dec 10, 2016.

  1. Levarith

    Levarith Ensign

    Joined:
    Dec 10, 2016
    Messages:
    1
    Likes Received:
    0
    working on a resource rich but incredibly deadly version of akua and i'm down to resources. What does "SizeMinMax: [ 10, 16 ] # Range of sizes of resource depots" actually mean? if i want all of my resource spawns to be near 100% quality what do those numbers need to look like?
     
    #1
  2. arg821

    arg821 Commander

    Joined:
    Sep 6, 2015
    Messages:
    52
    Likes Received:
    38
    A default resource deposit for a YAML file will look like this;

    RandomResources:
    - Name: IronResource
    CountMinMax: [ 6, 7 ]
    SizeMinMax: [ 8, 14 ]
    DepthMinMax: [ 0, 1 ]
    DroneProb: 0.2
    MaxDroneCount: 1

    1st line - The game will spawn between 6 and 7 Iron Deposits.
    2nd line - The size of each deposit will range between a size of 8 and 14 (a game-determined size).
    3rd line - The depth of each resource deposit will be between 0 and 1m deep, (0=can see a littl on the surface, 1=1m deep)
    4th line - Whats the % chance a drone will protect this site? 0.2 = 20% chance. Depends on remaining drone spots though ......39 max / planet
    5th line - What is the maximum number of drones protecting this site?

    Andy.
     
    #2

Share This Page