├── README.md ├── base ├── data-updates.lua ├── data.lua ├── info.json ├── migrations │ ├── 1.1.0.json │ ├── 1.2.0 stack inserter rename.json │ ├── 2.0.0-biter-egg.json │ ├── 2.0.0-internal.json │ ├── 2.0.0-internal2.json │ ├── 2.0.0-internal3.json │ ├── 2.0.0.json │ ├── 2.0.0.lua │ └── migrations.txt └── prototypes │ ├── achievements.lua │ ├── ambient-sounds.lua │ ├── autoplace-controls.lua │ ├── categories │ ├── ammo-category.lua │ ├── equipment-category.lua │ ├── fuel-category.lua │ ├── module-category.lua │ ├── quality.lua │ ├── recipe-category.lua │ └── resource-category.lua │ ├── collision-layers.lua │ ├── custom-inputs.lua │ ├── damage-type.lua │ ├── decorative │ ├── decorative-trigger-effects.lua │ └── decoratives.lua │ ├── demo.lua │ ├── entity │ ├── artillery-cannon-muzzle-flash-shifting.lua │ ├── assemblerpipes.lua │ ├── atomic-bomb.lua │ ├── beacon-animations.lua │ ├── beams.lua │ ├── biter-ai-settings.lua │ ├── biter-animations.lua │ ├── biter-die-effects.lua │ ├── cargo-hatch.lua │ ├── cargo-pod-catalogue.lua │ ├── character-animations.lua │ ├── circuit-network.lua │ ├── combinator-pictures.lua │ ├── crash-site.lua │ ├── enemies.lua │ ├── enemy-autoplace-utils.lua │ ├── enemy-constants.lua │ ├── enemy-projectiles.lua │ ├── entities.lua │ ├── entity-util.lua │ ├── explosion-animations.lua │ ├── explosions.lua │ ├── factorio-logo.lua │ ├── fire.lua │ ├── flying-robots.lua │ ├── giga-cargo-hatch.lua │ ├── hit-effects.lua │ ├── laser-sounds.lua │ ├── mining-drill.lua │ ├── movement-triggers.lua │ ├── pipecovers.lua │ ├── projectiles.lua │ ├── pump-connector.lua │ ├── rail-pictures.lua │ ├── remnants.lua │ ├── resources.lua │ ├── rocket-projectile-pictures.lua │ ├── smoke-animations.lua │ ├── smoke.lua │ ├── sounds.lua │ ├── spawner-animation.lua │ ├── spidertron-animations.lua │ ├── spidertron-light-positions.lua │ ├── spitter-animations.lua │ ├── trains.lua │ ├── transport-belts.lua │ ├── trees.lua │ ├── turrets.lua │ └── worm-animations.lua │ ├── equipment-grid.lua │ ├── equipment.lua │ ├── factoriopedia-simulations.lua │ ├── factoriopedia-util.lua │ ├── fire-util.lua │ ├── fluid.lua │ ├── impact-deliver-category.lua │ ├── item-groups.lua │ ├── item-tints.lua │ ├── item.lua │ ├── item_sounds.lua │ ├── map-gen-presets.lua │ ├── map-settings.lua │ ├── noise-expressions.lua │ ├── particle-animations.lua │ ├── particles.lua │ ├── planet │ ├── planet-map-gen.lua │ ├── planet.lua │ ├── procession-audio-catalogue-types.lua │ ├── procession-graphic-catalogue-types.lua │ ├── procession-style.lua │ ├── procession.lua │ └── surface-property.lua │ ├── pollution.lua │ ├── recipe.lua │ ├── shortcuts.lua │ ├── signal.lua │ ├── technology.lua │ ├── tile │ ├── tile-collision-masks.lua │ ├── tile-graphics.lua │ ├── tile-pollution-values.lua │ ├── tile-sounds.lua │ ├── tile-trigger-effects.lua │ └── tiles.lua │ ├── tips-and-tricks-simulations.lua │ ├── tips-and-tricks.lua │ ├── trigger-target-types.lua │ ├── tutorials.lua │ └── utility-sprites.lua ├── changelog.txt ├── core ├── backers.json ├── data.lua ├── info.json ├── lualib │ ├── autoplace_utils.lua │ ├── bonus-gui-ordering.lua │ ├── circuit-connector-generated-definitions.lua │ ├── circuit-connector-sprites.lua │ ├── collision-mask-defaults.lua │ ├── collision-mask-util.lua │ ├── crash-site.lua │ ├── data-duplicate-checker.lua │ ├── dataloader.lua │ ├── event_handler.lua │ ├── kill-score.lua │ ├── math2d.lua │ ├── math3d.lua │ ├── meld.lua │ ├── mod-gui.lua │ ├── production-score.lua │ ├── resource-autoplace.lua │ ├── silo-script.lua │ ├── sound-util.lua │ ├── space-finish-script.lua │ ├── story.lua │ ├── surface-render-parameter-effects.lua │ └── util.lua └── prototypes │ ├── burner-usage.lua │ ├── cursors.lua │ ├── editor-controller.lua │ ├── fonts.lua │ ├── god-controller.lua │ ├── noise-functions.lua │ ├── noise-programs.lua │ ├── parameters.lua │ ├── remote-controller.lua │ ├── spectator-controller.lua │ ├── style.lua │ ├── unknown.lua │ ├── utility-constants.lua │ ├── utility-sounds.lua │ └── utility-sprites.lua ├── credits.txt ├── elevated-rails ├── data.lua ├── info.json └── prototypes │ ├── base-data-updates.lua │ ├── entity │ ├── elevated-rail-pictures.lua │ ├── elevated-rails.lua │ ├── explosions.lua │ └── remnants.lua │ ├── item │ └── elevated-rails.lua │ ├── particles.lua │ ├── recipe │ └── elevated-rails.lua │ ├── sloped-trains-updates.lua │ ├── technology │ └── elevated-rails.lua │ ├── tips-and-tricks-simulations.lua │ └── tips-and-tricks.lua ├── map-gen-settings.example.json ├── map-settings.example.json ├── quality ├── data-updates.lua ├── data.lua ├── info.json └── prototypes │ ├── base-data-updates.lua │ ├── entity │ ├── entity.lua │ ├── explosions.lua │ ├── recycler-pictures.lua │ └── remnants.lua │ ├── item.lua │ ├── module-category.lua │ ├── quality.lua │ ├── recipe.lua │ ├── recycling.lua │ ├── signal.lua │ ├── technology.lua │ ├── tips-and-tricks-simulations.lua │ └── tips-and-tricks.lua ├── server-settings.example.json ├── server-whitelist.example.json └── space-age ├── base-data-updates.lua ├── data-updates.lua ├── data.lua ├── info.json ├── migrations ├── aquilo-tilesets.json ├── biolab.json ├── internal.json ├── jelly-yum-rename.json ├── shattered-planet.json └── tungsten-belt-rename.json └── prototypes ├── achievements.lua ├── active-triggers.lua ├── ambient-sounds.lua ├── autoplace-controls.lua ├── burner-usage.lua ├── categories ├── ammo-category.lua ├── fuel-category.lua ├── recipe-category.lua └── resource-category.lua ├── decorative ├── decoratives-aquilo.lua ├── decoratives-fulgora.lua ├── decoratives-gleba.lua ├── decoratives-vulcanus.lua └── decoratives.lua ├── entity ├── agricultural-tower-crane.lua ├── asteroid-collector-pictures.lua ├── asteroid.lua ├── base-frozen-graphics.lua ├── beams.lua ├── big-mining-drill.lua ├── biochamber-pictures.lua ├── cargo-hatch.lua ├── cargo-pod-catalogue.lua ├── circuit-network.lua ├── crusher-pictures.lua ├── cryogenic-plant-pictures.lua ├── electromagnetic-plant-pictures.lua ├── enemies.lua ├── entities.lua ├── explosion-animations.lua ├── explosions.lua ├── flying-robots.lua ├── foundry-pictures.lua ├── fusion-system-pictures.lua ├── giga-cargo-hatch.lua ├── gleba-ai-settings.lua ├── gleba-enemy-animations.lua ├── lightning-collector-graphics.lua ├── lightning-rod-graphics.lua ├── mech-armor-animations.lua ├── plants.lua ├── projectiles.lua ├── railgun-turret-pictures.lua ├── remnants.lua ├── resources.lua ├── smoke.lua ├── sounds.lua ├── space-enemy-autoplace-utils.lua ├── space-platform-hub-cockpit.lua ├── transport-belts.lua ├── trees.lua └── turrets.lua ├── equipment-grid.lua ├── equipment.lua ├── factoriopedia-simulations.lua ├── fluid.lua ├── item-effects.lua ├── item-groups.lua ├── item.lua ├── item_sounds.lua ├── particle-animations.lua ├── particles.lua ├── planet ├── asteroid-spawn-definitions.lua ├── general │ ├── general-functions.lua │ ├── general-variables.lua │ ├── planet-to-platform.lua │ ├── planet-to-platform │ │ ├── audio-events.lua │ │ ├── cloud-layers.lua │ │ ├── pod-layers-a.lua │ │ ├── pod-layers-b.lua │ │ ├── pod-layers-i.lua │ │ ├── rocket-layers.lua │ │ └── space-layers.lua │ ├── platform-to-planet.lua │ └── platform-to-planet │ │ ├── audio-events.lua │ │ ├── cloud-layers.lua │ │ ├── pod-layers-a.lua │ │ ├── pod-layers-b.lua │ │ ├── pod-layers-i.lua │ │ └── space-layers.lua ├── planet-aquilo-map-gen.lua ├── planet-fulgora-map-gen.lua ├── planet-gleba-map-gen.lua ├── planet-map-gen.lua ├── planet-vulcanus-map-gen.lua ├── planet.lua ├── procession-catalogue-aquilo.lua ├── procession-catalogue-fulgora.lua ├── procession-catalogue-gleba.lua ├── procession-catalogue-vulcanus.lua ├── procession-common.lua └── procession.lua ├── recipe.lua ├── spores.lua ├── surface.lua ├── technology.lua ├── tile ├── platform-tile-animations.lua ├── tile-pollution-values.lua ├── tile-sounds.lua ├── tile-trigger-effects.lua ├── tiles-aquilo.lua ├── tiles-fulgora.lua ├── tiles-gleba.lua ├── tiles-vulcanus.lua └── tiles.lua ├── tips-and-tricks-simulations.lua ├── tips-and-tricks.lua ├── utility-sounds.lua └── utility-sprites.lua /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/README.md -------------------------------------------------------------------------------- /base/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/data-updates.lua -------------------------------------------------------------------------------- /base/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/data.lua -------------------------------------------------------------------------------- /base/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/info.json -------------------------------------------------------------------------------- /base/migrations/1.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/1.1.0.json -------------------------------------------------------------------------------- /base/migrations/1.2.0 stack inserter rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/1.2.0 stack inserter rename.json -------------------------------------------------------------------------------- /base/migrations/2.0.0-biter-egg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/2.0.0-biter-egg.json -------------------------------------------------------------------------------- /base/migrations/2.0.0-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/2.0.0-internal.json -------------------------------------------------------------------------------- /base/migrations/2.0.0-internal2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/2.0.0-internal2.json -------------------------------------------------------------------------------- /base/migrations/2.0.0-internal3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/2.0.0-internal3.json -------------------------------------------------------------------------------- /base/migrations/2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/2.0.0.json -------------------------------------------------------------------------------- /base/migrations/2.0.0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/2.0.0.lua -------------------------------------------------------------------------------- /base/migrations/migrations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/migrations/migrations.txt -------------------------------------------------------------------------------- /base/prototypes/achievements.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/achievements.lua -------------------------------------------------------------------------------- /base/prototypes/ambient-sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/ambient-sounds.lua -------------------------------------------------------------------------------- /base/prototypes/autoplace-controls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/autoplace-controls.lua -------------------------------------------------------------------------------- /base/prototypes/categories/ammo-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/categories/ammo-category.lua -------------------------------------------------------------------------------- /base/prototypes/categories/equipment-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/categories/equipment-category.lua -------------------------------------------------------------------------------- /base/prototypes/categories/fuel-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/categories/fuel-category.lua -------------------------------------------------------------------------------- /base/prototypes/categories/module-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/categories/module-category.lua -------------------------------------------------------------------------------- /base/prototypes/categories/quality.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/categories/quality.lua -------------------------------------------------------------------------------- /base/prototypes/categories/recipe-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/categories/recipe-category.lua -------------------------------------------------------------------------------- /base/prototypes/categories/resource-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/categories/resource-category.lua -------------------------------------------------------------------------------- /base/prototypes/collision-layers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/collision-layers.lua -------------------------------------------------------------------------------- /base/prototypes/custom-inputs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/custom-inputs.lua -------------------------------------------------------------------------------- /base/prototypes/damage-type.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/damage-type.lua -------------------------------------------------------------------------------- /base/prototypes/decorative/decorative-trigger-effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/decorative/decorative-trigger-effects.lua -------------------------------------------------------------------------------- /base/prototypes/decorative/decoratives.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/decorative/decoratives.lua -------------------------------------------------------------------------------- /base/prototypes/demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/demo.lua -------------------------------------------------------------------------------- /base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua -------------------------------------------------------------------------------- /base/prototypes/entity/assemblerpipes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/assemblerpipes.lua -------------------------------------------------------------------------------- /base/prototypes/entity/atomic-bomb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/atomic-bomb.lua -------------------------------------------------------------------------------- /base/prototypes/entity/beacon-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/beacon-animations.lua -------------------------------------------------------------------------------- /base/prototypes/entity/beams.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/beams.lua -------------------------------------------------------------------------------- /base/prototypes/entity/biter-ai-settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/biter-ai-settings.lua -------------------------------------------------------------------------------- /base/prototypes/entity/biter-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/biter-animations.lua -------------------------------------------------------------------------------- /base/prototypes/entity/biter-die-effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/biter-die-effects.lua -------------------------------------------------------------------------------- /base/prototypes/entity/cargo-hatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/cargo-hatch.lua -------------------------------------------------------------------------------- /base/prototypes/entity/cargo-pod-catalogue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/cargo-pod-catalogue.lua -------------------------------------------------------------------------------- /base/prototypes/entity/character-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/character-animations.lua -------------------------------------------------------------------------------- /base/prototypes/entity/circuit-network.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/circuit-network.lua -------------------------------------------------------------------------------- /base/prototypes/entity/combinator-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/combinator-pictures.lua -------------------------------------------------------------------------------- /base/prototypes/entity/crash-site.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/crash-site.lua -------------------------------------------------------------------------------- /base/prototypes/entity/enemies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/enemies.lua -------------------------------------------------------------------------------- /base/prototypes/entity/enemy-autoplace-utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/enemy-autoplace-utils.lua -------------------------------------------------------------------------------- /base/prototypes/entity/enemy-constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/enemy-constants.lua -------------------------------------------------------------------------------- /base/prototypes/entity/enemy-projectiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/enemy-projectiles.lua -------------------------------------------------------------------------------- /base/prototypes/entity/entities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/entities.lua -------------------------------------------------------------------------------- /base/prototypes/entity/entity-util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/entity-util.lua -------------------------------------------------------------------------------- /base/prototypes/entity/explosion-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/explosion-animations.lua -------------------------------------------------------------------------------- /base/prototypes/entity/explosions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/explosions.lua -------------------------------------------------------------------------------- /base/prototypes/entity/factorio-logo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/factorio-logo.lua -------------------------------------------------------------------------------- /base/prototypes/entity/fire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/fire.lua -------------------------------------------------------------------------------- /base/prototypes/entity/flying-robots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/flying-robots.lua -------------------------------------------------------------------------------- /base/prototypes/entity/giga-cargo-hatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/giga-cargo-hatch.lua -------------------------------------------------------------------------------- /base/prototypes/entity/hit-effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/hit-effects.lua -------------------------------------------------------------------------------- /base/prototypes/entity/laser-sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/laser-sounds.lua -------------------------------------------------------------------------------- /base/prototypes/entity/mining-drill.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/mining-drill.lua -------------------------------------------------------------------------------- /base/prototypes/entity/movement-triggers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/movement-triggers.lua -------------------------------------------------------------------------------- /base/prototypes/entity/pipecovers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/pipecovers.lua -------------------------------------------------------------------------------- /base/prototypes/entity/projectiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/projectiles.lua -------------------------------------------------------------------------------- /base/prototypes/entity/pump-connector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/pump-connector.lua -------------------------------------------------------------------------------- /base/prototypes/entity/rail-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/rail-pictures.lua -------------------------------------------------------------------------------- /base/prototypes/entity/remnants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/remnants.lua -------------------------------------------------------------------------------- /base/prototypes/entity/resources.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/resources.lua -------------------------------------------------------------------------------- /base/prototypes/entity/rocket-projectile-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/rocket-projectile-pictures.lua -------------------------------------------------------------------------------- /base/prototypes/entity/smoke-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/smoke-animations.lua -------------------------------------------------------------------------------- /base/prototypes/entity/smoke.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/smoke.lua -------------------------------------------------------------------------------- /base/prototypes/entity/sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/sounds.lua -------------------------------------------------------------------------------- /base/prototypes/entity/spawner-animation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/spawner-animation.lua -------------------------------------------------------------------------------- /base/prototypes/entity/spidertron-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/spidertron-animations.lua -------------------------------------------------------------------------------- /base/prototypes/entity/spidertron-light-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/spidertron-light-positions.lua -------------------------------------------------------------------------------- /base/prototypes/entity/spitter-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/spitter-animations.lua -------------------------------------------------------------------------------- /base/prototypes/entity/trains.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/trains.lua -------------------------------------------------------------------------------- /base/prototypes/entity/transport-belts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/transport-belts.lua -------------------------------------------------------------------------------- /base/prototypes/entity/trees.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/trees.lua -------------------------------------------------------------------------------- /base/prototypes/entity/turrets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/turrets.lua -------------------------------------------------------------------------------- /base/prototypes/entity/worm-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/entity/worm-animations.lua -------------------------------------------------------------------------------- /base/prototypes/equipment-grid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/equipment-grid.lua -------------------------------------------------------------------------------- /base/prototypes/equipment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/equipment.lua -------------------------------------------------------------------------------- /base/prototypes/factoriopedia-simulations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/factoriopedia-simulations.lua -------------------------------------------------------------------------------- /base/prototypes/factoriopedia-util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/factoriopedia-util.lua -------------------------------------------------------------------------------- /base/prototypes/fire-util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/fire-util.lua -------------------------------------------------------------------------------- /base/prototypes/fluid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/fluid.lua -------------------------------------------------------------------------------- /base/prototypes/impact-deliver-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/impact-deliver-category.lua -------------------------------------------------------------------------------- /base/prototypes/item-groups.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/item-groups.lua -------------------------------------------------------------------------------- /base/prototypes/item-tints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/item-tints.lua -------------------------------------------------------------------------------- /base/prototypes/item.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/item.lua -------------------------------------------------------------------------------- /base/prototypes/item_sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/item_sounds.lua -------------------------------------------------------------------------------- /base/prototypes/map-gen-presets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/map-gen-presets.lua -------------------------------------------------------------------------------- /base/prototypes/map-settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/map-settings.lua -------------------------------------------------------------------------------- /base/prototypes/noise-expressions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/noise-expressions.lua -------------------------------------------------------------------------------- /base/prototypes/particle-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/particle-animations.lua -------------------------------------------------------------------------------- /base/prototypes/particles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/particles.lua -------------------------------------------------------------------------------- /base/prototypes/planet/planet-map-gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/planet/planet-map-gen.lua -------------------------------------------------------------------------------- /base/prototypes/planet/planet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/planet/planet.lua -------------------------------------------------------------------------------- /base/prototypes/planet/procession-audio-catalogue-types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/planet/procession-audio-catalogue-types.lua -------------------------------------------------------------------------------- /base/prototypes/planet/procession-graphic-catalogue-types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/planet/procession-graphic-catalogue-types.lua -------------------------------------------------------------------------------- /base/prototypes/planet/procession-style.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/planet/procession-style.lua -------------------------------------------------------------------------------- /base/prototypes/planet/procession.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/planet/procession.lua -------------------------------------------------------------------------------- /base/prototypes/planet/surface-property.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/planet/surface-property.lua -------------------------------------------------------------------------------- /base/prototypes/pollution.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/pollution.lua -------------------------------------------------------------------------------- /base/prototypes/recipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/recipe.lua -------------------------------------------------------------------------------- /base/prototypes/shortcuts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/shortcuts.lua -------------------------------------------------------------------------------- /base/prototypes/signal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/signal.lua -------------------------------------------------------------------------------- /base/prototypes/technology.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/technology.lua -------------------------------------------------------------------------------- /base/prototypes/tile/tile-collision-masks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tile/tile-collision-masks.lua -------------------------------------------------------------------------------- /base/prototypes/tile/tile-graphics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tile/tile-graphics.lua -------------------------------------------------------------------------------- /base/prototypes/tile/tile-pollution-values.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tile/tile-pollution-values.lua -------------------------------------------------------------------------------- /base/prototypes/tile/tile-sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tile/tile-sounds.lua -------------------------------------------------------------------------------- /base/prototypes/tile/tile-trigger-effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tile/tile-trigger-effects.lua -------------------------------------------------------------------------------- /base/prototypes/tile/tiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tile/tiles.lua -------------------------------------------------------------------------------- /base/prototypes/tips-and-tricks-simulations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tips-and-tricks-simulations.lua -------------------------------------------------------------------------------- /base/prototypes/tips-and-tricks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tips-and-tricks.lua -------------------------------------------------------------------------------- /base/prototypes/trigger-target-types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/trigger-target-types.lua -------------------------------------------------------------------------------- /base/prototypes/tutorials.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/tutorials.lua -------------------------------------------------------------------------------- /base/prototypes/utility-sprites.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/base/prototypes/utility-sprites.lua -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/changelog.txt -------------------------------------------------------------------------------- /core/backers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/backers.json -------------------------------------------------------------------------------- /core/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/data.lua -------------------------------------------------------------------------------- /core/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/info.json -------------------------------------------------------------------------------- /core/lualib/autoplace_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/autoplace_utils.lua -------------------------------------------------------------------------------- /core/lualib/bonus-gui-ordering.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/bonus-gui-ordering.lua -------------------------------------------------------------------------------- /core/lualib/circuit-connector-generated-definitions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/circuit-connector-generated-definitions.lua -------------------------------------------------------------------------------- /core/lualib/circuit-connector-sprites.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/circuit-connector-sprites.lua -------------------------------------------------------------------------------- /core/lualib/collision-mask-defaults.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/collision-mask-defaults.lua -------------------------------------------------------------------------------- /core/lualib/collision-mask-util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/collision-mask-util.lua -------------------------------------------------------------------------------- /core/lualib/crash-site.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/crash-site.lua -------------------------------------------------------------------------------- /core/lualib/data-duplicate-checker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/data-duplicate-checker.lua -------------------------------------------------------------------------------- /core/lualib/dataloader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/dataloader.lua -------------------------------------------------------------------------------- /core/lualib/event_handler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/event_handler.lua -------------------------------------------------------------------------------- /core/lualib/kill-score.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/kill-score.lua -------------------------------------------------------------------------------- /core/lualib/math2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/math2d.lua -------------------------------------------------------------------------------- /core/lualib/math3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/math3d.lua -------------------------------------------------------------------------------- /core/lualib/meld.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/meld.lua -------------------------------------------------------------------------------- /core/lualib/mod-gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/mod-gui.lua -------------------------------------------------------------------------------- /core/lualib/production-score.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/production-score.lua -------------------------------------------------------------------------------- /core/lualib/resource-autoplace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/resource-autoplace.lua -------------------------------------------------------------------------------- /core/lualib/silo-script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/silo-script.lua -------------------------------------------------------------------------------- /core/lualib/sound-util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/sound-util.lua -------------------------------------------------------------------------------- /core/lualib/space-finish-script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/space-finish-script.lua -------------------------------------------------------------------------------- /core/lualib/story.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/story.lua -------------------------------------------------------------------------------- /core/lualib/surface-render-parameter-effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/surface-render-parameter-effects.lua -------------------------------------------------------------------------------- /core/lualib/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/lualib/util.lua -------------------------------------------------------------------------------- /core/prototypes/burner-usage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/burner-usage.lua -------------------------------------------------------------------------------- /core/prototypes/cursors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/cursors.lua -------------------------------------------------------------------------------- /core/prototypes/editor-controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/editor-controller.lua -------------------------------------------------------------------------------- /core/prototypes/fonts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/fonts.lua -------------------------------------------------------------------------------- /core/prototypes/god-controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/god-controller.lua -------------------------------------------------------------------------------- /core/prototypes/noise-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/noise-functions.lua -------------------------------------------------------------------------------- /core/prototypes/noise-programs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/noise-programs.lua -------------------------------------------------------------------------------- /core/prototypes/parameters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/parameters.lua -------------------------------------------------------------------------------- /core/prototypes/remote-controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/remote-controller.lua -------------------------------------------------------------------------------- /core/prototypes/spectator-controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/spectator-controller.lua -------------------------------------------------------------------------------- /core/prototypes/style.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/style.lua -------------------------------------------------------------------------------- /core/prototypes/unknown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/unknown.lua -------------------------------------------------------------------------------- /core/prototypes/utility-constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/utility-constants.lua -------------------------------------------------------------------------------- /core/prototypes/utility-sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/utility-sounds.lua -------------------------------------------------------------------------------- /core/prototypes/utility-sprites.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/core/prototypes/utility-sprites.lua -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/credits.txt -------------------------------------------------------------------------------- /elevated-rails/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/data.lua -------------------------------------------------------------------------------- /elevated-rails/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/info.json -------------------------------------------------------------------------------- /elevated-rails/prototypes/base-data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/base-data-updates.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/entity/elevated-rail-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/entity/elevated-rail-pictures.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/entity/elevated-rails.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/entity/elevated-rails.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/entity/explosions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/entity/explosions.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/entity/remnants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/entity/remnants.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/item/elevated-rails.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/item/elevated-rails.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/particles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/particles.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/recipe/elevated-rails.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/recipe/elevated-rails.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/sloped-trains-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/sloped-trains-updates.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/technology/elevated-rails.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/technology/elevated-rails.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/tips-and-tricks-simulations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/tips-and-tricks-simulations.lua -------------------------------------------------------------------------------- /elevated-rails/prototypes/tips-and-tricks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/elevated-rails/prototypes/tips-and-tricks.lua -------------------------------------------------------------------------------- /map-gen-settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/map-gen-settings.example.json -------------------------------------------------------------------------------- /map-settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/map-settings.example.json -------------------------------------------------------------------------------- /quality/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/data-updates.lua -------------------------------------------------------------------------------- /quality/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/data.lua -------------------------------------------------------------------------------- /quality/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/info.json -------------------------------------------------------------------------------- /quality/prototypes/base-data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/base-data-updates.lua -------------------------------------------------------------------------------- /quality/prototypes/entity/entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/entity/entity.lua -------------------------------------------------------------------------------- /quality/prototypes/entity/explosions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/entity/explosions.lua -------------------------------------------------------------------------------- /quality/prototypes/entity/recycler-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/entity/recycler-pictures.lua -------------------------------------------------------------------------------- /quality/prototypes/entity/remnants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/entity/remnants.lua -------------------------------------------------------------------------------- /quality/prototypes/item.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/item.lua -------------------------------------------------------------------------------- /quality/prototypes/module-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/module-category.lua -------------------------------------------------------------------------------- /quality/prototypes/quality.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/quality.lua -------------------------------------------------------------------------------- /quality/prototypes/recipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/recipe.lua -------------------------------------------------------------------------------- /quality/prototypes/recycling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/recycling.lua -------------------------------------------------------------------------------- /quality/prototypes/signal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/signal.lua -------------------------------------------------------------------------------- /quality/prototypes/technology.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/technology.lua -------------------------------------------------------------------------------- /quality/prototypes/tips-and-tricks-simulations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/tips-and-tricks-simulations.lua -------------------------------------------------------------------------------- /quality/prototypes/tips-and-tricks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/quality/prototypes/tips-and-tricks.lua -------------------------------------------------------------------------------- /server-settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/server-settings.example.json -------------------------------------------------------------------------------- /server-whitelist.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/server-whitelist.example.json -------------------------------------------------------------------------------- /space-age/base-data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/base-data-updates.lua -------------------------------------------------------------------------------- /space-age/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/data-updates.lua -------------------------------------------------------------------------------- /space-age/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/data.lua -------------------------------------------------------------------------------- /space-age/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/info.json -------------------------------------------------------------------------------- /space-age/migrations/aquilo-tilesets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/migrations/aquilo-tilesets.json -------------------------------------------------------------------------------- /space-age/migrations/biolab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/migrations/biolab.json -------------------------------------------------------------------------------- /space-age/migrations/internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/migrations/internal.json -------------------------------------------------------------------------------- /space-age/migrations/jelly-yum-rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/migrations/jelly-yum-rename.json -------------------------------------------------------------------------------- /space-age/migrations/shattered-planet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/migrations/shattered-planet.json -------------------------------------------------------------------------------- /space-age/migrations/tungsten-belt-rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/migrations/tungsten-belt-rename.json -------------------------------------------------------------------------------- /space-age/prototypes/achievements.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/achievements.lua -------------------------------------------------------------------------------- /space-age/prototypes/active-triggers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/active-triggers.lua -------------------------------------------------------------------------------- /space-age/prototypes/ambient-sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/ambient-sounds.lua -------------------------------------------------------------------------------- /space-age/prototypes/autoplace-controls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/autoplace-controls.lua -------------------------------------------------------------------------------- /space-age/prototypes/burner-usage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/burner-usage.lua -------------------------------------------------------------------------------- /space-age/prototypes/categories/ammo-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/categories/ammo-category.lua -------------------------------------------------------------------------------- /space-age/prototypes/categories/fuel-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/categories/fuel-category.lua -------------------------------------------------------------------------------- /space-age/prototypes/categories/recipe-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/categories/recipe-category.lua -------------------------------------------------------------------------------- /space-age/prototypes/categories/resource-category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/categories/resource-category.lua -------------------------------------------------------------------------------- /space-age/prototypes/decorative/decoratives-aquilo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/decorative/decoratives-aquilo.lua -------------------------------------------------------------------------------- /space-age/prototypes/decorative/decoratives-fulgora.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/decorative/decoratives-fulgora.lua -------------------------------------------------------------------------------- /space-age/prototypes/decorative/decoratives-gleba.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/decorative/decoratives-gleba.lua -------------------------------------------------------------------------------- /space-age/prototypes/decorative/decoratives-vulcanus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/decorative/decoratives-vulcanus.lua -------------------------------------------------------------------------------- /space-age/prototypes/decorative/decoratives.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/decorative/decoratives.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/agricultural-tower-crane.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/agricultural-tower-crane.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/asteroid-collector-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/asteroid-collector-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/asteroid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/asteroid.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/base-frozen-graphics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/base-frozen-graphics.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/beams.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/beams.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/big-mining-drill.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/big-mining-drill.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/biochamber-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/biochamber-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/cargo-hatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/cargo-hatch.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/cargo-pod-catalogue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/cargo-pod-catalogue.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/circuit-network.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/circuit-network.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/crusher-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/crusher-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/cryogenic-plant-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/cryogenic-plant-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/electromagnetic-plant-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/electromagnetic-plant-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/enemies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/enemies.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/entities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/entities.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/explosion-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/explosion-animations.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/explosions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/explosions.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/flying-robots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/flying-robots.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/foundry-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/foundry-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/fusion-system-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/fusion-system-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/giga-cargo-hatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/giga-cargo-hatch.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/gleba-ai-settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/gleba-ai-settings.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/gleba-enemy-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/gleba-enemy-animations.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/lightning-collector-graphics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/lightning-collector-graphics.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/lightning-rod-graphics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/lightning-rod-graphics.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/mech-armor-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/mech-armor-animations.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/plants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/plants.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/projectiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/projectiles.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/railgun-turret-pictures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/railgun-turret-pictures.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/remnants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/remnants.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/resources.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/resources.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/smoke.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/smoke.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/sounds.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/space-enemy-autoplace-utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/space-enemy-autoplace-utils.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/space-platform-hub-cockpit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/space-platform-hub-cockpit.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/transport-belts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/transport-belts.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/trees.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/trees.lua -------------------------------------------------------------------------------- /space-age/prototypes/entity/turrets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/entity/turrets.lua -------------------------------------------------------------------------------- /space-age/prototypes/equipment-grid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/equipment-grid.lua -------------------------------------------------------------------------------- /space-age/prototypes/equipment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/equipment.lua -------------------------------------------------------------------------------- /space-age/prototypes/factoriopedia-simulations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/factoriopedia-simulations.lua -------------------------------------------------------------------------------- /space-age/prototypes/fluid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/fluid.lua -------------------------------------------------------------------------------- /space-age/prototypes/item-effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/item-effects.lua -------------------------------------------------------------------------------- /space-age/prototypes/item-groups.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/item-groups.lua -------------------------------------------------------------------------------- /space-age/prototypes/item.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/item.lua -------------------------------------------------------------------------------- /space-age/prototypes/item_sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/item_sounds.lua -------------------------------------------------------------------------------- /space-age/prototypes/particle-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/particle-animations.lua -------------------------------------------------------------------------------- /space-age/prototypes/particles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/particles.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/asteroid-spawn-definitions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/asteroid-spawn-definitions.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/general-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/general-functions.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/general-variables.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/general-variables.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform/audio-events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform/audio-events.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform/cloud-layers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform/cloud-layers.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform/pod-layers-a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform/pod-layers-a.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform/pod-layers-b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform/pod-layers-b.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform/pod-layers-i.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform/pod-layers-i.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform/rocket-layers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform/rocket-layers.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/planet-to-platform/space-layers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/planet-to-platform/space-layers.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/platform-to-planet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/platform-to-planet.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/platform-to-planet/audio-events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/platform-to-planet/audio-events.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/platform-to-planet/cloud-layers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/platform-to-planet/cloud-layers.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/platform-to-planet/pod-layers-a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/platform-to-planet/pod-layers-a.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/platform-to-planet/pod-layers-b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/platform-to-planet/pod-layers-b.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/platform-to-planet/pod-layers-i.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/platform-to-planet/pod-layers-i.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/general/platform-to-planet/space-layers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/general/platform-to-planet/space-layers.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/planet-aquilo-map-gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/planet-aquilo-map-gen.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/planet-fulgora-map-gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/planet-fulgora-map-gen.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/planet-gleba-map-gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/planet-gleba-map-gen.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/planet-map-gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/planet-map-gen.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/planet-vulcanus-map-gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/planet-vulcanus-map-gen.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/planet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/planet.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/procession-catalogue-aquilo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/procession-catalogue-aquilo.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/procession-catalogue-fulgora.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/procession-catalogue-fulgora.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/procession-catalogue-gleba.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/procession-catalogue-gleba.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/procession-catalogue-vulcanus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/procession-catalogue-vulcanus.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/procession-common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/procession-common.lua -------------------------------------------------------------------------------- /space-age/prototypes/planet/procession.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/planet/procession.lua -------------------------------------------------------------------------------- /space-age/prototypes/recipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/recipe.lua -------------------------------------------------------------------------------- /space-age/prototypes/spores.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/spores.lua -------------------------------------------------------------------------------- /space-age/prototypes/surface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/surface.lua -------------------------------------------------------------------------------- /space-age/prototypes/technology.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/technology.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/platform-tile-animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/platform-tile-animations.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tile-pollution-values.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tile-pollution-values.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tile-sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tile-sounds.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tile-trigger-effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tile-trigger-effects.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tiles-aquilo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tiles-aquilo.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tiles-fulgora.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tiles-fulgora.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tiles-gleba.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tiles-gleba.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tiles-vulcanus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tiles-vulcanus.lua -------------------------------------------------------------------------------- /space-age/prototypes/tile/tiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tile/tiles.lua -------------------------------------------------------------------------------- /space-age/prototypes/tips-and-tricks-simulations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tips-and-tricks-simulations.lua -------------------------------------------------------------------------------- /space-age/prototypes/tips-and-tricks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/tips-and-tricks.lua -------------------------------------------------------------------------------- /space-age/prototypes/utility-sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/utility-sounds.lua -------------------------------------------------------------------------------- /space-age/prototypes/utility-sprites.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wube/factorio-data/HEAD/space-age/prototypes/utility-sprites.lua --------------------------------------------------------------------------------