Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Slower harvesting, cheaper drones, faster construction
  • Loading branch information
cswinter committed Nov 29, 2020
1 parent 0664aad commit fa7cde3
Showing 1 changed file with 5 additions and 5 deletions.
@@ -1,6 +1,7 @@
package cwinter.codecraft.core.api

object GameConstants {

/** The largest distance at which two drones can see each other. */
final val DroneVisionRange = 500

Expand Down Expand Up @@ -28,12 +29,11 @@ object GameConstants {
/** The number of timesteps it takes to build a drone is `DroneConstructionTime` *
* (number of modules of the drone being built) / (number constructor modules of the building drone).
*/
final val DroneConstructionTime = 100
final val DroneConstructionTime = 30

/** The amount of resources required to build a */
final val ModuleResourceCost = 5
/** The amount of resources required per module to build a drone */
final val ModuleResourceCost = 3

/** The number of timesteps it takes to harvest 1 resource from a mineral crystal. */
final val HarvestingInterval = 60
final val HarvestingInterval = 120
}

0 comments on commit fa7cde3

Please sign in to comment.