Difference between revisions of "Mineral Mining"

From Screeps Wiki
Jump to navigation Jump to search
(Created page with "{{stub}} Mineral Mining is the process of harvesting the resource in your rooms instead of energy. == Common Implementations == Some implementations will use a version of [...")
 
 
(One intermediate revision by one other user not shown)
Line 5: Line 5:
 
== Common Implementations ==
 
== Common Implementations ==
   
Some implementations will use a version of [[Basic Harvesting#container mining|container mining]]. Different roles than the standard miners and carriers may be required, to account for a variety of resource types instaad of only checking for <code>creep.carry.energy</code>.
+
Some implementations will use a version of [[Basic Harvesting#container mining|container mining]]. Different roles than the standard miners and carriers may be required, to account for a variety of resource types instead of only checking for energy.
  +
  +
=== Container style ===
  +
Generally container mining for minerals means spawning one or more large sized worker creeps with as many <code>WORK</code> parts as possible and a few <code>MOVE</code> parts, unless your planning on using <code>pull()</code>. The creep(s) then head to the container, and proceed to mine it in between cooldowns. The larger the worker creep, the faster a mineral can be depleted and the faster you get to the cooldown, meaning the more minerals you get in the long run. On a mining action, if the creep has no carry parts the minerals will drop, and if a container is present with free space, into the container. You then need to pick the up and move them with another creep, either to your storage, labs, terminal or however you wish to deal with the minerals.
  +
  +
=== Carry-style harvesters ===
  +
Another type of mineral mining is with one or more creeps that have a balance between <code>WORK</code>,<code>CARRY</code>, and <code>MOVE</code> parts. These creeps generally preform both the harvesting & hauling role, as they need carry parts, this does however limit the number of work parts you can have, slowing down harvesting a bit. These however, do not require (though you could still if you wanted to) a container as they can carry & transport the mineral back.
  +
[[Category:Game Knowledge]]
  +
[[Category:Strategy]]

Latest revision as of 22:28, 19 January 2021

This article is a stub. You can help Screeps Wiki by editing to add more information.

Mineral Mining is the process of harvesting the resource in your rooms instead of energy.

Common Implementations[edit | edit source]

Some implementations will use a version of container mining. Different roles than the standard miners and carriers may be required, to account for a variety of resource types instead of only checking for energy.

Container style[edit | edit source]

Generally container mining for minerals means spawning one or more large sized worker creeps with as many WORK parts as possible and a few MOVE parts, unless your planning on using pull(). The creep(s) then head to the container, and proceed to mine it in between cooldowns. The larger the worker creep, the faster a mineral can be depleted and the faster you get to the cooldown, meaning the more minerals you get in the long run. On a mining action, if the creep has no carry parts the minerals will drop, and if a container is present with free space, into the container. You then need to pick the up and move them with another creep, either to your storage, labs, terminal or however you wish to deal with the minerals.

Carry-style harvesters[edit | edit source]

Another type of mineral mining is with one or more creeps that have a balance between WORK,CARRY, and MOVE parts. These creeps generally preform both the harvesting & hauling role, as they need carry parts, this does however limit the number of work parts you can have, slowing down harvesting a bit. These however, do not require (though you could still if you wanted to) a container as they can carry & transport the mineral back.