Data.raw: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
m (Bilka moved page Internal object names to Data.raw over redirect: The structure is now a tree again, not a list)
(0.17.54)
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Languages}}
This is a complete listing of all the vanilla prototype's internal names under their prototype types. Further documentation on the types and how they inherit properties can be found on [[Prototype definitions]]. For a full serialization of factorio's data.raw as of 0.17.54, click [https://gist.githubusercontent.com/Bilka2/6b8a6a9e4a4ec779573ad703d03c1ae7/raw here].


This is a listing of all the vanilla entities/items' internal names and all possible entity and item types that can be used in prototyping another object and the tree structure shows how the inherit from other types. This structure is also reflected on [[Prototype definitions]], where further documentation on the entity types can be found. For a full serialization of factorio's data.raw as of 0.15.19, click [https://bitbucket.org/!api/2.0/snippets/Gangsir/gBjxL/5cf496ac4eda02cf6d4bfe09a347134046044940/files/file here].
<span style="color:#FF0000">Warning, the above link contains 7 MB of text and may lag your browser.</span>


<span style="color:#FF0000">Warning, the above link contains 3 MB of text and may lag your browser.</span>
__TOC__
It is not currently possible to add a NEW type to Factorio, without asking the developers to do it, as these are handled in the closed-source C++ code backbone.
It is not currently possible to add a NEW type to Factorio, without asking the developers to do it, as these are handled in the closed-source C++ code backbone.


Line 11: Line 8:
Examples of usage
Examples of usage
<div class="mw-collapsible-content">
<div class="mw-collapsible-content">
<pre>
--add loot item to small biters
local loot = { --define loot in local variable
    item = "alien-artifact",
    probability = 1, --[0-1)
    count_min = 1,
    count_max = 5
  }
if data.raw.unit["small-biter"].loot == nil then --check if small-biter has loot, if not make loot an empty table
  data.raw.unit["small-biter"].loot = {}
end
table.insert{data.raw.unit["small-biter"].loot, loot} --insert loot into loot table
</pre>


<pre>
For finding the internal name of an item/entity, locate it on the wiki and then press the small arrow in its infobox to see the internal name. The infobox will also list the prototype type. With these two things you can access anything from data.raw: <code><nowiki>local what_you_want_to_access = data.raw["prototype-type"]["internal-name"]</nowiki></code>.
--add loot to all enemy units (biters) that do not already drop loot
 
for _, unit in pairs (data.raw.unit) do
<syntaxhighlight lang="lua">--make raw fish stack higher
  if not unit.loot then -- if unit.loot does not exist (aka is nil)
data.raw.capsule["raw-fish"].stack_size = 200</syntaxhighlight>
    unit.loot = {{ --create it, note the double {{ because loot is a table with multiple (possible) results
      item = "alien-artifact",
      probability = 1, --[0-1)
      count_min = 1,
      count_max = 5
    }}
  end --note no else for if unit.loot does exist
end
</pre>


<pre>
--increase player health
data.raw.player.player.max_health=1337
</pre>


<pre>
<syntaxhighlight lang="lua">-- disable small electric pole recipe
-- disable small electric pole recipe
data.raw["recipe"]["small-electric-pole"].enabled = false
data.raw["recipe"]["small-electric-pole"].enabled = false
</pre>
</syntaxhighlight>


</div></div>
</div></div>
<br>
__TOC__


= data.raw - Structure =
= data.raw - Structure =
This is the full data-structure of Factorio's prototypes and their appearences in the game. It is a very long list, so searching with most browsers' find function (usually {{keybinding|Ctrl|f}}) is recommended.
This is the full data-structure of Factorio's prototypes and their appearences in the game. It is a very long list, so searching with most browsers' find function (usually {{keybinding|Ctrl|f}}) is recommended.


Pertains to Version 0.15 <!--Updated as of July 16, 2017-->  
Pertains to Version 0.17.54 <!--Updated as of July 06, 2019-->  


== accumulator ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* accumulator
</div>
== achievement ==
== achievement ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* build-entity-achievement
** getting-on-track
** getting-on-track-like-a-pro
* combat-robot-count
** minions
* construct-with-robots-achievement
** automated-construction
** you-are-doing-it-right
* deconstruct-with-robots-achievement
** automated-cleanup
* deliver-by-robots-achievement
** delivery-service
** you-have-got-a-package
* dont-build-entity-achievement
** logistic-network-embargo
** raining-bullets
* dont-craft-manually-achievement
** lazy-bastard
* dont-use-entity-in-energy-production-achievement
** solaris
** steam-all-the-way
* finish-the-game-achievement
** no-time-for-chitchat
** smoke-me-a-kipper-i-will-be-back-for-breakfast
** there-is-no-spoon
* group-attack-achievement
** it-stinks-and-they-dont-like-it
* kill-achievement
** pyromaniac
** run-forrest-run
** steamrolled
* player-damaged-achievement
** golem
** watch-your-step
* produce-achievement
** mass-production-1
** mass-production-2
** mass-production-3
* produce-per-hour-achievement
** circuit-veteran-1
** circuit-veteran-2
** circuit-veteran-3
** computer-age-1
** computer-age-2
** computer-age-3
** iron-throne-1
** iron-throne-2
** iron-throne-3
* research-achievement
** eco-unfriendly
** tech-maniac
* so-long-and-thanks-for-all-the-fish
* so-long-and-thanks-for-all-the-fish
* train-path-achievement
</div>
** trans-factorio-express
== active-defense-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* discharge-defense-equipment
* personal-laser-defense-equipment
</div>
</div>
== ambient-sound ==
== ambient-sound ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* after-the-crash
* after-the-crash
* anomaly
* anomaly
Line 143: Line 70:
* world-ambience-5
* world-ambience-5
* world-ambience-6
* world-ambience-6
</div>
== ammo ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-shell
* atomic-bomb
* cannon-shell
* explosive-cannon-shell
* explosive-rocket
* explosive-uranium-cannon-shell
* firearm-magazine
* flamethrower-ammo
* piercing-rounds-magazine
* piercing-shotgun-shell
* railgun-dart
* rocket
* shotgun-shell
* uranium-cannon-shell
* uranium-rounds-magazine
</div>
</div>
== ammo-category ==
== ammo-category ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-shell
* biological
* biological
* bullet
* bullet
Line 155: Line 101:
* flamethrower
* flamethrower
* grenade
* grenade
* landmine
* laser-turret
* laser-turret
* melee
* melee
Line 160: Line 107:
* rocket
* rocket
* shotgun-shell
* shotgun-shell
</div>
== ammo-turret ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* cutscene-gun-turret
* gun-turret
</div>
== arithmetic-combinator ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* arithmetic-combinator
</div>
== armor ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* heavy-armor
* light-armor
* modular-armor
* power-armor
* power-armor-mk2
</div>
== arrow ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* fake-selection-box-2x2
* orange-arrow-with-circle
</div>
== artillery-flare ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-flare
</div>
== artillery-projectile ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-projectile
</div>
== artillery-turret ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-turret
</div>
== artillery-wagon ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-wagon
</div>
== assembling-machine ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* assembling-machine-1
* assembling-machine-2
* assembling-machine-3
* centrifuge
* chemical-plant
* escape-pod-assembler
* oil-refinery
</div>
</div>
== autoplace-control ==
== autoplace-control ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* coal
* coal
* copper-ore
* copper-ore
Line 169: Line 164:
* iron-ore
* iron-ore
* stone
* stone
* trees
* uranium-ore
* uranium-ore
</div>
== battery-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* battery-equipment
* battery-mk2-equipment
</div>
== beacon ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* beacon
</div>
== beam ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* electric-beam
* electric-beam-no-sound
* laser-beam
</div>
== belt-immunity-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* belt-immunity-equipment
</div>
== blueprint ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* blueprint
</div>
== blueprint-book ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* blueprint-book
</div>
== boiler ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* boiler
* heat-exchanger
</div>
== build-entity-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* getting-on-track
* getting-on-track-like-a-pro
</div>
== capsule ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-targeting-remote
* cliff-explosives
* cluster-grenade
* defender-capsule
* destroyer-capsule
* discharge-defense-remote
* distractor-capsule
* grenade
* poison-capsule
* raw-fish
* slowdown-capsule
</div>
== car ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* car
* tank
</div>
== cargo-wagon ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* cargo-wagon
</div>
== character ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* character
</div>
== character-corpse ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* character-corpse
</div>
== cliff ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* cliff
</div>
== combat-robot ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* defender
* destroyer
* distractor
</div>
== combat-robot-count ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* minions
</div>
== constant-combinator ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* constant-combinator
</div>
== construct-with-robots-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* automated-construction
* you-are-doing-it-right
</div>
== construction-robot ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* construction-robot
</div>
== container ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* bait-chest
* big-ship-wreck-1
* big-ship-wreck-2
* big-ship-wreck-3
* blue-chest
* compilatron-chest
* iron-chest
* red-chest
* steel-chest
* wooden-chest
</div>
== copy-paste-tool ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* copy-paste-tool
* cut-paste-tool
</div>
== corpse ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* 1x2-remnants
* accumulator-remnants
* arithmetic-combinator-remnants
* artillery-turret-remnants
* behemoth-biter-corpse
* behemoth-spitter-corpse
* behemoth-worm-corpse
* big-biter-corpse
* big-electric-pole-remnants
* big-remnants
* big-spitter-corpse
* big-worm-corpse
* biter-spawner-corpse
* boiler-remnants
* burner-inserter-remnants
* burner-mining-drill-remnants
* car-remnants
* centrifuge-remnants
* constant-combinator-remnants
* decider-combinator-remnants
* express-splitter-remnants
* express-transport-belt-remnants
* express-underground-belt-remnants
* fast-inserter-remnants
* fast-splitter-remnants
* fast-transport-belt-remnants
* fast-underground-belt-remnants
* filter-inserter-remnants
* flamethrower-turret-remnants
* gun-turret-remnants
* heat-pipe-remnants
* inserter-remnants
* lab-remnants
* lamp-remnants
* laser-turret-remnants
* long-handed-inserter-remnants
* medium-biter-corpse
* medium-electric-pole-remnants
* medium-remnants
* medium-small-remnants
* medium-spitter-corpse
* medium-worm-corpse
* nuclear-reactor-remnants
* oil-refinery-remnants
* pipe-remnants
* pump-remnants
* pumpjack-remnants
* radar-remnants
* rail-chain-signal-remnants
* rail-signal-remnants
* roboport-remnants
* rocket-silo-generic-remnants
* small-biter-corpse
* small-electric-pole-remnants
* small-generic-remnants
* small-remnants
* small-scorchmark
* small-spitter-corpse
* small-worm-corpse
* solar-panel-remnants
* spitter-spawner-corpse
* splitter-remnants
* stack-filter-inserter-remnants
* stack-inserter-remnants
* steam-engine-remnants
* steam-turbine-remnants
* stone-furnace-remnants
* storage-tank-remnants
* substation-remnants
* tank-remnants
* train-stop-remnants
* transport-belt-remnants
* tree-01-stump
* tree-02-stump
* tree-03-stump
* tree-04-stump
* tree-05-stump
* tree-06-stump
* tree-07-stump
* tree-08-stump
* tree-09-stump
* underground-belt-remnants
* wall-remnants
</div>
== curved-rail ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* curved-rail
</div>
== custom-input ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* give-blueprint
* give-blueprint-book
* give-deconstruction-planner
* give-upgrade-planner
* toggle-equipment-movement-bonus
* toggle-personal-roboport
</div>
</div>
== damage-type ==
== damage-type ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* acid
* acid
* electric
* electric
Line 182: Line 390:
* poison
* poison
</div>
</div>
== entity ==
== decider-combinator ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* arrow
* decider-combinator
** orange-arrow-with-circle
</div>
* beam
== deconstruct-with-robots-achievement ==
** electric-beam
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
** electric-beam-no-sound
* automated-cleanup
* character-corpse
</div>
** character-corpse
== deconstructible-tile-proxy ==
* corpse
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
** acid-splash-purple
** behemoth-biter-corpse
** behemoth-spitter-corpse
** big-biter-corpse
** big-remnants
** big-spitter-corpse
** big-worm-corpse
** biter-spawner-corpse
** medium-biter-corpse
** medium-remnants
** medium-spitter-corpse
** medium-worm-corpse
** rail-remnants
*** curved-rail-remnants
*** straight-rail-remnants
** small-biter-corpse
** small-remnants
** small-scorchmark
** small-spitter-corpse
** small-worm-corpse
** spitter-spawner-corpse
** tree-01-stump
** tree-02-stump
** tree-03-stump
** tree-04-stump
** tree-05-stump
** tree-06-stump
** tree-07-stump
** tree-08-stump
** tree-09-stump
** wall-remnants
* deconstructible-tile-proxy
* deconstructible-tile-proxy
** deconstructible-tile-proxy
* decorative
** big-ship-wreck-grass
** brown-asterisk
** brown-cane-cluster
** brown-cane-single
** brown-carpet-grass
** brown-coral-mini
** brown-fluff
** brown-fluff-dry
** brown-hairy-grass
** garballo
** garballo-mini-dry
** green-asterisk
** green-bush-mini
** green-carpet-grass
** green-coral-mini
** green-hairy-grass
** green-pita
** green-pita-mini
** green-small-grass
** orange-coral-mini
** red-asterisk
** root-A
** root-B
** small-rock
** small-ship-wreck-grass
* entity-ghost
** entity-ghost
* entity-with-health
** accumulator
*** accumulator
** beacon
*** beacon
** boiler
*** boiler
*** heat-exchanger
** combinator
*** arithmetic-combinator
**** arithmetic-combinator
*** decider-combinator
**** decider-combinator
** constant-combinator
*** constant-combinator
** container
*** big-ship-wreck-1
*** big-ship-wreck-2
*** big-ship-wreck-3
*** iron-chest
*** logistic-container
**** logistic-chest-active-provider
**** logistic-chest-passive-provider
**** logistic-chest-requester
**** logistic-chest-storage
*** smart-container
**** smart-chest-dummy
*** steel-chest
*** wooden-chest
** crafting-machine
*** assembling-machine
**** assembling-machine-1
**** assembling-machine-2
**** assembling-machine-3
**** centrifuge
**** chemical-plant
**** oil-refinery
**** rocket-silo
***** rocket-silo
*** furnace
**** electric-furnace
**** steel-furnace
**** stone-furnace
** electric-energy-interface
*** electric-energy-interface
** electric-pole
*** big-electric-pole
*** medium-electric-pole
*** small-electric-pole
*** substation
** fish
*** fish
** flying-robot
*** combat-robot
**** defender
**** destroyer
**** distractor
*** robot-with-logistic-interface
**** construction-robot
***** construction-robot
**** logistic-robot
***** logistic-robot
** gate
*** gate
** generator
*** steam-engine
*** steam-turbine
** heat-pipe
*** heat-pipe
** inserter
*** burner-inserter
*** fast-inserter
*** filter-inserter
*** inserter
*** long-handed-inserter
*** stack-filter-inserter
*** stack-inserter
** lab
*** lab
** lamp
*** small-lamp
** land-mine
*** land-mine
** market
*** market
** mining-drill
*** burner-mining-drill
*** electric-mining-drill
*** pumpjack
** offshore-pump
*** offshore-pump
** pipe
*** pipe
** pipe-to-ground
*** pipe-to-ground
** player
*** player
** player-port
*** player-port
** power-switch
*** power-switch
** programmable-speaker
*** programmable-speaker
** pump
*** pump
** radar
*** radar
** rail
*** curved-rail
**** curved-rail
*** straight-rail
**** straight-rail
** rail-signal-base
*** rail-chain-signal
**** rail-chain-signal
*** rail-signal
**** rail-signal
** reactor
*** nuclear-reactor
** roboport
*** roboport
** rocket-defense
*** rocket-defense-dummy
** simple-entity
*** medium-ship-wreck
*** red-desert-rock-big-01
*** red-desert-rock-huge-01
*** red-desert-rock-huge-02
*** small-ship-wreck
*** stone-rock
** simple-entity-with-force
*** simple-entity-with-force
** simple-entity-with-owner
*** simple-entity-with-owner
** solar-panel
*** solar-panel
** storage-tank
*** storage-tank
** train-stop
*** train-stop
** transport-belt-connectable
*** loader
**** express-loader
**** fast-loader
**** loader
*** splitter
**** express-splitter
**** fast-splitter
**** splitter
*** transport-belt
**** express-transport-belt
**** fast-transport-belt
**** transport-belt
*** underground-belt
**** express-underground-belt
**** fast-underground-belt
**** underground-belt
** tree
*** dead-dry-hairy-tree
*** dead-grey-trunk
*** dead-tree
*** dry-hairy-tree
*** dry-tree
*** green-coral
*** tree-01
*** tree-02
*** tree-02-red
*** tree-03
*** tree-04
*** tree-05
*** tree-06
*** tree-06-brown
*** tree-07
*** tree-08
*** tree-08-brown
*** tree-08-red
*** tree-09
*** tree-09-brown
*** tree-09-red
** turret
*** ammo-turret
**** gun-turret
*** big-worm-turret
*** electric-turret
**** laser-turret
*** fluid-turret
**** flamethrower-turret
*** medium-worm-turret
*** small-worm-turret
** unit
*** behemoth-biter
*** behemoth-spitter
*** big-biter
*** big-spitter
*** medium-biter
*** medium-spitter
*** small-biter
*** small-spitter
** unit-spawner
*** biter-spawner
*** spitter-spawner
** vehicle
*** car
**** car
**** tank
*** rolling-stock
**** cargo-wagon
***** cargo-wagon
**** fluid-wagon
***** fluid-wagon
**** locomotive
***** locomotive
** wall
*** stone-wall
* explosion
** big-explosion
** blood-explosion-big
** blood-explosion-huge
** blood-explosion-small
** explosion
** explosion-gunshot
** explosion-gunshot-small
** explosion-hit
** flame-thrower-explosion
*** dummy-flame-thrower-explosion
** laser-bubble
** massive-explosion
** medium-explosion
** railgun-beam
** uranium-cannon-explosion
** uranium-cannon-shell-explosion
** water-splash
* fire
** fire-flame
** fire-flame-on-tree
* flying-text
** flying-text
* item-entity
** item-on-ground
* item-request-proxy
** item-request-proxy
* particle
** blood-particle
** branch-particle
** coal-particle
** copper-ore-particle
** explosion-remnants-particle
** iron-ore-particle
** leaf-particle
*** leaf-particle
** shell-particle
** stone-particle
** wooden-particle
* particle-source
** blood-fountain
** blood-fountain-big
* projectile
** acid-projectile-purple
** atomic-bomb-wave
** atomic-rocket
** blue-laser
** cannon-projectile
** cluster-grenade
** defender-capsule
** destroyer-capsule
** distractor-capsule
** explosive-cannon-projectile
** explosive-rocket
** explosive-uranium-cannon-projectile
** grenade
** laser
** piercing-shotgun-pellet
** poison-capsule
** rocket
** shotgun-pellet
** slowdown-capsule
** uranium-cannon-projectile
* resource
** coal
** copper-ore
** crude-oil
** iron-ore
** stone
** uranium-ore
* rocket-silo-rocket
** rocket-silo-rocket
* rocket-silo-rocket-shadow
** rocket-silo-rocket-shadow
* smoke
** car-smoke
** fire-smoke
** fire-smoke-on-adding-fuel
** fire-smoke-without-glow
** light-smoke
** nuclear-smoke
** smoke
** smoke-building
** smoke-explosion-particle
** smoke-fast
** smoke-train-stop
** smoke-with-trigger
*** poison-cloud
** soft-fire-smoke
** tank-smoke
** train-smoke
** turbine-smoke
* sticker
** fire-sticker
** slowdown-sticker
** stun-sticker
* stream
** flamethrower-fire-stream
** handheld-flamethrower-fire-stream
** tank-flamethrower-fire-stream
* tile-ghost
** tile-ghost
</div>
</div>
== equipment ==
== deconstruction-item ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* active-defense-equipment
* deconstruction-planner
** discharge-defense-equipment
</div>
** personal-laser-defense-equipment
== decorative ==
* battery-equipment
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
** battery-equipment
* big-ship-wreck-grass
** battery-mk2-equipment
* brown-asterisk
* belt-immunity-equipment
* brown-cane-cluster
** belt-immunity-equipment
* brown-cane-single
* brown-carpet-grass
* brown-coral-mini
* brown-fluff
* brown-fluff-dry
* brown-hairy-grass
* garballo
* garballo-mini-dry
* green-asterisk
* green-bush-mini
* green-carpet-grass
* green-coral-mini
* green-hairy-grass
* green-pita
* green-pita-mini
* green-small-grass
* orange-coral-mini
* red-asterisk
* root-A
* root-B
* small-ship-wreck-grass
</div>
== deliver-by-robots-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* delivery-service
* you-have-got-a-package
</div>
== dont-build-entity-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* logistic-network-embargo
* raining-bullets
</div>
== dont-craft-manually-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* lazy-bastard
</div>
== dont-use-entity-in-energy-production-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* solaris
* steam-all-the-way
</div>
== editor-controller ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
</div>
== electric-energy-interface ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* electric-energy-interface
* escape-pod-power
* hidden-electric-energy-interface
</div>
== electric-pole ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* big-electric-pole
* medium-electric-pole
* small-electric-pole
* substation
* wreck-pole
</div>
== electric-turret ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* laser-turret
</div>
== energy-shield-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* energy-shield-equipment
* energy-shield-equipment
** energy-shield-equipment
* energy-shield-mk2-equipment
** energy-shield-mk2-equipment
</div>
* generator-equipment
== entity-ghost ==
** fusion-reactor-equipment
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* movement-bonus-equipment
* entity-ghost
** exoskeleton-equipment
* night-vision-equipment
** night-vision-equipment
* roboport-equipment
** personal-roboport-equipment
** personal-roboport-mk2-equipment
* solar-panel-equipment
** solar-panel-equipment
</div>
</div>
== equipment-category ==
== equipment-category ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* armor
* armor
</div>
</div>
== equipment-grid ==
== equipment-grid ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* large-equipment-grid
* large-equipment-grid
* medium-equipment-grid
* medium-equipment-grid
* small-equipment-grid
* small-equipment-grid
</div>
== explosion ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-cannon-muzzle-flash
* big-artillery-explosion
* big-explosion
* blood-explosion-big
* blood-explosion-huge
* blood-explosion-small
* explosion
* explosion-gunshot
* explosion-gunshot-small
* explosion-hit
* ground-explosion
* laser-bubble
* massive-explosion
* medium-explosion
* railgun-beam
* uranium-cannon-explosion
* uranium-cannon-shell-explosion
* water-splash
</div>
== finish-the-game-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* no-time-for-chitchat
* smoke-me-a-kipper-i-will-be-back-for-breakfast
* there-is-no-spoon
</div>
== fire ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* acid-splash-fire-spitter-behemoth
* acid-splash-fire-spitter-big
* acid-splash-fire-spitter-medium
* acid-splash-fire-spitter-small
* acid-splash-fire-worm-behemoth
* acid-splash-fire-worm-big
* acid-splash-fire-worm-medium
* acid-splash-fire-worm-small
* fire-flame
* fire-flame-on-tree
</div>
== fish ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* fish
</div>
== flame-thrower-explosion ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* dummy-flame-thrower-explosion
</div>
</div>
== fluid ==
== fluid ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* crude-oil
* crude-oil
* heavy-oil
* heavy-oil
Line 615: Line 551:
* sulfuric-acid
* sulfuric-acid
* water
* water
</div>
== fluid-turret ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* flamethrower-turret
</div>
== fluid-wagon ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* fluid-wagon
</div>
== flying-text ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* flying-text
* tile-proxy
* tree-dying-proxy
* tree-proxy
* tutorial-flying-text
</div>
</div>
== font ==
== font ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* compi
* compilatron-message-font
* count-font
* default
* default
* default-bold
* default-bold
* default-button
* default-dialog-button
* default-frame
* default-dropdown
* default-game
* default-game
* default-large
* default-large
Line 631: Line 586:
* default-small-bold
* default-small-bold
* default-small-semibold
* default-small-semibold
* default-tiny-bold
* heading-1
* heading-2
* heading-3
* locale-pick
* scenario-message-dialog
* scenario-message-dialog
* technology-slot-level-font
* var
</div>
</div>
== fuel-category ==
== fuel-category ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* chemical
* chemical
* nuclear
* nuclear
</div>
== furnace ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* electric-furnace
* steel-furnace
* stone-furnace
</div>
== gate ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* gate
</div>
== generator ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* steam-engine
* steam-turbine
</div>
== generator-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* fusion-reactor-equipment
</div>
</div>
== god-controller ==
== god-controller ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
* default
</div>
== group-attack-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* it-stinks-and-they-dont-like-it
</div>
</div>
== gui-style ==
== gui-style ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
* default
</div>
== gun ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-wagon-cannon
* combat-shotgun
* flamethrower
* pistol
* railgun
* rocket-launcher
* shotgun
* submachine-gun
* tank-cannon
* tank-flamethrower
* tank-machine-gun
* vehicle-machine-gun
</div>
== heat-interface ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* heat-interface
</div>
== heat-pipe ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* heat-pipe
</div>
== highlight-box ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* highlight-box
</div>
== infinity-container ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* infinity-chest
</div>
== infinity-pipe ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* infinity-pipe
</div>
== inserter ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* burner-inserter
* fast-inserter
* filter-inserter
* inserter
* long-handed-inserter
* stack-filter-inserter
* stack-inserter
</div>
</div>
== item ==
== item ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* accumulator
* accumulator
* advanced-circuit
* advanced-circuit
* ammo
** atomic-bomb
** cannon-shell
** explosive-cannon-shell
** explosive-rocket
** explosive-uranium-cannon-shell
** firearm-magazine
** flamethrower-ammo
** piercing-rounds-magazine
** piercing-shotgun-shell
** railgun-dart
** rocket
** shotgun-shell
** uranium-cannon-shell
** uranium-rounds-magazine
* arithmetic-combinator
* arithmetic-combinator
* artillery-turret
* assembling-machine-1
* assembling-machine-1
* assembling-machine-2
* assembling-machine-2
Line 678: Line 694:
* burner-inserter
* burner-inserter
* burner-mining-drill
* burner-mining-drill
* capsule
** cluster-grenade
** defender-capsule
** destroyer-capsule
** discharge-defense-remote
** distractor-capsule
** grenade
** poison-capsule
** raw-fish
** slowdown-capsule
* centrifuge
* centrifuge
* chemical-plant
* chemical-plant
* coal
* coal
* coin
* coin
* compilatron-chest
* computer
* computer
* concrete
* concrete
Line 711: Line 718:
* energy-shield-mk2-equipment
* energy-shield-mk2-equipment
* engine-unit
* engine-unit
* escape-pod-assembler
* escape-pod-lab
* escape-pod-power
* exoskeleton-equipment
* exoskeleton-equipment
* explosives
* explosives
Line 728: Line 738:
* gate
* gate
* green-wire
* green-wire
* gun
** combat-shotgun
** flamethrower
** pistol
** railgun
** rocket-launcher
** shotgun
** submachine-gun
** tank-cannon
** tank-flamethrower
** tank-machine-gun
** vehicle-machine-gun
* gun-turret
* gun-turret
* hazard-concrete
* hazard-concrete
* heat-exchanger
* heat-exchanger
* heat-interface
* heat-pipe
* heat-pipe
* heavy-oil-barrel
* heavy-oil-barrel
* infinity-chest
* infinity-pipe
* inserter
* inserter
* iron-chest
* iron-chest
Line 751: Line 752:
* iron-plate
* iron-plate
* iron-stick
* iron-stick
* item-with-entity-data
** car
** cargo-wagon
** fluid-wagon
** locomotive
** tank
* item-with-label
** item-with-inventory
*** blueprint-book
**** blueprint-book
*** item-with-inventory
** item-with-label
** item-with-tags
*** item-with-tags
** selection-tool
*** blueprint
**** blueprint
*** deconstruction-item
**** deconstruction-planner
*** dummy-selection-tool
* lab
* lab
* land-mine
* land-mine
Line 778: Line 759:
* loader
* loader
* logistic-chest-active-provider
* logistic-chest-active-provider
* logistic-chest-buffer
* logistic-chest-passive-provider
* logistic-chest-passive-provider
* logistic-chest-requester
* logistic-chest-requester
Line 786: Line 768:
* lubricant-barrel
* lubricant-barrel
* medium-electric-pole
* medium-electric-pole
* module
** effectivity-module
** effectivity-module-2
** effectivity-module-3
** productivity-module
** productivity-module-2
** productivity-module-3
** speed-module
** speed-module-2
** speed-module-3
* night-vision-equipment
* night-vision-equipment
* nuclear-fuel
* nuclear-reactor
* nuclear-reactor
* offshore-pump
* offshore-pump
Line 808: Line 781:
* plastic-bar
* plastic-bar
* player-port
* player-port
* pollution
* power-switch
* power-switch
* processing-unit
* processing-unit
Line 815: Line 789:
* radar
* radar
* rail-chain-signal
* rail-chain-signal
* rail-planner
** rail
* rail-signal
* rail-signal
* raw-wood
* red-wire
* red-wire
* refined-concrete
* refined-hazard-concrete
* roboport
* roboport
* rocket-control-unit
* rocket-control-unit
Line 850: Line 823:
* sulfur
* sulfur
* sulfuric-acid-barrel
* sulfuric-acid-barrel
* tool
** armor
*** heavy-armor
*** light-armor
*** modular-armor
*** power-armor
*** power-armor-mk2
** high-tech-science-pack
** military-science-pack
** mining-tool
*** iron-axe
*** steel-axe
** production-science-pack
** repair-tool
*** repair-pack
** science-pack-1
** science-pack-2
** science-pack-3
** space-science-pack
* train-stop
* train-stop
* transport-belt
* transport-belt
Line 880: Line 834:
* wood
* wood
* wooden-chest
* wooden-chest
</div>
== item-entity ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* item-on-ground
</div>
</div>
== item-group ==
== item-group ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* combat
* combat
* enemies
* enemies
Line 892: Line 850:
* production
* production
* signals
* signals
</div>
== item-request-proxy ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* item-request-proxy
</div>
</div>
== item-subgroup ==
== item-subgroup ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* ammo
* ammo
* armor
* armor
Line 900: Line 862:
* capsule
* capsule
* circuit-network
* circuit-network
* cliffs
* corpses
* corpses
* creatures
* creatures
Line 936: Line 899:
* virtual-signal-special
* virtual-signal-special
* wrecks
* wrecks
</div>
== item-with-entity-data ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-wagon
* car
* cargo-wagon
* fluid-wagon
* locomotive
* tank
</div>
== item-with-inventory ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* item-with-inventory
</div>
== item-with-label ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* item-with-label
</div>
== item-with-tags ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* item-with-tags
</div>
== kill-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* pyromaniac
* run-forrest-run
* steamrolled
</div>
== lab ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* escape-pod-lab
* lab
</div>
== lamp ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* small-lamp
</div>
== land-mine ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* land-mine
</div>
== leaf-particle ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* leaf-particle
</div>
== loader ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* express-loader
* fast-loader
* loader
</div>
== locomotive ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* locomotive
</div>
== logistic-container ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* compi-logistics-chest
* logistic-chest-active-provider
* logistic-chest-buffer
* logistic-chest-passive-provider
* logistic-chest-requester
* logistic-chest-storage
</div>
== logistic-robot ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* logistic-robot
</div>
</div>
== map-gen-presets ==
== map-gen-presets ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
* default
</div>
</div>
== map-settings ==
== map-settings ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* map-settings
* map-settings
</div>
== market ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* market
</div>
== mining-drill ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* burner-mining-drill
* electric-mining-drill
* pumpjack
</div>
== mining-tool ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* dummy-steel-axe
</div>
== module ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* effectivity-module
* effectivity-module-2
* effectivity-module-3
* productivity-module
* productivity-module-2
* productivity-module-3
* speed-module
* speed-module-2
* speed-module-3
</div>
</div>
== module-category ==
== module-category ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* effectivity
* effectivity
* productivity
* productivity
* speed
* speed
</div>
== mouse-cursor ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* selection-tool-cursor
</div>
== movement-bonus-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* exoskeleton-equipment
</div>
== night-vision-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* night-vision-equipment
</div>
== noise-expression ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* 0_16-elevation
* 0_17-island
* 0_17-islands+continents
* 0_17-lakes-elevation
* 0_17-starting-plateau
* aux
* cliffiness
* control-setting:aux:bias
* control-setting:aux:frequency:multiplier
* control-setting:moisture:bias
* control-setting:moisture:frequency:multiplier
* control-setting:temperature:bias
* control-setting:temperature:frequency:multiplier
* debug-aux
* debug-moisture
* debug-temperature
* distance
* elevation
* endless-plateau-with-starting-area-elevation
* enemy-base-frequency
* enemy-base-intensity
* enemy-base-radius
* enemy_base_probability
* moisture
* regular-resource-patch-set-count
* rings
* starting-lake-noise-amplitude
* starting-resource-patch-set-count
* starting_area_weight
* temperature
* tier
* tier_from_start
</div>
</div>
== noise-layer ==
== noise-layer ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* brown-cane
* aux
* brown-fluff
* coal
* coal
* copper-ore
* copper-ore
* coral
* crude-oil
* crude-oil
* dirt
* dirt-1
* dirt-dark
* dirt-2
* dirt-3
* dirt-4
* dirt-5
* dirt-6
* dirt-7
* dry-dirt
* elevation
* elevation
* elevation-persistence
* elevation-persistence
Line 965: Line 1,074:
* fluff
* fluff
* garballo
* garballo
* garballo-mini
* grass-1
* grass
* grass-2
* grass-dry
* grass-3
* grass-medium
* grass-4
* grass1
* grass1
* grass2
* grass2
* green-fluff
* iron-ore
* iron-ore
* moisture
* moisture
* pita
* pita
* pita-mini
* pita-mini
* red-desert
* red-desert-0
* red-desert-dark
* red-desert-1
* sand
* red-desert-2
* sand-dark
* red-desert-3
* red-desert-decal
* rocks
* sand-1
* sand-2
* sand-3
* sand-decal
* sand-dune-decal
* starting-area
* starting-area
* stone
* stone
* temperature
* temperature
* trees
* trees
* trees-1
* trees-10
* trees-11
* trees-12
* trees-13
* trees-14
* trees-15
* trees-2
* trees-3
* trees-4
* trees-5
* trees-6
* trees-7
* trees-8
* trees-9
* uranium-ore
* uranium-ore
</div>
== offshore-pump ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* offshore-pump
</div>
</div>
== optimized-decorative ==
== optimized-decorative ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* big-ship-wreck-grass
* big-ship-wreck-grass
* brown-asterisk
* brown-asterisk
* brown-cane-cluster
* brown-asterisk-mini
* brown-cane-single
* brown-carpet-grass
* brown-carpet-grass
* brown-coral-mini
* brown-fluff
* brown-fluff
* brown-fluff-dry
* brown-fluff-dry
* brown-hairy-grass
* brown-hairy-grass
* dark-mud-decal
* garballo
* garballo
* garballo-mini-dry
* garballo-mini-dry
* green-asterisk
* green-asterisk
* green-asterisk-mini
* green-bush-mini
* green-bush-mini
* green-carpet-grass
* green-carpet-grass
* green-coral-mini
* green-croton
* green-desert-bush
* green-hairy-grass
* green-hairy-grass
* green-pita
* green-pita
* green-pita-mini
* green-pita-mini
* green-small-grass
* green-small-grass
* orange-coral-mini
* lichen
* light-mud-decal
* puberty-decal
* red-asterisk
* red-asterisk
* red-croton
* red-desert-bush
* red-desert-bush
* red-desert-rock-medium
* red-desert-decal
* red-desert-rock-small
* red-pita
* red-desert-rock-tiny
* rock-medium
* root-A
* rock-small
* root-B
* rock-tiny
* small-rock
* sand-decal
* sand-dune-decal
* sand-rock-medium
* sand-rock-small
* small-ship-wreck-grass
* small-ship-wreck-grass
* white-desert-bush
</div>
== particle ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* blood-particle
* branch-particle
* coal-particle
* copper-ore-particle
* explosion-remnants-particle
* iron-ore-particle
* shallow-water-droplet-particle
* shell-particle
* stone-particle
* wooden-particle
</div>
== particle-source ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* blood-fountain
* blood-fountain-big
</div>
</div>
== rail-category ==
== pipe ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* regular
* pipe
</div>
== pipe-to-ground ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* pipe-to-ground
</div>
== player-damaged-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* golem
* watch-your-step
</div>
== player-port ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* player-port
</div>
== power-switch ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* power-switch
</div>
== produce-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* mass-production-1
* mass-production-2
* mass-production-3
</div>
== produce-per-hour-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* circuit-veteran-1
* circuit-veteran-2
* circuit-veteran-3
* computer-age-1
* computer-age-2
* computer-age-3
* iron-throne-1
* iron-throne-2
* iron-throne-3
</div>
== programmable-speaker ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* programmable-speaker
</div>
== projectile ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* atomic-bomb-wave
* atomic-rocket
* blue-laser
* cannon-projectile
* cliff-explosives
* cluster-grenade
* defender-capsule
* destroyer-capsule
* distractor-capsule
* explosive-cannon-projectile
* explosive-rocket
* explosive-uranium-cannon-projectile
* grenade
* laser
* piercing-shotgun-pellet
* poison-capsule
* rocket
* shotgun-pellet
* slowdown-capsule
* uranium-cannon-projectile
</div>
== pump ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* pump
</div>
== radar ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* radar
</div>
== rail-chain-signal ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* rail-chain-signal
</div>
== rail-planner ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* rail
</div>
== rail-remnants ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* curved-rail-remnants
* straight-rail-remnants
</div>
== rail-signal ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* rail-signal
</div>
== reactor ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* nuclear-reactor
</div>
</div>
== recipe ==
== recipe ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* accumulator
* accumulator
* advanced-circuit
* advanced-circuit
* advanced-oil-processing
* advanced-oil-processing
* arithmetic-combinator
* arithmetic-combinator
* artillery-shell
* artillery-targeting-remote
* artillery-turret
* artillery-wagon
* assembling-machine-1
* assembling-machine-1
* assembling-machine-2
* assembling-machine-2
* assembling-machine-3
* assembling-machine-3
* atomic-bomb
* atomic-bomb
* automation-science-pack
* basic-oil-processing
* basic-oil-processing
* battery
* battery
Line 1,036: Line 1,294:
* battery-mk2-equipment
* battery-mk2-equipment
* beacon
* beacon
* belt-immunity-equipment
* big-electric-pole
* big-electric-pole
* boiler
* boiler
Line 1,045: Line 1,304:
* centrifuge
* centrifuge
* chemical-plant
* chemical-plant
* chemical-science-pack
* cliff-explosives
* cluster-grenade
* cluster-grenade
* coal-liquefaction
* coal-liquefaction
Line 1,116: Line 1,377:
* heavy-armor
* heavy-armor
* heavy-oil-cracking
* heavy-oil-cracking
* high-tech-science-pack
* inserter
* inserter
* iron-axe
* iron-chest
* iron-chest
* iron-gear-wheel
* iron-gear-wheel
Line 1,133: Line 1,392:
* locomotive
* locomotive
* logistic-chest-active-provider
* logistic-chest-active-provider
* logistic-chest-buffer
* logistic-chest-passive-provider
* logistic-chest-passive-provider
* logistic-chest-requester
* logistic-chest-requester
* logistic-chest-storage
* logistic-chest-storage
* logistic-robot
* logistic-robot
* logistic-science-pack
* long-handed-inserter
* long-handed-inserter
* low-density-structure
* low-density-structure
Line 1,144: Line 1,405:
* modular-armor
* modular-armor
* night-vision-equipment
* night-vision-equipment
* nuclear-fuel
* nuclear-fuel-reprocessing
* nuclear-fuel-reprocessing
* nuclear-reactor
* nuclear-reactor
Line 1,177: Line 1,439:
* railgun-dart
* railgun-dart
* red-wire
* red-wire
* refined-concrete
* refined-hazard-concrete
* repair-pack
* repair-pack
* roboport
* roboport
Line 1,186: Line 1,450:
* rocket-silo
* rocket-silo
* satellite
* satellite
* science-pack-1
* science-pack-2
* science-pack-3
* shotgun
* shotgun
* shotgun-shell
* shotgun-shell
Line 1,208: Line 1,469:
* steam-engine
* steam-engine
* steam-turbine
* steam-turbine
* steel-axe
* steel-chest
* steel-chest
* steel-furnace
* steel-furnace
Line 1,228: Line 1,488:
* uranium-processing
* uranium-processing
* uranium-rounds-magazine
* uranium-rounds-magazine
* wood
* utility-science-pack
* wooden-chest
* wooden-chest
</div>
</div>
== recipe-category ==
== recipe-category ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* advanced-crafting
* advanced-crafting
* basic-crafting
* centrifuging
* centrifuging
* chemistry
* chemistry
Line 1,241: Line 1,502:
* rocket-building
* rocket-building
* smelting
* smelting
</div>
== repair-tool ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* repair-pack
</div>
== research-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* eco-unfriendly
* tech-maniac
</div>
== resource ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* coal
* copper-ore
* crude-oil
* iron-ore
* stone
* uranium-ore
</div>
</div>
== resource-category ==
== resource-category ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* basic-fluid
* basic-fluid
* basic-solid
* basic-solid
</div>
== roboport ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* compi-roboport
* roboport
</div>
== roboport-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* personal-roboport-equipment
* personal-roboport-mk2-equipment
</div>
== rocket-silo ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* rocket-silo
</div>
== rocket-silo-rocket ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* rocket-silo-rocket
</div>
== rocket-silo-rocket-shadow ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* rocket-silo-rocket-shadow
</div>
== selection-tool ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* selection-tool
</div>
== shortcut ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* copy
* cut
* give-blueprint
* give-blueprint-book
* give-deconstruction-planner
* give-upgrade-planner
* import-string
* paste
* toggle-alt-mode
* toggle-equipment-movement-bonus
* toggle-personal-roboport
* undo
</div>
== simple-entity ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* assembler-wreck
* lab-wreck
* medium-ship-wreck
* mineable-wreckage
* rock-big
* rock-huge
* sand-rock-big
* small-ship-wreck
</div>
== simple-entity-with-force ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* simple-entity-with-force
</div>
== simple-entity-with-owner ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* simple-entity-with-owner
</div>
== smoke ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* smoke-for-migration
</div>
== smoke-with-trigger ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* poison-cloud
</div>
== solar-panel ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* solar-panel
</div>
== solar-panel-equipment ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* solar-panel-equipment
</div>
== sound ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* car-repaired
* mainframe-activated
* worm-sends-biters
</div>
== spectator-controller ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
</div>
== speech-bubble ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* compi-speech-bubble
</div>
== splitter ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* express-splitter
* fast-splitter
* splitter
</div>
== sprite ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* developer
* infinity
* info
* quantity-multiplier
* quantity-time
* quest_gui_empty_status
* restart_required
* tree_view_tileset-empty
* tree_view_tileset-square_d
* tree_view_tileset-square_l
* tree_view_tileset-square_l_d
* tree_view_tileset-square_no_lines
* tree_view_tileset-u_d_r_line
* tree_view_tileset-u_r_line
* tree_view_tileset-vertical_line
</div>
== sticker ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* acid-sticker-behemoth
* acid-sticker-big
* acid-sticker-medium
* acid-sticker-small
* fire-sticker
* slowdown-sticker
* stun-sticker
</div>
== storage-tank ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* storage-tank
</div>
== straight-rail ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* straight-rail
</div>
== stream ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* acid-stream-spitter-behemoth
* acid-stream-spitter-big
* acid-stream-spitter-medium
* acid-stream-spitter-small
* acid-stream-worm-behemoth
* acid-stream-worm-big
* acid-stream-worm-medium
* acid-stream-worm-small
* flamethrower-fire-stream
* handheld-flamethrower-fire-stream
* tank-flamethrower-fire-stream
</div>
</div>
== technology ==
== technology ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* active-defense
* advanced-electronics
* advanced-electronics
* advanced-electronics-2
* advanced-electronics-2
Line 1,254: Line 1,680:
* advanced-material-processing-2
* advanced-material-processing-2
* advanced-oil-processing
* advanced-oil-processing
* analyse-ship
* artillery
* artillery-shell-range-1
* artillery-shell-speed-1
* atomic-bomb
* atomic-bomb
* auto-character-logistic-trash-slots
* auto-character-logistic-trash-slots
Line 1,261: Line 1,691:
* automation-3
* automation-3
* automobilism
* automobilism
* basic-electronics
* basic-logistics
* basic-mapping
* basic-military
* basic-mining
* basic-optics
* battery
* battery
* battery-equipment
* battery-equipment
* battery-mk2-equipment
* battery-mk2-equipment
* belt-immunity-equipment
* braking-force-1
* braking-force-1
* braking-force-2
* braking-force-2
Line 1,271: Line 1,708:
* braking-force-6
* braking-force-6
* braking-force-7
* braking-force-7
* bullet-damage-1
* bullet-damage-2
* bullet-damage-3
* bullet-damage-4
* bullet-damage-5
* bullet-damage-6
* bullet-damage-7
* bullet-speed-1
* bullet-speed-2
* bullet-speed-3
* bullet-speed-4
* bullet-speed-5
* bullet-speed-6
* cannon-shell-damage-1
* cannon-shell-damage-2
* cannon-shell-damage-3
* cannon-shell-damage-4
* cannon-shell-damage-5
* cannon-shell-damage-6
* cannon-shell-speed-1
* cannon-shell-speed-2
* cannon-shell-speed-3
* cannon-shell-speed-4
* cannon-shell-speed-5
* character-logistic-slots-1
* character-logistic-slots-1
* character-logistic-slots-2
* character-logistic-slots-2
Line 1,303: Line 1,716:
* character-logistic-trash-slots-1
* character-logistic-trash-slots-1
* character-logistic-trash-slots-2
* character-logistic-trash-slots-2
* character-logistic-trash-slots-3
* character-logistic-trash-slots-4
* character-logistic-trash-slots-5
* chemical-science-pack
* circuit-network
* circuit-network
* cluster-grenade
* cliff-explosives
* coal-liquefaction
* coal-liquefaction
* combat-robot-damage-1
* combat-robot-damage-2
* combat-robot-damage-3
* combat-robot-damage-4
* combat-robot-damage-5
* combat-robot-damage-6
* combat-robotics
* combat-robotics
* combat-robotics-2
* combat-robotics-2
Line 1,317: Line 1,728:
* concrete
* concrete
* construction-robotics
* construction-robotics
* demo-logistics
* demo-productivity-1
* demo-science-pack
* demo-shooting-speed-1
* discharge-defense-equipment
* discharge-defense-equipment
* effect-transmission
* effect-transmission
Line 1,322: Line 1,737:
* effectivity-module-2
* effectivity-module-2
* effectivity-module-3
* effectivity-module-3
* electric-energy-accumulators-1
* electric-energy-accumulators
* electric-energy-distribution-1
* electric-energy-distribution-1
* electric-energy-distribution-2
* electric-energy-distribution-2
* electric-engine
* electric-engine
* electric-inserter
* electric-mining
* electronics
* electronics
* energy-shield-equipment
* energy-shield-equipment
* energy-shield-mk2-equipment
* energy-shield-mk2-equipment
* energy-weapons-damage-1
* energy-weapons-damage-2
* energy-weapons-damage-3
* energy-weapons-damage-4
* energy-weapons-damage-5
* energy-weapons-damage-6
* energy-weapons-damage-7
* engine
* engine
* exoskeleton-equipment
* exoskeleton-equipment
* explosive-rocketry
* explosive-rocketry
* explosives
* explosives
* fast-inserter
* flamethrower
* flamethrower
* flamethrower-damage-1
* flamethrower-damage-2
* flamethrower-damage-3
* flamethrower-damage-4
* flamethrower-damage-5
* flamethrower-damage-6
* flamethrower-damage-7
* flammables
* flammables
* fluid-handling
* fluid-handling
* fluid-wagon
* fluid-wagon
* flying
* follower-robot-count-1
* follower-robot-count-1
* follower-robot-count-2
* follower-robot-count-2
Line 1,354: Line 1,771:
* fusion-reactor-equipment
* fusion-reactor-equipment
* gates
* gates
* grenade-damage-1
* grenade-damage-2
* grenade-damage-3
* grenade-damage-4
* grenade-damage-5
* grenade-damage-6
* grenade-damage-7
* gun-turret-damage-1
* gun-turret-damage-2
* gun-turret-damage-3
* gun-turret-damage-4
* gun-turret-damage-5
* gun-turret-damage-6
* gun-turret-damage-7
* heavy-armor
* heavy-armor
* improved-equipment
* inserter-capacity-bonus-1
* inserter-capacity-bonus-1
* inserter-capacity-bonus-2
* inserter-capacity-bonus-2
Line 1,380: Line 1,784:
* landfill
* landfill
* laser
* laser
* laser-turret-damage-1
* laser-turret-damage-2
* laser-turret-damage-3
* laser-turret-damage-4
* laser-turret-damage-5
* laser-turret-damage-6
* laser-turret-damage-7
* laser-turret-damage-8
* laser-turret-speed-1
* laser-turret-speed-1
* laser-turret-speed-2
* laser-turret-speed-2
Line 1,397: Line 1,793:
* laser-turrets
* laser-turrets
* logistic-robotics
* logistic-robotics
* logistic-science-pack
* logistic-system
* logistic-system
* logistics
* logistics
* logistics-2
* logistics-2
* logistics-3
* logistics-3
* low-density-structure
* lubricant
* military
* military
* military-2
* military-2
* military-3
* military-3
* military-4
* military-4
* military-science-pack
* mining-productivity-1
* mining-productivity-1
* mining-productivity-12
* mining-productivity-2
* mining-productivity-16
* mining-productivity-3
* mining-productivity-4
* mining-productivity-4
* mining-productivity-8
* modular-armor
* modular-armor
* modules
* modules
Line 1,417: Line 1,816:
* oil-processing
* oil-processing
* optics
* optics
* passive-defense
* personal-laser-defense-equipment
* personal-laser-defense-equipment
* personal-roboport-equipment
* personal-roboport-equipment
* personal-roboport-equipment-2
* personal-roboport-mk2-equipment
* physical-projectile-damage-1
* physical-projectile-damage-2
* physical-projectile-damage-3
* physical-projectile-damage-4
* physical-projectile-damage-5
* physical-projectile-damage-6
* physical-projectile-damage-7
* plastics
* plastics
* power-armor
* power-armor
* power-armor-2
* power-armor-mk2
* production-science-pack
* productivity-module
* productivity-module
* productivity-module-2
* productivity-module-2
* productivity-module-3
* productivity-module-3
* radar
* rail-signals
* rail-signals
* railway
* railway
* refined-flammables-1
* refined-flammables-2
* refined-flammables-3
* refined-flammables-4
* refined-flammables-5
* refined-flammables-6
* refined-flammables-7
* repair-tech
* research-speed-1
* research-speed-1
* research-speed-2
* research-speed-2
Line 1,435: Line 1,852:
* research-speed-6
* research-speed-6
* robotics
* robotics
* rocket-damage-1
* rocket-control-unit
* rocket-damage-2
* rocket-fuel
* rocket-damage-3
* rocket-damage-4
* rocket-damage-5
* rocket-damage-6
* rocket-damage-7
* rocket-silo
* rocket-silo
* rocket-speed-1
* rocket-speed-2
* rocket-speed-3
* rocket-speed-4
* rocket-speed-5
* rocket-speed-6
* rocket-speed-7
* rocketry
* rocketry
* shotgun-shell-damage-1
* shotgun-shell-damage-2
* shotgun-shell-damage-3
* shotgun-shell-damage-4
* shotgun-shell-damage-5
* shotgun-shell-damage-6
* shotgun-shell-damage-7
* shotgun-shell-speed-1
* shotgun-shell-speed-2
* shotgun-shell-speed-3
* shotgun-shell-speed-4
* shotgun-shell-speed-5
* shotgun-shell-speed-6
* solar-energy
* solar-energy
* solar-panel-equipment
* solar-panel-equipment
* space-science-pack
* speed-module
* speed-module
* speed-module-2
* speed-module-2
* speed-module-3
* speed-module-3
* stack-inserter
* stack-inserter
* steel-axe
* steel-processing
* steel-processing
* stone-walls
* stone-walls
* stronger-explosives-1
* stronger-explosives-2
* stronger-explosives-3
* stronger-explosives-4
* stronger-explosives-5
* stronger-explosives-6
* stronger-explosives-7
* sulfur-processing
* sulfur-processing
* tanks
* tanks
Line 1,477: Line 1,878:
* turrets
* turrets
* uranium-ammo
* uranium-ammo
* uranium-processing
* utility-science-pack
* weapon-shooting-speed-1
* weapon-shooting-speed-2
* weapon-shooting-speed-3
* weapon-shooting-speed-4
* weapon-shooting-speed-5
* weapon-shooting-speed-6
* worker-robots-speed-1
* worker-robots-speed-1
* worker-robots-speed-2
* worker-robots-speed-2
Line 1,488: Line 1,897:
</div>
</div>
== tile ==
== tile ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* concrete
* concrete
* deepwater
* deepwater
* deepwater-green
* deepwater-green
* dirt
* dirt-1
* dirt-dark
* dirt-2
* grass
* dirt-3
* grass-dry
* dirt-4
* grass-medium
* dirt-5
* dirt-6
* dirt-7
* dry-dirt
* grass-1
* grass-2
* grass-3
* grass-4
* hazard-concrete-left
* hazard-concrete-left
* hazard-concrete-right
* hazard-concrete-right
* lab-dark-1
* lab-dark-1
* lab-dark-2
* lab-dark-2
* lab-white
* landfill
* out-of-map
* out-of-map
* red-desert
* red-desert-0
* red-desert-dark
* red-desert-1
* sand
* red-desert-2
* sand-dark
* red-desert-3
* refined-concrete
* refined-hazard-concrete-left
* refined-hazard-concrete-right
* sand-1
* sand-2
* sand-3
* stone-path
* stone-path
* tutorial-grid
* water
* water
* water-green
* water-green
* water-mud
* water-shallow
</div>
== tile-ghost ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* tile-ghost
</div>
== tool ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* automation-science-pack
* chemical-science-pack
* logistic-science-pack
* military-science-pack
* production-science-pack
* space-science-pack
* utility-science-pack
</div>
== train-path-achievement ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* trans-factorio-express
</div>
== train-stop ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* train-stop
</div>
== transport-belt ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* express-transport-belt
* fast-transport-belt
* transport-belt
</div>
== tree ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* dead-dry-hairy-tree
* dead-grey-trunk
* dead-tree-desert
* dry-hairy-tree
* dry-tree
* tree-01
* tree-02
* tree-02-red
* tree-03
* tree-04
* tree-05
* tree-06
* tree-06-brown
* tree-07
* tree-08
* tree-08-brown
* tree-08-red
* tree-09
* tree-09-brown
* tree-09-red
</div>
== trigger-target-type ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* ground-unit
</div>
== trivial-smoke ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* artillery-smoke
* car-smoke
* fire-smoke
* fire-smoke-on-adding-fuel
* fire-smoke-without-glow
* light-smoke
* nuclear-smoke
* smoke
* smoke-building
* smoke-explosion-particle
* smoke-fast
* smoke-train-stop
* soft-fire-smoke
* tank-smoke
* train-smoke
* turbine-smoke
</div>
== turret ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* behemoth-worm-turret
* big-worm-turret
* medium-worm-turret
* small-worm-turret
</div>
</div>
== tutorial ==
== tutorial ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* construction-robots
* logistic-system-basic
* stack-transfers
* trains-advanced-signals
* trains-advanced-signals
* trains-basic-signals
* trains-basic-signals
Line 1,517: Line 2,028:
* trains-ghost-rail-planner
* trains-ghost-rail-planner
* trains-stations
* trains-stations
</div>
== underground-belt ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* express-underground-belt
* fast-underground-belt
* underground-belt
</div>
== unit ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* behemoth-biter
* behemoth-spitter
* big-biter
* big-spitter
* compilatron
* medium-biter
* medium-spitter
* small-biter
* small-spitter
</div>
== unit-spawner ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* biter-spawner
* spitter-spawner
</div>
== upgrade-item ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* upgrade-planner
</div>
</div>
== utility-constants ==
== utility-constants ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
* default
</div>
</div>
== utility-sounds ==
== utility-sounds ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
* default
</div>
</div>
== utility-sprites ==
== utility-sprites ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* default
* default
</div>
</div>
== virtual-signal ==
== virtual-signal ==
<div class="factorio-list" style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* signal-0
* signal-0
* signal-1
* signal-1
Line 1,571: Line 2,109:
* signal-black
* signal-black
* signal-blue
* signal-blue
* signal-check
* signal-cyan
* signal-cyan
* signal-dot
* signal-each
* signal-each
* signal-everything
* signal-everything
* signal-green
* signal-green
* signal-grey
* signal-grey
* signal-info
* signal-pink
* signal-pink
* signal-red
* signal-red
* signal-white
* signal-white
* signal-yellow
* signal-yellow
</div>
== wall ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* stone-wall
</div>
== wind-sound ==
<div style="column-count:2;-moz-column-count:2;-webkit-column-count:2">
* wind-1
</div>
</div>

Revision as of 17:19, 6 July 2019

This is a complete listing of all the vanilla prototype's internal names under their prototype types. Further documentation on the types and how they inherit properties can be found on Prototype definitions. For a full serialization of factorio's data.raw as of 0.17.54, click here.

Warning, the above link contains 7 MB of text and may lag your browser.

It is not currently possible to add a NEW type to Factorio, without asking the developers to do it, as these are handled in the closed-source C++ code backbone.

Examples of usage

For finding the internal name of an item/entity, locate it on the wiki and then press the small arrow in its infobox to see the internal name. The infobox will also list the prototype type. With these two things you can access anything from data.raw: local what_you_want_to_access = data.raw["prototype-type"]["internal-name"].

--make raw fish stack higher
data.raw.capsule["raw-fish"].stack_size = 200


-- disable small electric pole recipe
data.raw["recipe"]["small-electric-pole"].enabled = false


data.raw - Structure

This is the full data-structure of Factorio's prototypes and their appearences in the game. It is a very long list, so searching with most browsers' find function (usually Ctrl + f) is recommended.

Pertains to Version 0.17.54

accumulator

  • accumulator

achievement

  • so-long-and-thanks-for-all-the-fish

active-defense-equipment

  • discharge-defense-equipment
  • personal-laser-defense-equipment

ambient-sound

  • after-the-crash
  • anomaly
  • are-we-alone
  • automation
  • beyond-factory-outskirts
  • censeqs-discrepancy
  • efficiency-program
  • expansion
  • first-light
  • gathering-horizon
  • pollution
  • research-and-minerals
  • resource-deficiency
  • sentient
  • solar-intervention
  • swell-pad
  • the-oil-industry
  • the-right-tools
  • the-search-for-iron
  • transmit
  • turbine-dynamics
  • world-ambience-1
  • world-ambience-2
  • world-ambience-3
  • world-ambience-4
  • world-ambience-5
  • world-ambience-6

ammo

  • artillery-shell
  • atomic-bomb
  • cannon-shell
  • explosive-cannon-shell
  • explosive-rocket
  • explosive-uranium-cannon-shell
  • firearm-magazine
  • flamethrower-ammo
  • piercing-rounds-magazine
  • piercing-shotgun-shell
  • railgun-dart
  • rocket
  • shotgun-shell
  • uranium-cannon-shell
  • uranium-rounds-magazine

ammo-category

  • artillery-shell
  • biological
  • bullet
  • cannon-shell
  • capsule
  • combat-robot-beam
  • combat-robot-laser
  • electric
  • flamethrower
  • grenade
  • landmine
  • laser-turret
  • melee
  • railgun
  • rocket
  • shotgun-shell

ammo-turret

  • cutscene-gun-turret
  • gun-turret

arithmetic-combinator

  • arithmetic-combinator

armor

  • heavy-armor
  • light-armor
  • modular-armor
  • power-armor
  • power-armor-mk2

arrow

  • fake-selection-box-2x2
  • orange-arrow-with-circle

artillery-flare

  • artillery-flare

artillery-projectile

  • artillery-projectile

artillery-turret

  • artillery-turret

artillery-wagon

  • artillery-wagon

assembling-machine

  • assembling-machine-1
  • assembling-machine-2
  • assembling-machine-3
  • centrifuge
  • chemical-plant
  • escape-pod-assembler
  • oil-refinery

autoplace-control

  • coal
  • copper-ore
  • crude-oil
  • enemy-base
  • iron-ore
  • stone
  • trees
  • uranium-ore

battery-equipment

  • battery-equipment
  • battery-mk2-equipment

beacon

  • beacon

beam

  • electric-beam
  • electric-beam-no-sound
  • laser-beam

belt-immunity-equipment

  • belt-immunity-equipment

blueprint

  • blueprint

blueprint-book

  • blueprint-book

boiler

  • boiler
  • heat-exchanger

build-entity-achievement

  • getting-on-track
  • getting-on-track-like-a-pro

capsule

  • artillery-targeting-remote
  • cliff-explosives
  • cluster-grenade
  • defender-capsule
  • destroyer-capsule
  • discharge-defense-remote
  • distractor-capsule
  • grenade
  • poison-capsule
  • raw-fish
  • slowdown-capsule

car

  • car
  • tank

cargo-wagon

  • cargo-wagon

character

  • character

character-corpse

  • character-corpse

cliff

  • cliff

combat-robot

  • defender
  • destroyer
  • distractor

combat-robot-count

  • minions

constant-combinator

  • constant-combinator

construct-with-robots-achievement

  • automated-construction
  • you-are-doing-it-right

construction-robot

  • construction-robot

container

  • bait-chest
  • big-ship-wreck-1
  • big-ship-wreck-2
  • big-ship-wreck-3
  • blue-chest
  • compilatron-chest
  • iron-chest
  • red-chest
  • steel-chest
  • wooden-chest

copy-paste-tool

  • copy-paste-tool
  • cut-paste-tool

corpse

  • 1x2-remnants
  • accumulator-remnants
  • arithmetic-combinator-remnants
  • artillery-turret-remnants
  • behemoth-biter-corpse
  • behemoth-spitter-corpse
  • behemoth-worm-corpse
  • big-biter-corpse
  • big-electric-pole-remnants
  • big-remnants
  • big-spitter-corpse
  • big-worm-corpse
  • biter-spawner-corpse
  • boiler-remnants
  • burner-inserter-remnants
  • burner-mining-drill-remnants
  • car-remnants
  • centrifuge-remnants
  • constant-combinator-remnants
  • decider-combinator-remnants
  • express-splitter-remnants
  • express-transport-belt-remnants
  • express-underground-belt-remnants
  • fast-inserter-remnants
  • fast-splitter-remnants
  • fast-transport-belt-remnants
  • fast-underground-belt-remnants
  • filter-inserter-remnants
  • flamethrower-turret-remnants
  • gun-turret-remnants
  • heat-pipe-remnants
  • inserter-remnants
  • lab-remnants
  • lamp-remnants
  • laser-turret-remnants
  • long-handed-inserter-remnants
  • medium-biter-corpse
  • medium-electric-pole-remnants
  • medium-remnants
  • medium-small-remnants
  • medium-spitter-corpse
  • medium-worm-corpse
  • nuclear-reactor-remnants
  • oil-refinery-remnants
  • pipe-remnants
  • pump-remnants
  • pumpjack-remnants
  • radar-remnants
  • rail-chain-signal-remnants
  • rail-signal-remnants
  • roboport-remnants
  • rocket-silo-generic-remnants
  • small-biter-corpse
  • small-electric-pole-remnants
  • small-generic-remnants
  • small-remnants
  • small-scorchmark
  • small-spitter-corpse
  • small-worm-corpse
  • solar-panel-remnants
  • spitter-spawner-corpse
  • splitter-remnants
  • stack-filter-inserter-remnants
  • stack-inserter-remnants
  • steam-engine-remnants
  • steam-turbine-remnants
  • stone-furnace-remnants
  • storage-tank-remnants
  • substation-remnants
  • tank-remnants
  • train-stop-remnants
  • transport-belt-remnants
  • tree-01-stump
  • tree-02-stump
  • tree-03-stump
  • tree-04-stump
  • tree-05-stump
  • tree-06-stump
  • tree-07-stump
  • tree-08-stump
  • tree-09-stump
  • underground-belt-remnants
  • wall-remnants

curved-rail

  • curved-rail

custom-input

  • give-blueprint
  • give-blueprint-book
  • give-deconstruction-planner
  • give-upgrade-planner
  • toggle-equipment-movement-bonus
  • toggle-personal-roboport

damage-type

  • acid
  • electric
  • explosion
  • fire
  • impact
  • laser
  • physical
  • poison

decider-combinator

  • decider-combinator

deconstruct-with-robots-achievement

  • automated-cleanup

deconstructible-tile-proxy

  • deconstructible-tile-proxy

deconstruction-item

  • deconstruction-planner

decorative

  • big-ship-wreck-grass
  • brown-asterisk
  • brown-cane-cluster
  • brown-cane-single
  • brown-carpet-grass
  • brown-coral-mini
  • brown-fluff
  • brown-fluff-dry
  • brown-hairy-grass
  • garballo
  • garballo-mini-dry
  • green-asterisk
  • green-bush-mini
  • green-carpet-grass
  • green-coral-mini
  • green-hairy-grass
  • green-pita
  • green-pita-mini
  • green-small-grass
  • orange-coral-mini
  • red-asterisk
  • root-A
  • root-B
  • small-ship-wreck-grass

deliver-by-robots-achievement

  • delivery-service
  • you-have-got-a-package

dont-build-entity-achievement

  • logistic-network-embargo
  • raining-bullets

dont-craft-manually-achievement

  • lazy-bastard

dont-use-entity-in-energy-production-achievement

  • solaris
  • steam-all-the-way

editor-controller

  • default

electric-energy-interface

  • electric-energy-interface
  • escape-pod-power
  • hidden-electric-energy-interface

electric-pole

  • big-electric-pole
  • medium-electric-pole
  • small-electric-pole
  • substation
  • wreck-pole

electric-turret

  • laser-turret

energy-shield-equipment

  • energy-shield-equipment
  • energy-shield-mk2-equipment

entity-ghost

  • entity-ghost

equipment-category

  • armor

equipment-grid

  • large-equipment-grid
  • medium-equipment-grid
  • small-equipment-grid

explosion

  • artillery-cannon-muzzle-flash
  • big-artillery-explosion
  • big-explosion
  • blood-explosion-big
  • blood-explosion-huge
  • blood-explosion-small
  • explosion
  • explosion-gunshot
  • explosion-gunshot-small
  • explosion-hit
  • ground-explosion
  • laser-bubble
  • massive-explosion
  • medium-explosion
  • railgun-beam
  • uranium-cannon-explosion
  • uranium-cannon-shell-explosion
  • water-splash

finish-the-game-achievement

  • no-time-for-chitchat
  • smoke-me-a-kipper-i-will-be-back-for-breakfast
  • there-is-no-spoon

fire

  • acid-splash-fire-spitter-behemoth
  • acid-splash-fire-spitter-big
  • acid-splash-fire-spitter-medium
  • acid-splash-fire-spitter-small
  • acid-splash-fire-worm-behemoth
  • acid-splash-fire-worm-big
  • acid-splash-fire-worm-medium
  • acid-splash-fire-worm-small
  • fire-flame
  • fire-flame-on-tree

fish

  • fish

flame-thrower-explosion

  • dummy-flame-thrower-explosion

fluid

  • crude-oil
  • heavy-oil
  • light-oil
  • lubricant
  • petroleum-gas
  • steam
  • sulfuric-acid
  • water

fluid-turret

  • flamethrower-turret

fluid-wagon

  • fluid-wagon

flying-text

  • flying-text
  • tile-proxy
  • tree-dying-proxy
  • tree-proxy
  • tutorial-flying-text

font

  • compi
  • compilatron-message-font
  • count-font
  • default
  • default-bold
  • default-dialog-button
  • default-dropdown
  • default-game
  • default-large
  • default-large-bold
  • default-large-semibold
  • default-listbox
  • default-semibold
  • default-small
  • default-small-bold
  • default-small-semibold
  • default-tiny-bold
  • heading-1
  • heading-2
  • heading-3
  • locale-pick
  • scenario-message-dialog
  • technology-slot-level-font
  • var

fuel-category

  • chemical
  • nuclear

furnace

  • electric-furnace
  • steel-furnace
  • stone-furnace

gate

  • gate

generator

  • steam-engine
  • steam-turbine

generator-equipment

  • fusion-reactor-equipment

god-controller

  • default

group-attack-achievement

  • it-stinks-and-they-dont-like-it

gui-style

  • default

gun

  • artillery-wagon-cannon
  • combat-shotgun
  • flamethrower
  • pistol
  • railgun
  • rocket-launcher
  • shotgun
  • submachine-gun
  • tank-cannon
  • tank-flamethrower
  • tank-machine-gun
  • vehicle-machine-gun

heat-interface

  • heat-interface

heat-pipe

  • heat-pipe

highlight-box

  • highlight-box

infinity-container

  • infinity-chest

infinity-pipe

  • infinity-pipe

inserter

  • burner-inserter
  • fast-inserter
  • filter-inserter
  • inserter
  • long-handed-inserter
  • stack-filter-inserter
  • stack-inserter

item

  • accumulator
  • advanced-circuit
  • arithmetic-combinator
  • artillery-turret
  • assembling-machine-1
  • assembling-machine-2
  • assembling-machine-3
  • battery
  • battery-equipment
  • battery-mk2-equipment
  • beacon
  • belt-immunity-equipment
  • big-electric-pole
  • boiler
  • burner-inserter
  • burner-mining-drill
  • centrifuge
  • chemical-plant
  • coal
  • coin
  • compilatron-chest
  • computer
  • concrete
  • constant-combinator
  • construction-robot
  • copper-cable
  • copper-ore
  • copper-plate
  • crude-oil-barrel
  • decider-combinator
  • discharge-defense-equipment
  • electric-energy-interface
  • electric-engine-unit
  • electric-furnace
  • electric-mining-drill
  • electronic-circuit
  • empty-barrel
  • energy-shield-equipment
  • energy-shield-mk2-equipment
  • engine-unit
  • escape-pod-assembler
  • escape-pod-lab
  • escape-pod-power
  • exoskeleton-equipment
  • explosives
  • express-loader
  • express-splitter
  • express-transport-belt
  • express-underground-belt
  • fast-inserter
  • fast-loader
  • fast-splitter
  • fast-transport-belt
  • fast-underground-belt
  • filter-inserter
  • flamethrower-turret
  • flying-robot-frame
  • fusion-reactor-equipment
  • gate
  • green-wire
  • gun-turret
  • hazard-concrete
  • heat-exchanger
  • heat-interface
  • heat-pipe
  • heavy-oil-barrel
  • infinity-chest
  • infinity-pipe
  • inserter
  • iron-chest
  • iron-gear-wheel
  • iron-ore
  • iron-plate
  • iron-stick
  • lab
  • land-mine
  • landfill
  • laser-turret
  • light-oil-barrel
  • loader
  • logistic-chest-active-provider
  • logistic-chest-buffer
  • logistic-chest-passive-provider
  • logistic-chest-requester
  • logistic-chest-storage
  • logistic-robot
  • long-handed-inserter
  • low-density-structure
  • lubricant-barrel
  • medium-electric-pole
  • night-vision-equipment
  • nuclear-fuel
  • nuclear-reactor
  • offshore-pump
  • oil-refinery
  • personal-laser-defense-equipment
  • personal-roboport-equipment
  • personal-roboport-mk2-equipment
  • petroleum-gas-barrel
  • pipe
  • pipe-to-ground
  • plastic-bar
  • player-port
  • pollution
  • power-switch
  • processing-unit
  • programmable-speaker
  • pump
  • pumpjack
  • radar
  • rail-chain-signal
  • rail-signal
  • red-wire
  • refined-concrete
  • refined-hazard-concrete
  • roboport
  • rocket-control-unit
  • rocket-fuel
  • rocket-part
  • rocket-silo
  • satellite
  • simple-entity-with-force
  • simple-entity-with-owner
  • small-electric-pole
  • small-lamp
  • small-plane
  • solar-panel
  • solar-panel-equipment
  • solid-fuel
  • splitter
  • stack-filter-inserter
  • stack-inserter
  • steam-engine
  • steam-turbine
  • steel-chest
  • steel-furnace
  • steel-plate
  • stone
  • stone-brick
  • stone-furnace
  • stone-wall
  • storage-tank
  • substation
  • sulfur
  • sulfuric-acid-barrel
  • train-stop
  • transport-belt
  • underground-belt
  • uranium-235
  • uranium-238
  • uranium-fuel-cell
  • uranium-ore
  • used-up-uranium-fuel-cell
  • water-barrel
  • wood
  • wooden-chest

item-entity

  • item-on-ground

item-group

  • combat
  • enemies
  • environment
  • fluids
  • intermediate-products
  • logistics
  • other
  • production
  • signals

item-request-proxy

  • item-request-proxy

item-subgroup

  • ammo
  • armor
  • belt
  • capsule
  • circuit-network
  • cliffs
  • corpses
  • creatures
  • defensive-structure
  • empty-barrel
  • enemies
  • energy
  • energy-pipe-distribution
  • equipment
  • extraction-machine
  • fill-barrel
  • fluid
  • fluid-recipes
  • grass
  • gun
  • inserter
  • intermediate-product
  • logistic-network
  • module
  • other
  • production-machine
  • raw-material
  • raw-resource
  • remnants
  • science-pack
  • smelting-machine
  • storage
  • terrain
  • tool
  • transport
  • trees
  • virtual-signal
  • virtual-signal-color
  • virtual-signal-letter
  • virtual-signal-number
  • virtual-signal-special
  • wrecks

item-with-entity-data

  • artillery-wagon
  • car
  • cargo-wagon
  • fluid-wagon
  • locomotive
  • tank

item-with-inventory

  • item-with-inventory

item-with-label

  • item-with-label

item-with-tags

  • item-with-tags

kill-achievement

  • pyromaniac
  • run-forrest-run
  • steamrolled

lab

  • escape-pod-lab
  • lab

lamp

  • small-lamp

land-mine

  • land-mine

leaf-particle

  • leaf-particle

loader

  • express-loader
  • fast-loader
  • loader

locomotive

  • locomotive

logistic-container

  • compi-logistics-chest
  • logistic-chest-active-provider
  • logistic-chest-buffer
  • logistic-chest-passive-provider
  • logistic-chest-requester
  • logistic-chest-storage

logistic-robot

  • logistic-robot

map-gen-presets

  • default

map-settings

  • map-settings

market

  • market

mining-drill

  • burner-mining-drill
  • electric-mining-drill
  • pumpjack

mining-tool

  • dummy-steel-axe

module

  • effectivity-module
  • effectivity-module-2
  • effectivity-module-3
  • productivity-module
  • productivity-module-2
  • productivity-module-3
  • speed-module
  • speed-module-2
  • speed-module-3

module-category

  • effectivity
  • productivity
  • speed

mouse-cursor

  • selection-tool-cursor

movement-bonus-equipment

  • exoskeleton-equipment

night-vision-equipment

  • night-vision-equipment

noise-expression

  • 0_16-elevation
  • 0_17-island
  • 0_17-islands+continents
  • 0_17-lakes-elevation
  • 0_17-starting-plateau
  • aux
  • cliffiness
  • control-setting:aux:bias
  • control-setting:aux:frequency:multiplier
  • control-setting:moisture:bias
  • control-setting:moisture:frequency:multiplier
  • control-setting:temperature:bias
  • control-setting:temperature:frequency:multiplier
  • debug-aux
  • debug-moisture
  • debug-temperature
  • distance
  • elevation
  • endless-plateau-with-starting-area-elevation
  • enemy-base-frequency
  • enemy-base-intensity
  • enemy-base-radius
  • enemy_base_probability
  • moisture
  • regular-resource-patch-set-count
  • rings
  • starting-lake-noise-amplitude
  • starting-resource-patch-set-count
  • starting_area_weight
  • temperature
  • tier
  • tier_from_start

noise-layer

  • aux
  • brown-fluff
  • coal
  • copper-ore
  • crude-oil
  • dirt-1
  • dirt-2
  • dirt-3
  • dirt-4
  • dirt-5
  • dirt-6
  • dirt-7
  • dry-dirt
  • elevation
  • elevation-persistence
  • enemy-base
  • fluff
  • garballo
  • grass-1
  • grass-2
  • grass-3
  • grass-4
  • grass1
  • grass2
  • green-fluff
  • iron-ore
  • moisture
  • pita
  • pita-mini
  • red-desert-0
  • red-desert-1
  • red-desert-2
  • red-desert-3
  • red-desert-decal
  • rocks
  • sand-1
  • sand-2
  • sand-3
  • sand-decal
  • sand-dune-decal
  • starting-area
  • stone
  • temperature
  • trees
  • trees-1
  • trees-10
  • trees-11
  • trees-12
  • trees-13
  • trees-14
  • trees-15
  • trees-2
  • trees-3
  • trees-4
  • trees-5
  • trees-6
  • trees-7
  • trees-8
  • trees-9
  • uranium-ore

offshore-pump

  • offshore-pump

optimized-decorative

  • big-ship-wreck-grass
  • brown-asterisk
  • brown-asterisk-mini
  • brown-carpet-grass
  • brown-fluff
  • brown-fluff-dry
  • brown-hairy-grass
  • dark-mud-decal
  • garballo
  • garballo-mini-dry
  • green-asterisk
  • green-asterisk-mini
  • green-bush-mini
  • green-carpet-grass
  • green-croton
  • green-desert-bush
  • green-hairy-grass
  • green-pita
  • green-pita-mini
  • green-small-grass
  • lichen
  • light-mud-decal
  • puberty-decal
  • red-asterisk
  • red-croton
  • red-desert-bush
  • red-desert-decal
  • red-pita
  • rock-medium
  • rock-small
  • rock-tiny
  • sand-decal
  • sand-dune-decal
  • sand-rock-medium
  • sand-rock-small
  • small-ship-wreck-grass
  • white-desert-bush

particle

  • blood-particle
  • branch-particle
  • coal-particle
  • copper-ore-particle
  • explosion-remnants-particle
  • iron-ore-particle
  • shallow-water-droplet-particle
  • shell-particle
  • stone-particle
  • wooden-particle

particle-source

  • blood-fountain
  • blood-fountain-big

pipe

  • pipe

pipe-to-ground

  • pipe-to-ground

player-damaged-achievement

  • golem
  • watch-your-step

player-port

  • player-port

power-switch

  • power-switch

produce-achievement

  • mass-production-1
  • mass-production-2
  • mass-production-3

produce-per-hour-achievement

  • circuit-veteran-1
  • circuit-veteran-2
  • circuit-veteran-3
  • computer-age-1
  • computer-age-2
  • computer-age-3
  • iron-throne-1
  • iron-throne-2
  • iron-throne-3

programmable-speaker

  • programmable-speaker

projectile

  • atomic-bomb-wave
  • atomic-rocket
  • blue-laser
  • cannon-projectile
  • cliff-explosives
  • cluster-grenade
  • defender-capsule
  • destroyer-capsule
  • distractor-capsule
  • explosive-cannon-projectile
  • explosive-rocket
  • explosive-uranium-cannon-projectile
  • grenade
  • laser
  • piercing-shotgun-pellet
  • poison-capsule
  • rocket
  • shotgun-pellet
  • slowdown-capsule
  • uranium-cannon-projectile

pump

  • pump

radar

  • radar

rail-chain-signal

  • rail-chain-signal

rail-planner

  • rail

rail-remnants

  • curved-rail-remnants
  • straight-rail-remnants

rail-signal

  • rail-signal

reactor

  • nuclear-reactor

recipe

  • accumulator
  • advanced-circuit
  • advanced-oil-processing
  • arithmetic-combinator
  • artillery-shell
  • artillery-targeting-remote
  • artillery-turret
  • artillery-wagon
  • assembling-machine-1
  • assembling-machine-2
  • assembling-machine-3
  • atomic-bomb
  • automation-science-pack
  • basic-oil-processing
  • battery
  • battery-equipment
  • battery-mk2-equipment
  • beacon
  • belt-immunity-equipment
  • big-electric-pole
  • boiler
  • burner-inserter
  • burner-mining-drill
  • cannon-shell
  • car
  • cargo-wagon
  • centrifuge
  • chemical-plant
  • chemical-science-pack
  • cliff-explosives
  • cluster-grenade
  • coal-liquefaction
  • combat-shotgun
  • concrete
  • constant-combinator
  • construction-robot
  • copper-cable
  • copper-plate
  • decider-combinator
  • defender-capsule
  • destroyer-capsule
  • discharge-defense-equipment
  • discharge-defense-remote
  • distractor-capsule
  • effectivity-module
  • effectivity-module-2
  • effectivity-module-3
  • electric-energy-interface
  • electric-engine-unit
  • electric-furnace
  • electric-mining-drill
  • electronic-circuit
  • empty-barrel
  • empty-crude-oil-barrel
  • empty-heavy-oil-barrel
  • empty-light-oil-barrel
  • empty-lubricant-barrel
  • empty-petroleum-gas-barrel
  • empty-sulfuric-acid-barrel
  • empty-water-barrel
  • energy-shield-equipment
  • energy-shield-mk2-equipment
  • engine-unit
  • exoskeleton-equipment
  • explosive-cannon-shell
  • explosive-rocket
  • explosive-uranium-cannon-shell
  • explosives
  • express-loader
  • express-splitter
  • express-transport-belt
  • express-underground-belt
  • fast-inserter
  • fast-loader
  • fast-splitter
  • fast-transport-belt
  • fast-underground-belt
  • fill-crude-oil-barrel
  • fill-heavy-oil-barrel
  • fill-light-oil-barrel
  • fill-lubricant-barrel
  • fill-petroleum-gas-barrel
  • fill-sulfuric-acid-barrel
  • fill-water-barrel
  • filter-inserter
  • firearm-magazine
  • flamethrower
  • flamethrower-ammo
  • flamethrower-turret
  • fluid-wagon
  • flying-robot-frame
  • fusion-reactor-equipment
  • gate
  • green-wire
  • grenade
  • gun-turret
  • hazard-concrete
  • heat-exchanger
  • heat-pipe
  • heavy-armor
  • heavy-oil-cracking
  • inserter
  • iron-chest
  • iron-gear-wheel
  • iron-plate
  • iron-stick
  • kovarex-enrichment-process
  • lab
  • land-mine
  • landfill
  • laser-turret
  • light-armor
  • light-oil-cracking
  • loader
  • locomotive
  • logistic-chest-active-provider
  • logistic-chest-buffer
  • logistic-chest-passive-provider
  • logistic-chest-requester
  • logistic-chest-storage
  • logistic-robot
  • logistic-science-pack
  • long-handed-inserter
  • low-density-structure
  • lubricant
  • medium-electric-pole
  • military-science-pack
  • modular-armor
  • night-vision-equipment
  • nuclear-fuel
  • nuclear-fuel-reprocessing
  • nuclear-reactor
  • offshore-pump
  • oil-refinery
  • personal-laser-defense-equipment
  • personal-roboport-equipment
  • personal-roboport-mk2-equipment
  • piercing-rounds-magazine
  • piercing-shotgun-shell
  • pipe
  • pipe-to-ground
  • pistol
  • plastic-bar
  • player-port
  • poison-capsule
  • power-armor
  • power-armor-mk2
  • power-switch
  • processing-unit
  • production-science-pack
  • productivity-module
  • productivity-module-2
  • productivity-module-3
  • programmable-speaker
  • pump
  • pumpjack
  • radar
  • rail
  • rail-chain-signal
  • rail-signal
  • railgun
  • railgun-dart
  • red-wire
  • refined-concrete
  • refined-hazard-concrete
  • repair-pack
  • roboport
  • rocket
  • rocket-control-unit
  • rocket-fuel
  • rocket-launcher
  • rocket-part
  • rocket-silo
  • satellite
  • shotgun
  • shotgun-shell
  • slowdown-capsule
  • small-electric-pole
  • small-lamp
  • small-plane
  • solar-panel
  • solar-panel-equipment
  • solid-fuel-from-heavy-oil
  • solid-fuel-from-light-oil
  • solid-fuel-from-petroleum-gas
  • speed-module
  • speed-module-2
  • speed-module-3
  • splitter
  • stack-filter-inserter
  • stack-inserter
  • steam-engine
  • steam-turbine
  • steel-chest
  • steel-furnace
  • steel-plate
  • stone-brick
  • stone-furnace
  • stone-wall
  • storage-tank
  • submachine-gun
  • substation
  • sulfur
  • sulfuric-acid
  • tank
  • train-stop
  • transport-belt
  • underground-belt
  • uranium-cannon-shell
  • uranium-fuel-cell
  • uranium-processing
  • uranium-rounds-magazine
  • utility-science-pack
  • wooden-chest

recipe-category

  • advanced-crafting
  • basic-crafting
  • centrifuging
  • chemistry
  • crafting
  • crafting-with-fluid
  • oil-processing
  • rocket-building
  • smelting

repair-tool

  • repair-pack

research-achievement

  • eco-unfriendly
  • tech-maniac

resource

  • coal
  • copper-ore
  • crude-oil
  • iron-ore
  • stone
  • uranium-ore

resource-category

  • basic-fluid
  • basic-solid

roboport

  • compi-roboport
  • roboport

roboport-equipment

  • personal-roboport-equipment
  • personal-roboport-mk2-equipment

rocket-silo

  • rocket-silo

rocket-silo-rocket

  • rocket-silo-rocket

rocket-silo-rocket-shadow

  • rocket-silo-rocket-shadow

selection-tool

  • selection-tool

shortcut

  • copy
  • cut
  • give-blueprint
  • give-blueprint-book
  • give-deconstruction-planner
  • give-upgrade-planner
  • import-string
  • paste
  • toggle-alt-mode
  • toggle-equipment-movement-bonus
  • toggle-personal-roboport
  • undo

simple-entity

  • assembler-wreck
  • lab-wreck
  • medium-ship-wreck
  • mineable-wreckage
  • rock-big
  • rock-huge
  • sand-rock-big
  • small-ship-wreck

simple-entity-with-force

  • simple-entity-with-force

simple-entity-with-owner

  • simple-entity-with-owner

smoke

  • smoke-for-migration

smoke-with-trigger

  • poison-cloud

solar-panel

  • solar-panel

solar-panel-equipment

  • solar-panel-equipment

sound

  • car-repaired
  • mainframe-activated
  • worm-sends-biters

spectator-controller

  • default

speech-bubble

  • compi-speech-bubble

splitter

  • express-splitter
  • fast-splitter
  • splitter

sprite

  • developer
  • infinity
  • info
  • quantity-multiplier
  • quantity-time
  • quest_gui_empty_status
  • restart_required
  • tree_view_tileset-empty
  • tree_view_tileset-square_d
  • tree_view_tileset-square_l
  • tree_view_tileset-square_l_d
  • tree_view_tileset-square_no_lines
  • tree_view_tileset-u_d_r_line
  • tree_view_tileset-u_r_line
  • tree_view_tileset-vertical_line

sticker

  • acid-sticker-behemoth
  • acid-sticker-big
  • acid-sticker-medium
  • acid-sticker-small
  • fire-sticker
  • slowdown-sticker
  • stun-sticker

storage-tank

  • storage-tank

straight-rail

  • straight-rail

stream

  • acid-stream-spitter-behemoth
  • acid-stream-spitter-big
  • acid-stream-spitter-medium
  • acid-stream-spitter-small
  • acid-stream-worm-behemoth
  • acid-stream-worm-big
  • acid-stream-worm-medium
  • acid-stream-worm-small
  • flamethrower-fire-stream
  • handheld-flamethrower-fire-stream
  • tank-flamethrower-fire-stream

technology

  • active-defense
  • advanced-electronics
  • advanced-electronics-2
  • advanced-material-processing
  • advanced-material-processing-2
  • advanced-oil-processing
  • analyse-ship
  • artillery
  • artillery-shell-range-1
  • artillery-shell-speed-1
  • atomic-bomb
  • auto-character-logistic-trash-slots
  • automated-rail-transportation
  • automation
  • automation-2
  • automation-3
  • automobilism
  • basic-electronics
  • basic-logistics
  • basic-mapping
  • basic-military
  • basic-mining
  • basic-optics
  • battery
  • battery-equipment
  • battery-mk2-equipment
  • belt-immunity-equipment
  • braking-force-1
  • braking-force-2
  • braking-force-3
  • braking-force-4
  • braking-force-5
  • braking-force-6
  • braking-force-7
  • character-logistic-slots-1
  • character-logistic-slots-2
  • character-logistic-slots-3
  • character-logistic-slots-4
  • character-logistic-slots-5
  • character-logistic-slots-6
  • character-logistic-trash-slots-1
  • character-logistic-trash-slots-2
  • character-logistic-trash-slots-3
  • character-logistic-trash-slots-4
  • character-logistic-trash-slots-5
  • chemical-science-pack
  • circuit-network
  • cliff-explosives
  • coal-liquefaction
  • combat-robotics
  • combat-robotics-2
  • combat-robotics-3
  • concrete
  • construction-robotics
  • demo-logistics
  • demo-productivity-1
  • demo-science-pack
  • demo-shooting-speed-1
  • discharge-defense-equipment
  • effect-transmission
  • effectivity-module
  • effectivity-module-2
  • effectivity-module-3
  • electric-energy-accumulators
  • electric-energy-distribution-1
  • electric-energy-distribution-2
  • electric-engine
  • electric-inserter
  • electric-mining
  • electronics
  • energy-shield-equipment
  • energy-shield-mk2-equipment
  • energy-weapons-damage-1
  • energy-weapons-damage-2
  • energy-weapons-damage-3
  • energy-weapons-damage-4
  • energy-weapons-damage-5
  • energy-weapons-damage-6
  • energy-weapons-damage-7
  • engine
  • exoskeleton-equipment
  • explosive-rocketry
  • explosives
  • fast-inserter
  • flamethrower
  • flammables
  • fluid-handling
  • fluid-wagon
  • follower-robot-count-1
  • follower-robot-count-2
  • follower-robot-count-3
  • follower-robot-count-4
  • follower-robot-count-5
  • follower-robot-count-6
  • follower-robot-count-7
  • fusion-reactor-equipment
  • gates
  • heavy-armor
  • improved-equipment
  • inserter-capacity-bonus-1
  • inserter-capacity-bonus-2
  • inserter-capacity-bonus-3
  • inserter-capacity-bonus-4
  • inserter-capacity-bonus-5
  • inserter-capacity-bonus-6
  • inserter-capacity-bonus-7
  • kovarex-enrichment-process
  • land-mine
  • landfill
  • laser
  • laser-turret-speed-1
  • laser-turret-speed-2
  • laser-turret-speed-3
  • laser-turret-speed-4
  • laser-turret-speed-5
  • laser-turret-speed-6
  • laser-turret-speed-7
  • laser-turrets
  • logistic-robotics
  • logistic-science-pack
  • logistic-system
  • logistics
  • logistics-2
  • logistics-3
  • low-density-structure
  • lubricant
  • military
  • military-2
  • military-3
  • military-4
  • military-science-pack
  • mining-productivity-1
  • mining-productivity-2
  • mining-productivity-3
  • mining-productivity-4
  • modular-armor
  • modules
  • night-vision-equipment
  • nuclear-fuel-reprocessing
  • nuclear-power
  • oil-processing
  • optics
  • passive-defense
  • personal-laser-defense-equipment
  • personal-roboport-equipment
  • personal-roboport-mk2-equipment
  • physical-projectile-damage-1
  • physical-projectile-damage-2
  • physical-projectile-damage-3
  • physical-projectile-damage-4
  • physical-projectile-damage-5
  • physical-projectile-damage-6
  • physical-projectile-damage-7
  • plastics
  • power-armor
  • power-armor-mk2
  • production-science-pack
  • productivity-module
  • productivity-module-2
  • productivity-module-3
  • radar
  • rail-signals
  • railway
  • refined-flammables-1
  • refined-flammables-2
  • refined-flammables-3
  • refined-flammables-4
  • refined-flammables-5
  • refined-flammables-6
  • refined-flammables-7
  • repair-tech
  • research-speed-1
  • research-speed-2
  • research-speed-3
  • research-speed-4
  • research-speed-5
  • research-speed-6
  • robotics
  • rocket-control-unit
  • rocket-fuel
  • rocket-silo
  • rocketry
  • solar-energy
  • solar-panel-equipment
  • space-science-pack
  • speed-module
  • speed-module-2
  • speed-module-3
  • stack-inserter
  • steel-axe
  • steel-processing
  • stone-walls
  • stronger-explosives-1
  • stronger-explosives-2
  • stronger-explosives-3
  • stronger-explosives-4
  • stronger-explosives-5
  • stronger-explosives-6
  • stronger-explosives-7
  • sulfur-processing
  • tanks
  • toolbelt
  • turrets
  • uranium-ammo
  • uranium-processing
  • utility-science-pack
  • weapon-shooting-speed-1
  • weapon-shooting-speed-2
  • weapon-shooting-speed-3
  • weapon-shooting-speed-4
  • weapon-shooting-speed-5
  • weapon-shooting-speed-6
  • worker-robots-speed-1
  • worker-robots-speed-2
  • worker-robots-speed-3
  • worker-robots-speed-4
  • worker-robots-speed-5
  • worker-robots-speed-6
  • worker-robots-storage-1
  • worker-robots-storage-2
  • worker-robots-storage-3

tile

  • concrete
  • deepwater
  • deepwater-green
  • dirt-1
  • dirt-2
  • dirt-3
  • dirt-4
  • dirt-5
  • dirt-6
  • dirt-7
  • dry-dirt
  • grass-1
  • grass-2
  • grass-3
  • grass-4
  • hazard-concrete-left
  • hazard-concrete-right
  • lab-dark-1
  • lab-dark-2
  • lab-white
  • landfill
  • out-of-map
  • red-desert-0
  • red-desert-1
  • red-desert-2
  • red-desert-3
  • refined-concrete
  • refined-hazard-concrete-left
  • refined-hazard-concrete-right
  • sand-1
  • sand-2
  • sand-3
  • stone-path
  • tutorial-grid
  • water
  • water-green
  • water-mud
  • water-shallow

tile-ghost

  • tile-ghost

tool

  • automation-science-pack
  • chemical-science-pack
  • logistic-science-pack
  • military-science-pack
  • production-science-pack
  • space-science-pack
  • utility-science-pack

train-path-achievement

  • trans-factorio-express

train-stop

  • train-stop

transport-belt

  • express-transport-belt
  • fast-transport-belt
  • transport-belt

tree

  • dead-dry-hairy-tree
  • dead-grey-trunk
  • dead-tree-desert
  • dry-hairy-tree
  • dry-tree
  • tree-01
  • tree-02
  • tree-02-red
  • tree-03
  • tree-04
  • tree-05
  • tree-06
  • tree-06-brown
  • tree-07
  • tree-08
  • tree-08-brown
  • tree-08-red
  • tree-09
  • tree-09-brown
  • tree-09-red

trigger-target-type

  • ground-unit

trivial-smoke

  • artillery-smoke
  • car-smoke
  • fire-smoke
  • fire-smoke-on-adding-fuel
  • fire-smoke-without-glow
  • light-smoke
  • nuclear-smoke
  • smoke
  • smoke-building
  • smoke-explosion-particle
  • smoke-fast
  • smoke-train-stop
  • soft-fire-smoke
  • tank-smoke
  • train-smoke
  • turbine-smoke

turret

  • behemoth-worm-turret
  • big-worm-turret
  • medium-worm-turret
  • small-worm-turret

tutorial

  • construction-robots
  • logistic-system-basic
  • stack-transfers
  • trains-advanced-signals
  • trains-basic-signals
  • trains-basics
  • trains-ghost-rail-planner
  • trains-stations

underground-belt

  • express-underground-belt
  • fast-underground-belt
  • underground-belt

unit

  • behemoth-biter
  • behemoth-spitter
  • big-biter
  • big-spitter
  • compilatron
  • medium-biter
  • medium-spitter
  • small-biter
  • small-spitter

unit-spawner

  • biter-spawner
  • spitter-spawner

upgrade-item

  • upgrade-planner

utility-constants

  • default

utility-sounds

  • default

utility-sprites

  • default

virtual-signal

  • signal-0
  • signal-1
  • signal-2
  • signal-3
  • signal-4
  • signal-5
  • signal-6
  • signal-7
  • signal-8
  • signal-9
  • signal-A
  • signal-B
  • signal-C
  • signal-D
  • signal-E
  • signal-F
  • signal-G
  • signal-H
  • signal-I
  • signal-J
  • signal-K
  • signal-L
  • signal-M
  • signal-N
  • signal-O
  • signal-P
  • signal-Q
  • signal-R
  • signal-S
  • signal-T
  • signal-U
  • signal-V
  • signal-W
  • signal-X
  • signal-Y
  • signal-Z
  • signal-anything
  • signal-black
  • signal-blue
  • signal-check
  • signal-cyan
  • signal-dot
  • signal-each
  • signal-everything
  • signal-green
  • signal-grey
  • signal-info
  • signal-pink
  • signal-red
  • signal-white
  • signal-yellow

wall

  • stone-wall

wind-sound

  • wind-1