├── .github └── workflows │ └── stylua.yml ├── .gitignore ├── License.md ├── bob_mod_builder.py ├── bobassembly ├── changelog.txt ├── data-final-fixes.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ ├── assembling-machine │ │ │ ├── assembling-machine-1-shadow.png │ │ │ ├── assembling-machine-1.png │ │ │ ├── assembling-machine-2-shadow.png │ │ │ ├── assembling-machine-2.png │ │ │ ├── assembling-machine-3-shadow.png │ │ │ ├── assembling-machine-3.png │ │ │ └── assembling-machine-mask.png │ │ ├── chemical-plant │ │ │ ├── chemical-plant-highlights.png │ │ │ ├── chemical-plant-mask.png │ │ │ ├── chemical-plant-shadow.png │ │ │ ├── chemical-plant.png │ │ │ └── remnants │ │ │ │ ├── chemical-plant-remnants-mask.png │ │ │ │ └── chemical-plant-remnants.png │ │ ├── electric-furnace │ │ │ ├── electric-chemical-mixing-furnace-2.png │ │ │ ├── electric-chemical-mixing-furnace.png │ │ │ ├── electric-furnace-heater.png │ │ │ ├── electric-furnace-mask.png │ │ │ ├── electric-furnace-propeller-1.png │ │ │ ├── electric-furnace-propeller-2.png │ │ │ ├── electric-furnace-shadow.png │ │ │ └── electric-furnace.png │ │ ├── electrolyser │ │ │ ├── electrolyser-2-base.png │ │ │ ├── electrolyser-2-highlights.png │ │ │ ├── electrolyser-2-mask.png │ │ │ ├── electrolyser-2-shadow.png │ │ │ ├── electrolyser-3-base.png │ │ │ ├── electrolyser-3-highlights.png │ │ │ ├── electrolyser-3-mask.png │ │ │ ├── electrolyser-3-shadow.png │ │ │ ├── electrolyser-4-base.png │ │ │ ├── electrolyser-4-highlights.png │ │ │ ├── electrolyser-4-mask.png │ │ │ ├── electrolyser-4-shadow.png │ │ │ ├── electrolyser-5-base.png │ │ │ ├── electrolyser-5-highlights.png │ │ │ ├── electrolyser-5-mask.png │ │ │ └── electrolyser-5-shadow.png │ │ └── oil-refinery │ │ │ ├── oil-refinery-fire.png │ │ │ └── oil-refinery.png │ └── icons │ │ ├── assembling-machine-1.png │ │ ├── assembling-machine-2.png │ │ ├── assembling-machine-3.png │ │ ├── assembling-machine-4.png │ │ ├── assembling-machine-5.png │ │ ├── assembling-machine-6.png │ │ ├── burner-assembling-machine.png │ │ ├── chemical-plant-1.png │ │ ├── chemical-plant-2.png │ │ ├── chemical-plant-3.png │ │ ├── chemical-plant-4.png │ │ ├── distillery-blue.png │ │ ├── distillery-green.png │ │ ├── distillery-purple.png │ │ ├── distillery-red.png │ │ ├── electric-chemical-mixing-furnace-2.png │ │ ├── electric-chemical-mixing-furnace.png │ │ ├── electric-furnace-2.png │ │ ├── electric-furnace-3.png │ │ ├── electrolyser-2.png │ │ ├── electrolyser-3.png │ │ ├── electrolyser-4.png │ │ ├── electrolyser-5.png │ │ ├── electronics-machine-1.png │ │ ├── electronics-machine-2.png │ │ ├── electronics-machine-3.png │ │ ├── steam-assembling-machine.png │ │ └── technology │ │ ├── alloy-processing.png │ │ ├── centrifuge.png │ │ ├── chemical-plant-2.png │ │ ├── chemical-plant-256.png │ │ ├── chemical-plant-3.png │ │ ├── chemical-plant-4.png │ │ ├── chemical-plant.png │ │ ├── chemical-processing.png │ │ ├── chemistry.png │ │ ├── distillery-blue.png │ │ ├── distillery-green.png │ │ ├── distillery-purple.png │ │ ├── distillery-red.png │ │ └── electrolyser.png ├── info.json ├── locale │ ├── de │ │ └── bobassembly.cfg │ ├── en │ │ └── bobassembly.cfg │ ├── ru │ │ └── bobassembly.cfg │ ├── uk │ │ └── bobassembly.cfg │ └── zh-TW │ │ └── bobassembly.cfg ├── migrations │ ├── bobassembly_0.18.6.json │ └── bobassembly_2.0.0.json ├── prototypes │ ├── assembly-burner.lua │ ├── assembly-electronics-updates.lua │ ├── assembly-electronics.lua │ ├── assembly-updates.lua │ ├── assembly.lua │ ├── centrifuge-updates.lua │ ├── centrifuge.lua │ ├── chemical-mixing-furnace-updates.lua │ ├── chemical-mixing-furnace.lua │ ├── chemical-plant-updates.lua │ ├── chemical-plant.lua │ ├── distillery-updates.lua │ ├── distillery.lua │ ├── electric-furnace-updates.lua │ ├── electric-furnace.lua │ ├── electrolyser-updates.lua │ ├── electrolyser.lua │ ├── fluid-furnace-updates.lua │ ├── fluid-furnace.lua │ ├── oil-refinery-updates.lua │ └── oil-refinery.lua ├── settings.lua └── thumbnail.png ├── bobclasses ├── changelog.txt ├── control.lua ├── data-updates.lua ├── data.lua ├── icons │ ├── 2.png │ ├── 3.png │ ├── balanced-2.png │ ├── balanced.png │ ├── bodies │ │ ├── ayase-boots.png │ │ ├── body.png │ │ ├── boots.png │ │ ├── brain-2.png │ │ ├── brain-3.png │ │ ├── brain-4.png │ │ ├── brain.png │ │ ├── exoskeleton.png │ │ ├── fission-core.png │ │ ├── gloves.png │ │ ├── head.png │ │ └── shell.png │ ├── builder-2.png │ ├── builder.png │ ├── character.png │ ├── crafter-2.png │ ├── crafter.png │ ├── engineer.png │ ├── fighter-2.png │ ├── fighter.png │ ├── sapper.png │ └── sprites │ │ ├── balanced-2.png │ │ ├── balanced.png │ │ ├── builder-2.png │ │ ├── builder.png │ │ ├── crafter-2.png │ │ ├── crafter.png │ │ ├── engineer.png │ │ ├── fighter-2.png │ │ ├── fighter.png │ │ └── sapper.png ├── info.json ├── locale │ ├── de │ │ └── bobclasses.cfg │ ├── en │ │ └── bobclasses.cfg │ ├── ru │ │ └── bobclasses.cfg │ ├── uk │ │ └── bobclasses.cfg │ └── zh-TW │ │ └── bobclasses.cfg ├── migrations │ ├── bobclasses_0.17.4.json │ └── bobclasses_2.0.0.json ├── prototypes │ ├── bodies.lua │ ├── category.lua │ ├── character.lua │ ├── parts.lua │ ├── recipe-updates.lua │ └── style.lua ├── settings.lua └── thumbnail.png ├── bobelectronics ├── changelog.txt ├── control.lua ├── data-updates.lua ├── data.lua ├── graphics │ └── icons │ │ ├── achievement │ │ ├── bob-computer-age-1.png │ │ ├── bob-computer-age-2.png │ │ └── bob-computer-age-3.png │ │ ├── basic-circuit-board.png │ │ ├── basic-electronic-circuit-board.png │ │ ├── basic-electronic-components.png │ │ ├── bob-oil-processing.png │ │ ├── circuit-board.png │ │ ├── coal-cracking.png │ │ ├── cpu.png │ │ ├── electronic-circuit-board.png │ │ ├── electronic-components.png │ │ ├── electronic-logic-board.png │ │ ├── electronic-processing-board.png │ │ ├── ferric-chloride-solution.png │ │ ├── fibreglass-board.png │ │ ├── gilded-copper-cable.png │ │ ├── graphics license.md │ │ ├── insulated-cable.png │ │ ├── integrated-electronics.png │ │ ├── multi-layer-circuit-board.png │ │ ├── phenolic-board.png │ │ ├── resin.png │ │ ├── rubber.png │ │ ├── silicon-wafer.png │ │ ├── solder-plate.png │ │ ├── solder.png │ │ ├── superior-circuit-board.png │ │ ├── synthetic-wood.png │ │ ├── technology │ │ ├── advanced-electronics-2.png │ │ ├── advanced-electronics-3.png │ │ ├── advanced-electronics.png │ │ └── electronics.png │ │ ├── tinned-copper-cable.png │ │ └── wooden-board.png ├── info.json ├── locale │ ├── de │ │ └── bobelectronics.cfg │ ├── en │ │ └── bobelectronics.cfg │ ├── ru │ │ └── bobelectronics.cfg │ ├── uk │ │ └── bobelectronics.cfg │ └── zh-TW │ │ └── bobelectronics.cfg ├── migrations │ ├── bobelectronics_0.15.0.json │ ├── bobelectronics_0.15.0.lua │ ├── bobelectronics_2.0.0.json │ └── bobelectronics_2.0.0.lua ├── prototypes │ ├── category.lua │ ├── chemicals.lua │ ├── electronics.lua │ ├── recipe-updates.lua │ ├── resource.lua │ ├── technology-updates.lua │ ├── technology.lua │ └── tips-and-tricks.lua ├── remote.lua ├── settings.lua └── thumbnail.png ├── bobenemies ├── changelog.txt ├── control.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ ├── beams │ │ │ ├── beam-body-rotated-1.png │ │ │ ├── beam-body-rotated-2.png │ │ │ ├── beam-body-rotated-3.png │ │ │ ├── beam-body-rotated-4.png │ │ │ ├── beam-body-rotated-5.png │ │ │ └── beam-body-rotated-6.png │ │ ├── fire-flame │ │ │ └── fire-flame-13.png │ │ ├── invisible.png │ │ └── projectiles │ │ │ └── piercing-barb.png │ └── icons │ │ ├── 0-acid-biter-spawner.png │ │ ├── 0-acid-spitter-spawner.png │ │ ├── 0-electric-biter-spawner.png │ │ ├── 0-electric-spitter-spawner.png │ │ ├── 0-explosive-biter-spawner.png │ │ ├── 0-explosive-spitter-spawner.png │ │ ├── 0-fire-biter-spawner.png │ │ ├── 0-fire-spitter-spawner.png │ │ ├── 0-piercing-biter-spawner.png │ │ ├── 0-piercing-spitter-spawner.png │ │ ├── 0-poison-biter-spawner.png │ │ ├── 0-poison-spitter-spawner.png │ │ ├── acid-biter-spawner.png │ │ ├── acid-biter.png │ │ ├── acid-spitter-spawner.png │ │ ├── acid-spitter.png │ │ ├── acid-super-spawner.png │ │ ├── acid-worm.png │ │ ├── alien-artifact-blue.png │ │ ├── alien-artifact-green.png │ │ ├── alien-artifact-orange.png │ │ ├── alien-artifact-purple.png │ │ ├── alien-artifact-red.png │ │ ├── alien-artifact-yellow.png │ │ ├── alien-artifact.png │ │ ├── alien-technology.png │ │ ├── basic-biter.png │ │ ├── basic-spitter.png │ │ ├── basic-worm.png │ │ ├── behemoth-biter.png │ │ ├── behemoth-spitter.png │ │ ├── behemoth-worm.png │ │ ├── big-biter.png │ │ ├── big-spitter.png │ │ ├── big-worm.png │ │ ├── biter-spawner.png │ │ ├── electric-biter-spawner.png │ │ ├── electric-biter.png │ │ ├── electric-spitter-spawner.png │ │ ├── electric-spitter.png │ │ ├── electric-super-spawner.png │ │ ├── electric-worm.png │ │ ├── explosive-biter-spawner.png │ │ ├── explosive-biter.png │ │ ├── explosive-spitter-spawner.png │ │ ├── explosive-spitter.png │ │ ├── explosive-super-spawner.png │ │ ├── explosive-worm.png │ │ ├── fire-biter-spawner.png │ │ ├── fire-biter.png │ │ ├── fire-spitter-spawner.png │ │ ├── fire-spitter.png │ │ ├── fire-super-spawner.png │ │ ├── fire-worm.png │ │ ├── giant-biter.png │ │ ├── giant-spitter.png │ │ ├── giant-worm.png │ │ ├── hardened-bile.png │ │ ├── huge-biter.png │ │ ├── huge-spitter.png │ │ ├── huge-worm.png │ │ ├── leviathan-biter.png │ │ ├── leviathan-spitter.png │ │ ├── leviathan-worm.png │ │ ├── medium-biter.png │ │ ├── medium-spitter.png │ │ ├── medium-worm.png │ │ ├── piercing-biter-spawner.png │ │ ├── piercing-biter.png │ │ ├── piercing-spitter-spawner.png │ │ ├── piercing-spitter.png │ │ ├── piercing-super-spawner.png │ │ ├── piercing-worm.png │ │ ├── poison-biter-spawner.png │ │ ├── poison-biter.png │ │ ├── poison-spitter-spawner.png │ │ ├── poison-spitter.png │ │ ├── poison-super-spawner.png │ │ ├── poison-worm.png │ │ ├── radar-technology.png │ │ ├── radar.png │ │ ├── small-alien-artifact-blue.png │ │ ├── small-alien-artifact-green.png │ │ ├── small-alien-artifact-orange.png │ │ ├── small-alien-artifact-purple.png │ │ ├── small-alien-artifact-red.png │ │ ├── small-alien-artifact-yellow.png │ │ ├── small-alien-artifact.png │ │ ├── small-biter.png │ │ ├── small-spitter.png │ │ ├── small-worm.png │ │ ├── spitter-spawner.png │ │ ├── super-spawner.png │ │ ├── titan-biter.png │ │ ├── titan-spitter.png │ │ └── titan-worm.png ├── info.json ├── locale │ ├── en │ │ └── bobenemies.cfg │ ├── ru │ │ └── bobenemies.cfg │ ├── uk │ │ └── bobenemies.cfg │ └── zh-TW │ │ └── bobenemies.cfg ├── menu-simulations │ └── menu-simulations.lua ├── migrations │ ├── bobenemies_0.17.0.json │ └── bobenemies_2.0.0.json ├── prototypes │ ├── alien-artifact.lua │ ├── biters.lua │ ├── categories.lua │ ├── entities.lua │ ├── functions.lua │ ├── projectiles.lua │ ├── radar.lua │ ├── spawners.lua │ ├── spitters.lua │ ├── values.lua │ └── worms.lua ├── remote.lua ├── settings-updates.lua ├── settings.lua └── thumbnail.png ├── bobequipment ├── changelog.txt ├── data-updates.lua ├── data.lua ├── graphics │ ├── beam │ │ ├── laser-body-amethyst.png │ │ ├── laser-body-emerald.png │ │ ├── laser-body-sapphire.png │ │ ├── laser-body-topaz.png │ │ ├── laser-body.png │ │ ├── laser-end-amethyst.png │ │ ├── laser-end-emerald.png │ │ ├── laser-end-sapphire.png │ │ ├── laser-end-topaz.png │ │ └── laser-end.png │ ├── equipment │ │ ├── battery-equipment.png │ │ ├── battery-mk2-equipment.png │ │ ├── battery-mk3-equipment.png │ │ ├── battery-mk4-equipment.png │ │ ├── battery-mk5-equipment.png │ │ ├── battery-mk6-equipment.png │ │ ├── energy-shield-mk1-equipment.png │ │ ├── energy-shield-mk2-equipment.png │ │ ├── energy-shield-mk3-equipment.png │ │ ├── energy-shield-mk4-equipment.png │ │ ├── energy-shield-mk5-equipment.png │ │ └── energy-shield-mk6-equipment.png │ └── icons │ │ ├── construction-robot-1.png │ │ ├── construction-robot-2.png │ │ ├── construction-robot-3.png │ │ ├── construction-robot-4.png │ │ ├── construction-robot-5.png │ │ ├── defender.png │ │ ├── destroyer.png │ │ ├── distractor.png │ │ ├── fission-reactor-equipment-1.png │ │ ├── fission-reactor-equipment-2.png │ │ ├── fission-reactor-equipment-3.png │ │ ├── fission-reactor-equipment-4.png │ │ ├── laser-robot.png │ │ ├── personal-roboport-equipment-base.png │ │ ├── power-armor-mk3.png │ │ ├── power-armor-mk4.png │ │ ├── power-armor-mk5.png │ │ ├── roboport-antenna-2.png │ │ ├── roboport-antenna-3.png │ │ ├── roboport-antenna-4.png │ │ ├── roboport-antenna.png │ │ ├── roboport-chargepad-2.png │ │ ├── roboport-chargepad-3.png │ │ ├── roboport-chargepad-4.png │ │ ├── roboport-chargepad.png │ │ ├── solar-panel-equipment-1.png │ │ ├── solar-panel-equipment-2.png │ │ ├── solar-panel-equipment-3.png │ │ ├── solar-panel-equipment-4.png │ │ ├── solar-panel-equipment-5.png │ │ ├── solar-panel-equipment.png │ │ └── technology │ │ ├── battery-equipment.png │ │ ├── battery-mk2-equipment.png │ │ ├── battery-mk3-equipment.png │ │ ├── battery-mk4-equipment.png │ │ ├── battery-mk5-equipment.png │ │ ├── battery-mk6-equipment.png │ │ ├── constant-equipment.png │ │ ├── energy-shield-equipment.png │ │ ├── energy-shield-mk2-equipment.png │ │ ├── energy-shield-mk2_2-equipment.png │ │ ├── energy-shield-mk3-equipment.png │ │ ├── energy-shield-mk4-equipment.png │ │ ├── energy-shield-mk5-equipment.png │ │ ├── energy-shield-mk6-equipment.png │ │ ├── fission-reactor-equipment-1.png │ │ ├── fission-reactor-equipment-2.png │ │ ├── fission-reactor-equipment-3.png │ │ ├── fission-reactor-equipment-4.png │ │ ├── fusion-reactor-equipment-1.png │ │ ├── fusion-reactor-equipment-2.png │ │ ├── fusion-reactor-equipment-3.png │ │ ├── fusion-reactor-equipment-4.png │ │ ├── personal-laser-defense-equipment-1.png │ │ ├── personal-laser-defense-equipment-2.png │ │ ├── personal-laser-defense-equipment-3.png │ │ ├── personal-laser-defense-equipment-4.png │ │ ├── personal-laser-defense-equipment-5.png │ │ ├── personal-laser-defense-equipment-6.png │ │ ├── personal-roboport-equipment.png │ │ ├── personal-roboport-mk0-equipment.png │ │ ├── personal-roboport-mk1-equipment.png │ │ ├── personal-roboport-mk2-equipment.png │ │ ├── personal-roboport-mk3-equipment.png │ │ ├── personal-roboport-mk4-equipment.png │ │ ├── power-armor-mk3.png │ │ ├── power-armor-mk4.png │ │ └── power-armor-mk5.png ├── info.json ├── locale │ ├── de │ │ └── bobequipment.cfg │ ├── en │ │ └── bobequipment.cfg │ ├── ru │ │ └── bobequipment.cfg │ ├── uk │ │ └── bobequipment.cfg │ └── zh-TW │ │ └── bobequipment.cfg ├── migrations │ └── bobequipment_2.0.0.json ├── prototypes │ ├── armor-updates.lua │ ├── armor.lua │ ├── beams.lua │ ├── equipment │ │ └── equipment.lua │ ├── item │ │ └── equipment.lua │ ├── personal-roboport.lua │ ├── recipe │ │ ├── equipment.lua │ │ └── updates.lua │ └── technology │ │ ├── equipment.lua │ │ └── technology-updates.lua └── thumbnail.png ├── bobgreenhouse ├── changelog.txt ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ ├── greenhouse-light.png │ │ ├── greenhouse-pipe-N.png │ │ ├── greenhouse-pipe-W.png │ │ └── greenhouse.png │ └── icons │ │ ├── fertiliser.png │ │ ├── greenhouse.png │ │ ├── seedling.png │ │ ├── technology │ │ ├── fertiliser.png │ │ └── greenhouse.png │ │ └── wood-pellets.png ├── info.json ├── locale │ ├── de │ │ └── bobgreenhouse.cfg │ ├── en │ │ └── bobgreenhouse.cfg │ ├── ru │ │ └── bobgreenhouse.cfg │ ├── uk │ │ └── bobgreenhouse.cfg │ └── zh-TW │ │ └── bobgreenhouse.cfg ├── migrations │ └── bobgreenhouse_2.0.0.json ├── prototypes │ ├── category.lua │ ├── entities.lua │ ├── items.lua │ ├── recipes.lua │ ├── technology.lua │ └── updates.lua └── thumbnail.png ├── bobinserters ├── changelog.txt ├── control.lua ├── data-final-fixes.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── gui │ │ ├── checkbox-big.png │ │ ├── checkbox.png │ │ └── gui.png │ └── icons │ │ └── technology │ │ ├── fast-inserter.png │ │ ├── long-inserters-2.png │ │ ├── long-inserters.png │ │ ├── more-inserters.png │ │ └── near-inserters.png ├── info.json ├── locale │ ├── de │ │ └── bobinserters.cfg │ ├── en │ │ └── bobinserters.cfg │ ├── ru │ │ └── bobinserters.cfg │ ├── uk │ │ └── bobinserters.cfg │ └── zh-TW │ │ └── bobinserters.cfg ├── migrations │ └── bobinserters_2.0.0.json ├── prototypes │ ├── styles.lua │ └── technology-inserter.lua ├── settings.lua └── thumbnail.png ├── boblibrary ├── auto-bottle.lua ├── category-functions.lua ├── changelog.txt ├── data-final-fixes.lua ├── data.lua ├── error-functions.lua ├── functions.lua ├── graphics │ ├── constants │ │ ├── constant-braking-force.png │ │ ├── constant-capacity.png │ │ ├── constant-count.png │ │ ├── constant-damage.png │ │ ├── constant-equipment.png │ │ ├── constant-mining-productivity.png │ │ ├── constant-movement-speed.png │ │ ├── constant-range.png │ │ ├── constant-recipe-productivity.png │ │ ├── constant-speed.png │ │ └── constant-vehicle-equipment.png │ ├── entity │ │ ├── liquid.png │ │ └── ores │ │ │ ├── ore-1.png │ │ │ ├── ore-2.png │ │ │ ├── ore-3.png │ │ │ ├── ore-4.png │ │ │ ├── ore-5-glow.png │ │ │ ├── ore-5.png │ │ │ ├── ore-particle-1.png │ │ │ ├── ore-particle-2.png │ │ │ ├── ore-particle-3.png │ │ │ ├── ore-particle-4.png │ │ │ ├── ore-particle-5.png │ │ │ ├── ore-particle-6.png │ │ │ ├── ore-particle-7.png │ │ │ ├── ore-particle-8.png │ │ │ ├── ore-particle-shadow-1.png │ │ │ ├── ore-particle-shadow-2.png │ │ │ ├── ore-particle-shadow-3.png │ │ │ ├── ore-particle-shadow-4.png │ │ │ ├── ore-particle-shadow-5.png │ │ │ ├── ore-particle-shadow-6.png │ │ │ ├── ore-particle-shadow-7.png │ │ │ └── ore-particle-shadow-8.png │ └── icons │ │ ├── cylinder │ │ ├── canister-bottom.png │ │ ├── canister-top.png │ │ ├── cylinder-mid.png │ │ ├── cylinder-top.png │ │ ├── empty-canister.png │ │ └── gas-canister.png │ │ ├── liquid.png │ │ ├── ore-1.png │ │ ├── ore-2.png │ │ ├── ore-3.png │ │ ├── ore-4.png │ │ ├── ore-5.png │ │ └── ore │ │ ├── 1 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── 2 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── 3 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── 4 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── 5 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ └── blank.png ├── info.json ├── item-functions.lua ├── locale │ ├── de │ │ └── boblibrary.cfg │ ├── en │ │ └── boblibrary.cfg │ ├── ru │ │ └── boblibrary.cfg │ ├── uk │ │ └── boblibrary.cfg │ └── zh-TW │ │ └── boblibrary.cfg ├── migration-functions.lua ├── module-functions.lua ├── ore-functions.lua ├── ore-icon-variations.lua ├── recipe-functions.lua ├── settings.lua ├── technology-functions.lua └── thumbnail.png ├── boblogistics ├── changelog.txt ├── control.lua ├── data-final-fixes.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ ├── chest │ │ │ ├── brass-chest.png │ │ │ ├── green-chest.png │ │ │ ├── titanium-chest-shadow.png │ │ │ └── titanium-chest.png │ │ ├── inserter │ │ │ ├── blue-bulk-inserter-hand-closed.png │ │ │ ├── blue-bulk-inserter-hand-open.png │ │ │ ├── blue-inserter-hand-base.png │ │ │ ├── blue-inserter-hand-closed.png │ │ │ ├── blue-inserter-hand-open.png │ │ │ ├── blue-inserter-platform.png │ │ │ ├── bulk-inserter-hand-closed-shadow.png │ │ │ ├── bulk-inserter-hand-open-shadow.png │ │ │ ├── cyan-inserter-hand-base.png │ │ │ ├── cyan-inserter-hand-closed.png │ │ │ ├── cyan-inserter-hand-open.png │ │ │ ├── cyan-inserter-platform.png │ │ │ ├── dark-green-big-inserter-hand-closed.png │ │ │ ├── dark-green-big-inserter-hand-open.png │ │ │ ├── dark-green-inserter-hand-base.png │ │ │ ├── dark-green-inserter-platform.png │ │ │ ├── green-bulk-inserter-hand-closed.png │ │ │ ├── green-bulk-inserter-hand-open.png │ │ │ ├── green-inserter-hand-base.png │ │ │ ├── green-inserter-hand-closed.png │ │ │ ├── green-inserter-hand-open.png │ │ │ ├── green-inserter-platform.png │ │ │ ├── inserter-hand-base-shadow.png │ │ │ ├── inserter-hand-closed-shadow.png │ │ │ ├── inserter-hand-open-shadow.png │ │ │ ├── magenta-inserter-hand-base.png │ │ │ ├── magenta-inserter-hand-closed.png │ │ │ ├── magenta-inserter-hand-open.png │ │ │ ├── magenta-inserter-platform.png │ │ │ ├── purple-bulk-inserter-hand-closed.png │ │ │ ├── purple-bulk-inserter-hand-open.png │ │ │ ├── purple-inserter-hand-base.png │ │ │ ├── purple-inserter-hand-closed.png │ │ │ ├── purple-inserter-hand-open.png │ │ │ ├── purple-inserter-platform.png │ │ │ ├── red-bulk-inserter-hand-closed.png │ │ │ ├── red-bulk-inserter-hand-open.png │ │ │ ├── red-inserter-hand-base.png │ │ │ ├── red-inserter-hand-closed.png │ │ │ ├── red-inserter-hand-open.png │ │ │ ├── red-inserter-platform.png │ │ │ ├── stripe-inserter-hand-base.png │ │ │ ├── stripe-inserter-hand-closed.png │ │ │ ├── stripe-inserter-hand-open.png │ │ │ ├── stripe-inserter-platform.png │ │ │ ├── white-inserter-hand-base.png │ │ │ ├── white-inserter-hand-closed.png │ │ │ ├── white-inserter-hand-open.png │ │ │ └── white-inserter-platform.png │ │ ├── logistic-chest │ │ │ ├── logistic-chest-mask.png │ │ │ ├── logistic-chest-port-back.png │ │ │ ├── logistic-chest.png │ │ │ ├── roboport-door-2.png │ │ │ ├── roboport-door-3.png │ │ │ ├── roboport-door-4.png │ │ │ ├── roboport-door.png │ │ │ └── titanium-chest.png │ │ ├── pipe │ │ │ ├── brass │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── bronze │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── ceramic │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── copper-tungsten │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── copper │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── iron │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── nitinol │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── pipe-arrow-down-mask.png │ │ │ ├── pipe-arrow-down.png │ │ │ ├── pipe-arrow-left-mask.png │ │ │ ├── pipe-arrow-left.png │ │ │ ├── pipe-arrow-right-mask.png │ │ │ ├── pipe-arrow-right.png │ │ │ ├── pipe-arrow-up-mask.png │ │ │ ├── pipe-arrow-up.png │ │ │ ├── pipe-straight-horizontal.png │ │ │ ├── pipe-straight-vertical.png │ │ │ ├── plastic │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── steel │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── stone │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ ├── titanium │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ │ └── tungsten │ │ │ │ ├── pipe-corner-down-left.png │ │ │ │ ├── pipe-corner-down-right.png │ │ │ │ ├── pipe-corner-up-left.png │ │ │ │ ├── pipe-corner-up-right.png │ │ │ │ ├── pipe-cover-east.png │ │ │ │ ├── pipe-cover-north.png │ │ │ │ ├── pipe-cover-south.png │ │ │ │ ├── pipe-cover-west.png │ │ │ │ ├── pipe-cross.png │ │ │ │ ├── pipe-ending-down.png │ │ │ │ ├── pipe-ending-left.png │ │ │ │ ├── pipe-ending-right.png │ │ │ │ ├── pipe-ending-up.png │ │ │ │ ├── pipe-horizontal-window-background.png │ │ │ │ ├── pipe-straight-horizontal-single.png │ │ │ │ ├── pipe-straight-horizontal-window.png │ │ │ │ ├── pipe-straight-horizontal.png │ │ │ │ ├── pipe-straight-vertical-single.png │ │ │ │ ├── pipe-straight-vertical-window.png │ │ │ │ ├── pipe-straight-vertical.png │ │ │ │ ├── pipe-t-down.png │ │ │ │ ├── pipe-t-left.png │ │ │ │ ├── pipe-t-right.png │ │ │ │ ├── pipe-t-up.png │ │ │ │ ├── pipe-to-ground-down.png │ │ │ │ ├── pipe-to-ground-left.png │ │ │ │ ├── pipe-to-ground-right.png │ │ │ │ ├── pipe-to-ground-up.png │ │ │ │ ├── pipe-vertical-window-background.png │ │ │ │ └── pipe.png │ │ ├── roboport │ │ │ ├── blank.png │ │ │ ├── logistic-zone-expander-2.png │ │ │ ├── logistic-zone-expander-3.png │ │ │ ├── logistic-zone-expander-4.png │ │ │ ├── logistic-zone-expander.png │ │ │ ├── logistic-zone-interface.png │ │ │ ├── robochest-2.png │ │ │ ├── robochest-3.png │ │ │ ├── robochest-4.png │ │ │ ├── robochest.png │ │ │ ├── roboport-base-1.png │ │ │ ├── roboport-base-2.png │ │ │ ├── roboport-base-3.png │ │ │ ├── roboport-base-4.png │ │ │ ├── roboport-base-animation-2.png │ │ │ ├── roboport-base-animation-3.png │ │ │ ├── roboport-base-animation-4.png │ │ │ ├── roboport-base-animation.png │ │ │ ├── roboport-base-patch-1.png │ │ │ ├── roboport-base-patch-2.png │ │ │ ├── roboport-base-patch-3.png │ │ │ ├── roboport-base-patch-4.png │ │ │ ├── roboport-chargepad-2.png │ │ │ ├── roboport-chargepad-3.png │ │ │ ├── roboport-chargepad-4.png │ │ │ ├── roboport-chargepad.png │ │ │ ├── roboport-construction-radius-visualization.png │ │ │ ├── roboport-door-down-2.png │ │ │ ├── roboport-door-down-3.png │ │ │ ├── roboport-door-down-4.png │ │ │ ├── roboport-door-down.png │ │ │ ├── roboport-door-up-2.png │ │ │ ├── roboport-door-up-3.png │ │ │ ├── roboport-door-up-4.png │ │ │ ├── roboport-door-up.png │ │ │ ├── roboport-radius-visualization.png │ │ │ ├── roboport-recharging.png │ │ │ └── roboport-shadow.png │ │ ├── robots │ │ │ ├── Graphics by Zombiee │ │ │ ├── construction-robot-1.png │ │ │ ├── construction-robot-2.png │ │ │ ├── construction-robot-3.png │ │ │ ├── construction-robot-4.png │ │ │ ├── construction-robot-5.png │ │ │ ├── construction-robot-shadow.png │ │ │ ├── construction-robot-working-1.png │ │ │ ├── construction-robot-working-2.png │ │ │ ├── construction-robot-working-3.png │ │ │ ├── construction-robot-working-4.png │ │ │ ├── construction-robot-working-5.png │ │ │ ├── logistic-robot-1.png │ │ │ ├── logistic-robot-2.png │ │ │ ├── logistic-robot-3.png │ │ │ ├── logistic-robot-4.png │ │ │ ├── logistic-robot-5.png │ │ │ ├── logistic-robot-shadow.png │ │ │ └── old │ │ │ │ ├── construction-robot-2.png │ │ │ │ ├── construction-robot-3.png │ │ │ │ ├── construction-robot-4.png │ │ │ │ ├── construction-robot-5.png │ │ │ │ ├── construction-robot.png │ │ │ │ ├── logistic-robot-2.png │ │ │ │ ├── logistic-robot-3.png │ │ │ │ ├── logistic-robot-4.png │ │ │ │ ├── logistic-robot-5.png │ │ │ │ ├── logistic-robot.png │ │ │ │ └── robot-shadow.png │ │ ├── storage-tank │ │ │ ├── storage-tank-all-mask.png │ │ │ ├── storage-tank-mask.png │ │ │ ├── storage-tank-shadow.png │ │ │ └── storage-tank.png │ │ └── transport-belt │ │ │ ├── black-splitter-east.png │ │ │ ├── black-splitter-north.png │ │ │ ├── black-splitter-south.png │ │ │ ├── black-splitter-west.png │ │ │ ├── black-transport-belt.png │ │ │ ├── black-underground-belt-structure.png │ │ │ ├── green-splitter-east.png │ │ │ ├── green-splitter-north.png │ │ │ ├── green-splitter-south.png │ │ │ ├── green-splitter-west.png │ │ │ ├── green-transport-belt.png │ │ │ ├── green-underground-belt-structure.png │ │ │ ├── masks │ │ │ ├── fast-transport-belt mask.png │ │ │ ├── splitter-east mask.png │ │ │ ├── splitter-north mask.png │ │ │ ├── splitter-south mask.png │ │ │ ├── splitter-west mask.png │ │ │ ├── transport-belt mask.png │ │ │ └── underground-belt-structure mask.png │ │ │ ├── purple-splitter-east.png │ │ │ ├── purple-splitter-north.png │ │ │ ├── purple-splitter-south.png │ │ │ ├── purple-splitter-west.png │ │ │ ├── purple-transport-belt.png │ │ │ └── purple-underground-belt-structure.png │ ├── gui │ │ └── checkbox.png │ └── icons │ │ ├── black-splitter.png │ │ ├── black-transport-belt.png │ │ ├── black-underground-belt.png │ │ ├── bob-oil-processing.png │ │ ├── brass-chest.png │ │ ├── flying-robot-frame │ │ ├── flying-robot-frame-icon-base.png │ │ ├── flying-robot-frame-icon-highlights.png │ │ └── flying-robot-frame-icon-mask.png │ │ ├── green-splitter.png │ │ ├── green-transport-belt-to-ground.png │ │ ├── green-transport-belt.png │ │ ├── inserter │ │ ├── blue-bulk-inserter.png │ │ ├── blue-filter-inserter.png │ │ ├── blue-inserter.png │ │ ├── blue-stack-filter-inserter.png │ │ ├── cyan-inserter.png │ │ ├── dark-green-inserter.png │ │ ├── green-bulk-inserter.png │ │ ├── green-filter-inserter.png │ │ ├── green-inserter.png │ │ ├── green-stack-filter-inserter.png │ │ ├── magenta-inserter.png │ │ ├── purple-bulk-inserter.png │ │ ├── purple-filter-inserter.png │ │ ├── purple-inserter.png │ │ ├── purple-stack-filter-inserter.png │ │ ├── red-bulk-inserter.png │ │ ├── red-filter-inserter.png │ │ ├── red-inserter.png │ │ ├── red-stack-filter-inserter.png │ │ ├── stripe-inserter.png │ │ ├── white-inserter.png │ │ ├── yellow-bulk-inserter.png │ │ ├── yellow-filter-inserter.png │ │ ├── yellow-inserter.png │ │ └── yellow-stack-filter-inserter.png │ │ ├── logistic-chest-port.png │ │ ├── logistic-zone-expander-2.png │ │ ├── logistic-zone-expander-3.png │ │ ├── logistic-zone-expander-4.png │ │ ├── logistic-zone-expander.png │ │ ├── logistic-zone-interface.png │ │ ├── pipe │ │ ├── brass-pipe-to-ground.png │ │ ├── brass-pipe.png │ │ ├── bronze-pipe-to-ground.png │ │ ├── bronze-pipe.png │ │ ├── ceramic-pipe-to-ground.png │ │ ├── ceramic-pipe.png │ │ ├── copper-pipe-to-ground.png │ │ ├── copper-pipe.png │ │ ├── copper-tungsten-pipe-to-ground.png │ │ ├── copper-tungsten-pipe.png │ │ ├── nitinol-pipe-to-ground.png │ │ ├── nitinol-pipe.png │ │ ├── plastic-pipe-to-ground.png │ │ ├── plastic-pipe.png │ │ ├── steel-pipe-to-ground.png │ │ ├── steel-pipe.png │ │ ├── stone-pipe-to-ground.png │ │ ├── stone-pipe.png │ │ ├── titanium-pipe-to-ground.png │ │ ├── titanium-pipe.png │ │ ├── tungsten-pipe-to-ground.png │ │ └── tungsten-pipe.png │ │ ├── purple-splitter.png │ │ ├── purple-transport-belt-to-ground.png │ │ ├── purple-transport-belt.png │ │ ├── repair-pack-2.png │ │ ├── repair-pack-3.png │ │ ├── repair-pack-4.png │ │ ├── repair-pack-5.png │ │ ├── repair-pack.png │ │ ├── robo-charge-port-2.png │ │ ├── robo-charge-port-3.png │ │ ├── robo-charge-port-4.png │ │ ├── robo-charge-port-large-2.png │ │ ├── robo-charge-port-large-3.png │ │ ├── robo-charge-port-large-4.png │ │ ├── robo-charge-port-large.png │ │ ├── robo-charge-port.png │ │ ├── robochest-2.png │ │ ├── robochest-3.png │ │ ├── robochest-4.png │ │ ├── robochest.png │ │ ├── roboport-2.png │ │ ├── roboport-3.png │ │ ├── roboport-4.png │ │ ├── roboport-antenna-2.png │ │ ├── roboport-antenna-3.png │ │ ├── roboport-antenna-4.png │ │ ├── roboport-antenna.png │ │ ├── roboport-chargepad-2.png │ │ ├── roboport-chargepad-3.png │ │ ├── roboport-chargepad-4.png │ │ ├── roboport-chargepad.png │ │ ├── roboport-door-2.png │ │ ├── roboport-door-3.png │ │ ├── roboport-door-4.png │ │ ├── roboport-door.png │ │ ├── roboport.png │ │ ├── robot-brain-2.png │ │ ├── robot-brain-3.png │ │ ├── robot-brain-4.png │ │ ├── robot-brain.png │ │ ├── robot-tool-construction.png │ │ ├── robot-tool-logistic.png │ │ ├── robots │ │ ├── construction-robot-1.png │ │ ├── construction-robot-2.png │ │ ├── construction-robot-3.png │ │ ├── construction-robot-4.png │ │ ├── construction-robot-5.png │ │ ├── logistic-robot-1.png │ │ ├── logistic-robot-2.png │ │ ├── logistic-robot-3.png │ │ ├── logistic-robot-4.png │ │ └── logistic-robot-5.png │ │ ├── storage-tank-1.png │ │ ├── storage-tank-2.png │ │ ├── storage-tank-3.png │ │ ├── storage-tank-4.png │ │ ├── storage-tank-all-corners-1.png │ │ ├── storage-tank-all-corners-2.png │ │ ├── storage-tank-all-corners-3.png │ │ ├── storage-tank-all-corners-4.png │ │ ├── technology │ │ ├── blue-inserter.png │ │ ├── character-auto-logistic-trash-slots.png │ │ ├── character-inventory-slots.png │ │ ├── character-logistic-slots.png │ │ ├── character-logistic-trash-slots.png │ │ ├── express-inserter.png │ │ ├── green-inserter.png │ │ ├── logistics-0.png │ │ ├── logistics-4.png │ │ ├── logistics-5.png │ │ ├── logistics.png │ │ ├── long-inserters.png │ │ ├── magenta-inserters.png │ │ ├── modular-roboport-2.png │ │ ├── modular-roboport-3.png │ │ ├── modular-roboport-4.png │ │ ├── modular-roboport.png │ │ ├── repair-pack.png │ │ ├── robotics-2.png │ │ ├── robotics-3.png │ │ ├── robotics-4.png │ │ ├── robotics-5.png │ │ └── robotics.png │ │ ├── titanium-chest.png │ │ └── titanium-logistic-chest.png ├── info.json ├── locale │ ├── de │ │ └── boblogistics.cfg │ ├── en │ │ └── boblogistics.cfg │ ├── ru │ │ └── boblogistics.cfg │ ├── uk │ │ └── boblogistics.cfg │ └── zh-TW │ │ └── boblogistics.cfg ├── migrations │ ├── boblogistics_0.15.0.json │ ├── boblogistics_0.15.2.json │ ├── boblogistics_0.16.10.json │ ├── boblogistics_0.16.16.json │ ├── boblogistics_0.17.0.json │ ├── boblogistics_0.17.0.lua │ ├── boblogistics_0.17.14.json │ ├── boblogistics_0.17.2.json │ ├── boblogistics_0.17.5.json │ ├── boblogistics_0.17.6.json │ ├── boblogistics_0.17.7.json │ ├── boblogistics_1.1.6.json │ ├── boblogistics_1.2.0.lua │ ├── boblogistics_2.0.0.json │ └── boblogistics_2.0.0.lua ├── prototypes │ ├── aai-loaders.lua │ ├── aai-updates.lua │ ├── category.lua │ ├── chests.lua │ ├── entity │ │ ├── belt.lua │ │ ├── inserter-graphics.lua │ │ ├── inserter.lua │ │ ├── logistic-container.lua │ │ ├── pipes.lua │ │ ├── pump.lua │ │ ├── roboport.lua │ │ ├── robots.lua │ │ ├── storage-tank.lua │ │ └── train.lua │ ├── item │ │ ├── belt.lua │ │ ├── inserter.lua │ │ ├── logistic-container.lua │ │ ├── pipes.lua │ │ ├── pump.lua │ │ ├── roboport-parts.lua │ │ ├── roboport.lua │ │ ├── robots.lua │ │ ├── storage-tank.lua │ │ └── train.lua │ ├── recipe │ │ ├── belt-recipe-updates.lua │ │ ├── belt-recipe.lua │ │ ├── chemicals.lua │ │ ├── inserter-recipe-updates.lua │ │ ├── inserter-recipe.lua │ │ ├── logistic-container-recipe-updates.lua │ │ ├── logistic-container-recipe.lua │ │ ├── pipes-recipe.lua │ │ ├── pump-recipe-updates.lua │ │ ├── pump-recipe.lua │ │ ├── roboport-parts-recipe.lua │ │ ├── roboport-recipe-updates.lua │ │ ├── roboport-recipe.lua │ │ ├── robots-recipe-updates.lua │ │ ├── robots-recipe.lua │ │ ├── storage-tank-recipe-updates.lua │ │ ├── storage-tank-recipe.lua │ │ ├── train-recipe-updates.lua │ │ └── train-recipe.lua │ ├── repair-pack-updates.lua │ ├── repair-pack.lua │ ├── robot-parts.lua │ ├── technology-inserter.lua │ ├── technology-logistics.lua │ ├── technology-updates.lua │ ├── technology.lua │ ├── tips-and-tricks.lua │ └── transport-belt-pictures.lua ├── settings-updates.lua ├── settings.lua └── thumbnail.png ├── bobmining ├── changelog.txt ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ ├── electric-mining-drill │ │ │ ├── electric-mining-drill-east-front-mask.png │ │ │ ├── electric-mining-drill-east-mask.png │ │ │ ├── electric-mining-drill-east-wet-mask.png │ │ │ ├── electric-mining-drill-north-mask.png │ │ │ ├── electric-mining-drill-north-wet-mask.png │ │ │ ├── electric-mining-drill-south-front-mask.png │ │ │ ├── electric-mining-drill-west-front-mask.png │ │ │ ├── electric-mining-drill-west-mask.png │ │ │ ├── electric-mining-drill-west-wet-mask.png │ │ │ ├── large-mining-drill-east-front-mask.png │ │ │ ├── large-mining-drill-east-mask.png │ │ │ ├── large-mining-drill-east-wet-mask.png │ │ │ ├── large-mining-drill-north-mask.png │ │ │ ├── large-mining-drill-north-wet-mask.png │ │ │ ├── large-mining-drill-south-front-mask.png │ │ │ ├── large-mining-drill-west-front-mask.png │ │ │ ├── large-mining-drill-west-mask.png │ │ │ └── large-mining-drill-west-wet-mask.png │ │ └── water-miner │ │ │ ├── water-miner-animation.png │ │ │ ├── water-miner-base.png │ │ │ └── water-miner-radius-visualization.png │ └── icons │ │ ├── brass-axe.png │ │ ├── cobalt-axe.png │ │ ├── diamond-axe.png │ │ ├── electric-mining-drill-1.png │ │ ├── electric-mining-drill-2.png │ │ ├── electric-mining-drill-2a.png │ │ ├── electric-mining-drill-3.png │ │ ├── electric-mining-drill-3a.png │ │ ├── electric-mining-drill-4.png │ │ ├── electric-mining-drill-4a.png │ │ ├── electric-mining-drill-5.png │ │ ├── electric-mining-drill-5a.png │ │ ├── titanium-axe.png │ │ ├── tungsten-axe.png │ │ └── waterdrill.png ├── info.json ├── locale │ ├── de │ │ └── bobmining.cfg │ ├── en │ │ └── bobmining.cfg │ ├── ru │ │ └── bobmining.cfg │ ├── uk │ │ └── bobmining.cfg │ └── zh-TW │ │ └── bobmining.cfg ├── migrations │ ├── bobmining_2.0.0.json │ └── bobmining_2.0.0.lua ├── prototypes │ ├── areadrill-updates.lua │ ├── areadrills.lua │ ├── axes.lua │ ├── drill-functions.lua │ ├── drill-updates.lua │ ├── drills.lua │ ├── pumpjack-updates.lua │ ├── pumpjacks.lua │ ├── steam-drills.lua │ ├── water-miner-updates.lua │ └── water-miner.lua ├── settings.lua └── thumbnail.png ├── bobmodules ├── changelog.txt ├── control.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ └── beacon │ │ │ ├── beacon-1-bottom.png │ │ │ ├── beacon-1-top.png │ │ │ ├── beacon-2-bottom-slot-overlay.png │ │ │ ├── beacon-2-bottom.png │ │ │ ├── beacon-2-top.png │ │ │ ├── beacon-3-bottom-slot-overlay.png │ │ │ ├── beacon-3-bottom.png │ │ │ ├── beacon-3-top.png │ │ │ └── slots │ │ │ ├── 5-lights │ │ │ ├── 1 │ │ │ │ ├── beacon-module-lights-1.png │ │ │ │ ├── beacon-module-mask-box-1.png │ │ │ │ ├── beacon-module-mask-lights-1.png │ │ │ │ └── beacon-module-slot-1.png │ │ │ └── 2 │ │ │ │ ├── beacon-module-lights-2.png │ │ │ │ ├── beacon-module-mask-box-2.png │ │ │ │ ├── beacon-module-mask-lights-2.png │ │ │ │ └── beacon-module-slot-2.png │ │ │ └── god-modules │ │ │ ├── 1 │ │ │ ├── base-module-lights-1.png │ │ │ ├── base-module-mask-box-1.png │ │ │ ├── base-module-mask-lights-1.png │ │ │ ├── base-module-slot-1.png │ │ │ ├── productivity-module-lights-1.png │ │ │ ├── productivity-module-mask-lights-1.png │ │ │ ├── productivity-module-slot-1.png │ │ │ ├── quality-module-lights-1.png │ │ │ ├── quality-module-mask-lights-1.png │ │ │ └── quality-module-slot-1.png │ │ │ └── 2 │ │ │ ├── base-module-lights-2.png │ │ │ ├── base-module-mask-box-2.png │ │ │ ├── base-module-mask-lights-2.png │ │ │ ├── base-module-slot-2.png │ │ │ ├── productivity-module-lights-2.png │ │ │ ├── productivity-module-mask-lights-2.png │ │ │ ├── productivity-module-slot-2.png │ │ │ ├── quality-module-lights-2.png │ │ │ ├── quality-module-mask-lights-2.png │ │ │ └── quality-module-slot-2.png │ ├── graphics license.md │ ├── icons │ │ ├── blue │ │ │ ├── blue_01.png │ │ │ ├── blue_02.png │ │ │ ├── blue_03.png │ │ │ ├── blue_04.png │ │ │ └── blue_05.png │ │ ├── brown │ │ │ ├── brown_01.png │ │ │ ├── brown_02.png │ │ │ ├── brown_03.png │ │ │ ├── brown_04.png │ │ │ └── brown_05.png │ │ ├── efficiency-processor-2.png │ │ ├── efficiency-processor-3.png │ │ ├── efficiency-processor.png │ │ ├── god-module │ │ │ ├── god-module-productivity.png │ │ │ ├── god-module-quality.png │ │ │ └── god-module.png │ │ ├── green │ │ │ ├── green_01.png │ │ │ ├── green_02.png │ │ │ ├── green_03.png │ │ │ ├── green_04.png │ │ │ └── green_05.png │ │ ├── module-case.png │ │ ├── module-circuit-board.png │ │ ├── module-contact.png │ │ ├── module-processor-board-2.png │ │ ├── module-processor-board-3.png │ │ ├── module-processor-board.png │ │ ├── pine │ │ │ ├── pine_01.png │ │ │ ├── pine_02.png │ │ │ ├── pine_03.png │ │ │ ├── pine_04.png │ │ │ └── pine_05.png │ │ ├── pollution-clean-processor-2.png │ │ ├── pollution-clean-processor-3.png │ │ ├── pollution-clean-processor.png │ │ ├── pollution-create-processor-2.png │ │ ├── pollution-create-processor-3.png │ │ ├── pollution-create-processor.png │ │ ├── productivity-processor-2.png │ │ ├── productivity-processor-3.png │ │ ├── productivity-processor.png │ │ ├── quality-processor-2.png │ │ ├── quality-processor-3.png │ │ ├── quality-processor.png │ │ ├── quality │ │ │ ├── gray-red_01.png │ │ │ ├── gray-red_02.png │ │ │ ├── gray-red_03.png │ │ │ ├── gray-red_04.png │ │ │ └── gray-red_05.png │ │ ├── red-yellow │ │ │ ├── red-yellow_01.png │ │ │ ├── red-yellow_02.png │ │ │ ├── red-yellow_03.png │ │ │ ├── red-yellow_04.png │ │ │ └── red-yellow_05.png │ │ ├── speed-processor-2.png │ │ ├── speed-processor-3.png │ │ └── speed-processor.png │ └── technology │ │ ├── blue │ │ ├── blue_01.png │ │ ├── blue_02.png │ │ ├── blue_03.png │ │ ├── blue_04.png │ │ └── blue_05.png │ │ ├── brown │ │ ├── brown_01.png │ │ ├── brown_02.png │ │ ├── brown_03.png │ │ ├── brown_04.png │ │ └── brown_05.png │ │ ├── god-module │ │ ├── god-module_01.png │ │ ├── god-module_02.png │ │ └── god-module_03.png │ │ ├── green │ │ ├── green_01.png │ │ ├── green_02.png │ │ ├── green_03.png │ │ ├── green_04.png │ │ └── green_05.png │ │ ├── pine │ │ ├── pine_01.png │ │ ├── pine_02.png │ │ ├── pine_03.png │ │ ├── pine_04.png │ │ └── pine_05.png │ │ ├── quality │ │ ├── gray-red_01.png │ │ ├── gray-red_02.png │ │ ├── gray-red_03.png │ │ ├── gray-red_04.png │ │ └── gray-red_05.png │ │ └── red-yellow │ │ ├── red-yellow_01.png │ │ ├── red-yellow_02.png │ │ ├── red-yellow_03.png │ │ ├── red-yellow_04.png │ │ └── red-yellow_05.png ├── info.json ├── locale │ ├── de │ │ └── bobmodules.cfg │ ├── en │ │ └── bobmodules.cfg │ ├── ru │ │ └── bobmodules.cfg │ └── zh-TW │ │ └── bobmodules.cfg ├── migrations │ └── bobmodules_2.0.0.json ├── prototypes │ ├── beacon.lua │ ├── category.lua │ ├── entity │ │ ├── beacon-module-slots.lua │ │ └── beacon.lua │ ├── item │ │ ├── electronics.lua │ │ ├── module-merged.lua │ │ └── module.lua │ ├── recipe │ │ ├── beacon-updates.lua │ │ ├── electronics-updates.lua │ │ ├── electronics.lua │ │ ├── module-merged-updates.lua │ │ ├── module-merged.lua │ │ ├── module-updates.lua │ │ └── module.lua │ ├── technology │ │ ├── module-merged.lua │ │ ├── module-updates.lua │ │ └── module.lua │ └── tips-and-tricks.lua ├── remote.lua ├── settings.lua └── thumbnail.png ├── bobores ├── changelog.txt ├── control.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ └── gem-ore │ │ │ ├── gem-ore-particle-1.png │ │ │ ├── gem-ore-particle-2.png │ │ │ ├── gem-ore-particle-3.png │ │ │ ├── gem-ore-particle-4.png │ │ │ ├── gem-ore-particle-shadow-1.png │ │ │ ├── gem-ore-particle-shadow-2.png │ │ │ ├── gem-ore-particle-shadow-3.png │ │ │ ├── gem-ore-particle-shadow-4.png │ │ │ └── gem-ore.png │ └── icons │ │ ├── amethyst-ore.png │ │ ├── bauxite-ore.png │ │ ├── coal.png │ │ ├── cobalt-ore.png │ │ ├── copper-ore.png │ │ ├── diamond-ore.png │ │ ├── emerald-ore.png │ │ ├── gem-ore.png │ │ ├── gold-ore.png │ │ ├── iron-ore.png │ │ ├── lead-ore.png │ │ ├── lithia-water.png │ │ ├── nickel-ore.png │ │ ├── quartz.png │ │ ├── ruby-ore.png │ │ ├── rutile-ore.png │ │ ├── sapphire-ore.png │ │ ├── silver-ore.png │ │ ├── stone.png │ │ ├── tin-ore.png │ │ ├── topaz-ore.png │ │ ├── tungsten-ore.png │ │ └── zinc-ore.png ├── info.json ├── locale │ ├── de │ │ └── bobores.cfg │ ├── en │ │ └── bobores.cfg │ ├── ru │ │ └── bobores.cfg │ └── zh-TW │ │ └── bobores.cfg ├── migrations │ └── bobores_2.0.0.json ├── prototypes │ ├── bauxite.lua │ ├── cobalt-ore.lua │ ├── fluids.lua │ ├── gem-ore.lua │ ├── gems.lua │ ├── gold-ore.lua │ ├── lead-ore.lua │ ├── nickel-ore.lua │ ├── quartz.lua │ ├── rutile.lua │ ├── silver-ore.lua │ ├── sulfur.lua │ ├── thorium-ore.lua │ ├── tin-ore.lua │ ├── tungsten-ore.lua │ └── zinc-ore.lua ├── settings.lua └── thumbnail.png ├── bobplates ├── changelog.txt ├── control.lua ├── data-final-fixes.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ ├── centrifuge │ │ │ ├── centrifuge-A-light.png │ │ │ ├── centrifuge-B-light.png │ │ │ └── centrifuge-C-light.png │ │ ├── chemical-plant │ │ │ └── chemical-plant-mask.png │ │ ├── distillery │ │ │ ├── distillery-anim-e.png │ │ │ ├── distillery-anim-n.png │ │ │ ├── distillery-anim-s.png │ │ │ ├── distillery-anim-w.png │ │ │ ├── distillery-mask.png │ │ │ ├── distillery-shadow-e.png │ │ │ ├── distillery-shadow-n.png │ │ │ ├── distillery-shadow-s.png │ │ │ ├── distillery-shadow-w.png │ │ │ └── distillery.png │ │ ├── electric-furnace │ │ │ ├── electric-chemical-furnace.png │ │ │ ├── electric-furnace-heater.png │ │ │ ├── electric-furnace-mask.png │ │ │ ├── electric-furnace-propeller-1.png │ │ │ ├── electric-furnace-propeller-2.png │ │ │ └── electric-mixing-furnace.png │ │ ├── electrolyser │ │ │ ├── electrolyser-1-base.png │ │ │ ├── electrolyser-1-highlights.png │ │ │ ├── electrolyser-1-mask.png │ │ │ └── electrolyser-1-shadow.png │ │ ├── pump │ │ │ ├── PumpShadow_NoAnim_Rot_0_0.png │ │ │ ├── PumpShadow_NoAnim_Rot_1_0.png │ │ │ ├── PumpShadow_NoAnim_Rot_2_0.png │ │ │ ├── PumpShadow_NoAnim_Rot_3_0.png │ │ │ ├── pump-anim-e.png │ │ │ ├── pump-anim-n.png │ │ │ ├── pump-anim-s.png │ │ │ ├── pump-anim-w.png │ │ │ ├── pump-base-e.png │ │ │ ├── pump-base-mask-e.png │ │ │ ├── pump-base-mask-n.png │ │ │ ├── pump-base-mask-s.png │ │ │ ├── pump-base-mask-w.png │ │ │ ├── pump-base-n.png │ │ │ ├── pump-base-s.png │ │ │ ├── pump-base-w.png │ │ │ ├── pump-liquid-e.png │ │ │ ├── pump-liquid-n.png │ │ │ ├── pump-liquid-s.png │ │ │ ├── pump-liquid-w.png │ │ │ ├── pump-window-e.png │ │ │ ├── pump-window-n.png │ │ │ ├── pump-window-s.png │ │ │ ├── pump-window-w.png │ │ │ └── pump.png │ │ ├── small-pump │ │ │ ├── small-pump-down.png │ │ │ ├── small-pump-left.png │ │ │ ├── small-pump-right.png │ │ │ └── small-pump-up.png │ │ ├── small-storage-tank-all.png │ │ ├── small-storage-tank-shadow.png │ │ ├── small-storage-tank-w.png │ │ ├── stone-chemical-furnace │ │ │ ├── boiler-fire-down.png │ │ │ ├── boiler-fire-left.png │ │ │ ├── boiler-fire-right.png │ │ │ └── stone-chemical-furnace.png │ │ └── stone-mixing-furnace │ │ │ ├── stone-mixing-furnace-fire.png │ │ │ └── stone-mixing-furnace.png │ └── icons │ │ ├── achievement │ │ ├── bob-computer-age-1.png │ │ ├── bob-computer-age-2.png │ │ └── bob-computer-age-3.png │ │ ├── advanced-processing-unit.png │ │ ├── air-pump-1.png │ │ ├── air-pump-2.png │ │ ├── air-pump-3.png │ │ ├── air-pump-4.png │ │ ├── air-pump.png │ │ ├── alien │ │ ├── alien-acid.png │ │ ├── alien-blue-alloy.png │ │ ├── alien-explosive.png │ │ ├── alien-fire.png │ │ ├── alien-orange-alloy.png │ │ └── alien-poison.png │ │ ├── b.png │ │ ├── battery-blue.png │ │ ├── battery-purple.png │ │ ├── battery-red.png │ │ ├── battery.png │ │ ├── bob-oil-processing.png │ │ ├── brass-bearing-ball.png │ │ ├── brass-bearing.png │ │ ├── brass-gear-wheel.png │ │ ├── burner-distillery.png │ │ ├── c.png │ │ ├── calcium-chloride.png │ │ ├── carbon.png │ │ ├── ceramic-bearing-ball.png │ │ ├── ceramic-bearing.png │ │ ├── chemical-furnace.png │ │ ├── chlorine.png │ │ ├── coal-cracking.png │ │ ├── cobalt-oxide.png │ │ ├── cobalt-steel-bearing-ball.png │ │ ├── cobalt-steel-bearing.png │ │ ├── cobalt-steel-gear-wheel.png │ │ ├── copper-cobalt-oxide.png │ │ ├── corundum.png │ │ ├── deuterium.png │ │ ├── distillery.png │ │ ├── electric-mixing-furnace.png │ │ ├── electrolyser.png │ │ ├── empty-canister.png │ │ ├── enriched-fuel.png │ │ ├── f-blue.png │ │ ├── f.png │ │ ├── ferric-chloride-solution.png │ │ ├── gas-canister.png │ │ ├── gems │ │ ├── amethyst-3.png │ │ ├── amethyst-4.png │ │ ├── amethyst-5.png │ │ ├── amethyst-ore.png │ │ ├── diamond-3.png │ │ ├── diamond-4.png │ │ ├── diamond-5.png │ │ ├── diamond-ore.png │ │ ├── emerald-3.png │ │ ├── emerald-4.png │ │ ├── emerald-5.png │ │ ├── emerald-ore.png │ │ ├── ruby-3.png │ │ ├── ruby-4.png │ │ ├── ruby-5.png │ │ ├── ruby-ore.png │ │ ├── sapphire-3.png │ │ ├── sapphire-4.png │ │ ├── sapphire-5.png │ │ ├── sapphire-ore.png │ │ ├── topaz-3.png │ │ ├── topaz-4.png │ │ ├── topaz-5.png │ │ └── topaz-ore.png │ │ ├── glass.png │ │ ├── graphics license.md │ │ ├── grinding-wheel.png │ │ ├── h.png │ │ ├── heavy-water-electrolysis.png │ │ ├── heavy-water.png │ │ ├── hydrogen-chloride.png │ │ ├── hydrogen-sulfide.png │ │ ├── hydrogen.png │ │ ├── lead-oxide.png │ │ ├── lead-silver.png │ │ ├── liquid-air.png │ │ ├── liquid-fuel.png │ │ ├── lithia-water.png │ │ ├── lithium-chloride.png │ │ ├── lithium-cobalt-oxide.png │ │ ├── lithium-ion-battery.png │ │ ├── lithium-perchlorate.png │ │ ├── m.png │ │ ├── nitinol-bearing-ball.png │ │ ├── nitinol-bearing.png │ │ ├── nitinol-gear-wheel.png │ │ ├── nitric-acid.png │ │ ├── nitrogen-dioxide.png │ │ ├── nitrogen.png │ │ ├── nuclear │ │ ├── bobingabout-enrichment-process.png │ │ ├── depleted-deuterium-fuel-cell-blue.png │ │ ├── depleted-deuterium-fuel-cell.png │ │ ├── depleted-thorium-fuel-cell.png │ │ ├── depleted-uranium-fuel-cell.png │ │ ├── deuterium-fuel-cell-2-blue.png │ │ ├── deuterium-fuel-cell-2.png │ │ ├── deuterium-fuel-cell-blue.png │ │ ├── deuterium-fuel-cell.png │ │ ├── deuterium-nuclear-fuel-reprocessing-blue-new.png │ │ ├── deuterium-nuclear-fuel-reprocessing-blue.png │ │ ├── deuterium-nuclear-fuel-reprocessing-new.png │ │ ├── deuterium-nuclear-fuel-reprocessing.png │ │ ├── empty-nuclear-fuel-cell.png │ │ ├── fusion-catalyst.png │ │ ├── nuclear-fuel-reprocessing.png │ │ ├── plutonium-239.png │ │ ├── plutonium-fuel-cell.png │ │ ├── thorium-232.png │ │ ├── thorium-fuel-cell.png │ │ ├── thorium-nuclear-fuel-reprocessing-old.png │ │ ├── thorium-nuclear-fuel-reprocessing.png │ │ ├── thorium-plutonium-fuel-cell.png │ │ ├── thorium-processing.png │ │ └── uranium-fuel-cell.png │ │ ├── oxygen.png │ │ ├── petrolium-gas-cracking.png │ │ ├── plate │ │ ├── aluminium-plate.png │ │ ├── brass-plate.png │ │ ├── bronze-plate.png │ │ ├── cobalt-plate.png │ │ ├── cobalt-steel-plate.png │ │ ├── copper-plate.png │ │ ├── copper-tungsten-plate.png │ │ ├── gold-plate.png │ │ ├── gunmetal-plate.png │ │ ├── invar-plate.png │ │ ├── iron-plate.png │ │ ├── lead-plate.png │ │ ├── lithium-plate.png │ │ ├── nickel-plate.png │ │ ├── nitinol-plate.png │ │ ├── silicon-plate.png │ │ ├── silver-plate.png │ │ ├── solder-plate.png │ │ ├── steel-plate.png │ │ ├── tin-plate.png │ │ ├── titanium-plate.png │ │ ├── tungsten-carbide-plate.png │ │ ├── tungsten-plate.png │ │ └── zinc-plate.png │ │ ├── polishing-compound.png │ │ ├── polishing-wheel.png │ │ ├── powdered-silicon.png │ │ ├── powdered-tungsten.png │ │ ├── pure-water.png │ │ ├── resin.png │ │ ├── rubber.png │ │ ├── salt-water-electrolysis.png │ │ ├── salt.png │ │ ├── silicon-carbide.png │ │ ├── silicon-nitride.png │ │ ├── silicon-wafer.png │ │ ├── silver-nitrate.png │ │ ├── silver-oxide.png │ │ ├── silver-zinc-battery.png │ │ ├── small-storage-tank.png │ │ ├── sodium-hydroxide-sink.png │ │ ├── sodium-hydroxide.png │ │ ├── solid-fuel-from-hydrogen.png │ │ ├── steel-bearing-ball.png │ │ ├── steel-bearing.png │ │ ├── steel-gear-wheel.png │ │ ├── stone-chemical-furnace.png │ │ ├── stone-mixing-furnace.png │ │ ├── sulfur-dioxide.png │ │ ├── synthetic-wood.png │ │ ├── technology │ │ ├── advanced-electronics-3.png │ │ ├── alien-blue-alloy.png │ │ ├── alien-orange-alloy.png │ │ ├── alloy-processing.png │ │ ├── aluminium-processing.png │ │ ├── bobingabout-enrichment-process.png │ │ ├── ceramics.png │ │ ├── chemical-processing.png │ │ ├── chemistry.png │ │ ├── cobalt-processing.png │ │ ├── deuterium-nuclear-fuel-reprocessing-blue-new.png │ │ ├── deuterium-nuclear-fuel-reprocessing-blue.png │ │ ├── deuterium-nuclear-fuel-reprocessing-new.png │ │ ├── deuterium-nuclear-fuel-reprocessing.png │ │ ├── deuterium.png │ │ ├── distillery.png │ │ ├── electrolysis-old.png │ │ ├── electrolysis.png │ │ ├── fluid-canister.png │ │ ├── fluids.png │ │ ├── gas-canister.png │ │ ├── gems.png │ │ ├── gold-processing.png │ │ ├── grinding.png │ │ ├── heavy-water.png │ │ ├── invar-processing.png │ │ ├── lead-processing.png │ │ ├── lithium-processing.png │ │ ├── nickel-processing.png │ │ ├── nitrogen-processing.png │ │ ├── plutonium-nucleosynthesis.png │ │ ├── polishing.png │ │ ├── resource-editor.png │ │ ├── resources.png │ │ ├── thorium-nuclear-fuel-reprocessing-new.png │ │ ├── thorium-nuclear-fuel-reprocessing.png │ │ ├── thorium-processing.png │ │ ├── titanium-processing.png │ │ ├── tungsten-processing.png │ │ ├── uranium-nuclear-fuel-reprocessing-new.png │ │ ├── void.png │ │ └── zinc-processing.png │ │ ├── titanium-bearing-ball.png │ │ ├── titanium-bearing.png │ │ ├── titanium-gear-wheel.png │ │ ├── tungsten-gear-wheel.png │ │ ├── tungsten-oxide.png │ │ ├── tungstic-acid.png │ │ ├── void-pump.png │ │ ├── void.png │ │ ├── water-electrolysis.png │ │ ├── water-pump-1.png │ │ ├── water-pump-2.png │ │ ├── water-pump-3.png │ │ ├── water-pump-4.png │ │ └── water-pump.png ├── info.json ├── locale │ ├── de │ │ └── bobplates.cfg │ ├── en │ │ └── bobplates.cfg │ ├── ru │ │ └── bobplates.cfg │ └── zh-TW │ │ └── bobplates.cfg ├── migrations │ ├── bobplates_0.18.8.json │ ├── bobplates_0.18.8.lua │ ├── bobplates_0.18.9.json │ ├── bobplates_1.1.1.json │ └── bobplates_2.0.0.json ├── prototypes │ ├── category.lua │ ├── distillery.lua │ ├── entity │ │ ├── entities.lua │ │ ├── nuclear.lua │ │ └── pumps.lua │ ├── item │ │ ├── alien.lua │ │ ├── alloys.lua │ │ ├── chemicals.lua │ │ ├── electronics.lua │ │ ├── entities.lua │ │ ├── gems.lua │ │ ├── nuclear.lua │ │ ├── parts.lua │ │ ├── plates.lua │ │ └── resource.lua │ ├── recipe │ │ ├── alien-recipe.lua │ │ ├── alloy-recipe.lua │ │ ├── chemistry-recipe.lua │ │ ├── electronics-recipe.lua │ │ ├── entity-recipe-updates.lua │ │ ├── entity-recipe.lua │ │ ├── gems-recipe.lua │ │ ├── nuclear-recipe.lua │ │ ├── parts-recipe.lua │ │ ├── plates-recipe.lua │ │ ├── resource-recipe.lua │ │ └── void-recipe.lua │ ├── technology-alien.lua │ ├── technology-metal.lua │ ├── technology-nuclear.lua │ ├── technology-updates.lua │ ├── technology.lua │ └── tips-and-tricks.lua ├── remote.lua ├── settings-updates.lua ├── settings.lua └── thumbnail.png ├── bobpower ├── changelog.txt ├── data-updates.lua ├── data.lua ├── graphics │ ├── accumulator │ │ ├── large-accumulator-shadow.png │ │ └── large-accumulator.png │ ├── burner-generator │ │ ├── burner-generator-fire.png │ │ └── burner-generator.png │ ├── burner-reactor │ │ ├── reactor-connect-patches-2.png │ │ ├── reactor-connect-patches-3.png │ │ ├── reactor-connect-patches-4.png │ │ ├── reactor-connect-patches.png │ │ ├── reactor-fire.png │ │ ├── reactor-pipes-2.png │ │ ├── reactor-pipes-3.png │ │ ├── reactor-pipes-4.png │ │ ├── reactor-pipes.png │ │ └── reactor.png │ ├── fluid-generator │ │ ├── boiler-N-fire.png │ │ ├── boiler-S-fire.png │ │ ├── fluid-generator-fan-spin.png │ │ ├── fluid-generator-fan.png │ │ ├── fluid-generator-light.png │ │ ├── fluid-generator-shadow.png │ │ └── fluid-generator.png │ ├── heat-pipe-2 │ │ ├── heat-pipe-corner-down-left-1.png │ │ ├── heat-pipe-corner-down-left-2.png │ │ ├── heat-pipe-corner-down-left-3.png │ │ ├── heat-pipe-corner-down-left-4.png │ │ ├── heat-pipe-corner-down-left-5.png │ │ ├── heat-pipe-corner-down-left-6.png │ │ ├── heat-pipe-corner-down-right-1.png │ │ ├── heat-pipe-corner-down-right-2.png │ │ ├── heat-pipe-corner-down-right-3.png │ │ ├── heat-pipe-corner-down-right-4.png │ │ ├── heat-pipe-corner-down-right-5.png │ │ ├── heat-pipe-corner-down-right-6.png │ │ ├── heat-pipe-corner-up-left-1.png │ │ ├── heat-pipe-corner-up-left-2.png │ │ ├── heat-pipe-corner-up-left-3.png │ │ ├── heat-pipe-corner-up-left-4.png │ │ ├── heat-pipe-corner-up-left-5.png │ │ ├── heat-pipe-corner-up-left-6.png │ │ ├── heat-pipe-corner-up-right-1.png │ │ ├── heat-pipe-corner-up-right-2.png │ │ ├── heat-pipe-corner-up-right-3.png │ │ ├── heat-pipe-corner-up-right-4.png │ │ ├── heat-pipe-corner-up-right-5.png │ │ ├── heat-pipe-corner-up-right-6.png │ │ ├── heat-pipe-ending-down-1.png │ │ ├── heat-pipe-ending-left-1.png │ │ ├── heat-pipe-ending-right-1.png │ │ ├── heat-pipe-ending-up-1.png │ │ ├── heat-pipe-straight-horizontal-1.png │ │ ├── heat-pipe-straight-horizontal-2.png │ │ ├── heat-pipe-straight-horizontal-3.png │ │ ├── heat-pipe-straight-horizontal-4.png │ │ ├── heat-pipe-straight-horizontal-5.png │ │ ├── heat-pipe-straight-horizontal-6.png │ │ ├── heat-pipe-straight-vertical-1.png │ │ ├── heat-pipe-straight-vertical-2.png │ │ ├── heat-pipe-straight-vertical-3.png │ │ ├── heat-pipe-straight-vertical-4.png │ │ ├── heat-pipe-straight-vertical-5.png │ │ ├── heat-pipe-straight-vertical-6.png │ │ ├── heat-pipe-straight-vertical-single.png │ │ ├── heat-pipe-t-1.png │ │ ├── heat-pipe-t-down-1.png │ │ ├── heat-pipe-t-left-1.png │ │ ├── heat-pipe-t-right-1.png │ │ ├── heat-pipe-t-up-1.png │ │ ├── heatex-east-pipe.png │ │ ├── heatex-endings.png │ │ ├── heatex-north-pipe.png │ │ ├── heatex-south-pipe.png │ │ └── heatex-west-pipe.png │ ├── heat-pipe-3 │ │ ├── heat-pipe-corner-down-left-1.png │ │ ├── heat-pipe-corner-down-left-2.png │ │ ├── heat-pipe-corner-down-left-3.png │ │ ├── heat-pipe-corner-down-left-4.png │ │ ├── heat-pipe-corner-down-left-5.png │ │ ├── heat-pipe-corner-down-left-6.png │ │ ├── heat-pipe-corner-down-right-1.png │ │ ├── heat-pipe-corner-down-right-2.png │ │ ├── heat-pipe-corner-down-right-3.png │ │ ├── heat-pipe-corner-down-right-4.png │ │ ├── heat-pipe-corner-down-right-5.png │ │ ├── heat-pipe-corner-down-right-6.png │ │ ├── heat-pipe-corner-up-left-1.png │ │ ├── heat-pipe-corner-up-left-2.png │ │ ├── heat-pipe-corner-up-left-3.png │ │ ├── heat-pipe-corner-up-left-4.png │ │ ├── heat-pipe-corner-up-left-5.png │ │ ├── heat-pipe-corner-up-left-6.png │ │ ├── heat-pipe-corner-up-right-1.png │ │ ├── heat-pipe-corner-up-right-2.png │ │ ├── heat-pipe-corner-up-right-3.png │ │ ├── heat-pipe-corner-up-right-4.png │ │ ├── heat-pipe-corner-up-right-5.png │ │ ├── heat-pipe-corner-up-right-6.png │ │ ├── heat-pipe-ending-down-1.png │ │ ├── heat-pipe-ending-left-1.png │ │ ├── heat-pipe-ending-right-1.png │ │ ├── heat-pipe-ending-up-1.png │ │ ├── heat-pipe-straight-horizontal-1.png │ │ ├── heat-pipe-straight-horizontal-2.png │ │ ├── heat-pipe-straight-horizontal-3.png │ │ ├── heat-pipe-straight-horizontal-4.png │ │ ├── heat-pipe-straight-horizontal-5.png │ │ ├── heat-pipe-straight-horizontal-6.png │ │ ├── heat-pipe-straight-horizontal-single.png │ │ ├── heat-pipe-straight-vertical-1.png │ │ ├── heat-pipe-straight-vertical-2.png │ │ ├── heat-pipe-straight-vertical-3.png │ │ ├── heat-pipe-straight-vertical-4.png │ │ ├── heat-pipe-straight-vertical-5.png │ │ ├── heat-pipe-straight-vertical-6.png │ │ ├── heat-pipe-straight-vertical-single.png │ │ ├── heat-pipe-t-1.png │ │ ├── heat-pipe-t-down-1.png │ │ ├── heat-pipe-t-left-1.png │ │ ├── heat-pipe-t-right-1.png │ │ ├── heat-pipe-t-up-1.png │ │ ├── heatex-east-pipe.png │ │ ├── heatex-endings.png │ │ ├── heatex-north-pipe.png │ │ ├── heatex-south-pipe.png │ │ └── heatex-west-pipe.png │ ├── heat-pipe-4 │ │ ├── heat-pipe-corner-down-left-1.png │ │ ├── heat-pipe-corner-down-left-2.png │ │ ├── heat-pipe-corner-down-left-3.png │ │ ├── heat-pipe-corner-down-left-4.png │ │ ├── heat-pipe-corner-down-left-5.png │ │ ├── heat-pipe-corner-down-left-6.png │ │ ├── heat-pipe-corner-down-right-1.png │ │ ├── heat-pipe-corner-down-right-2.png │ │ ├── heat-pipe-corner-down-right-3.png │ │ ├── heat-pipe-corner-down-right-4.png │ │ ├── heat-pipe-corner-down-right-5.png │ │ ├── heat-pipe-corner-down-right-6.png │ │ ├── heat-pipe-corner-up-left-1.png │ │ ├── heat-pipe-corner-up-left-2.png │ │ ├── heat-pipe-corner-up-left-3.png │ │ ├── heat-pipe-corner-up-left-4.png │ │ ├── heat-pipe-corner-up-left-5.png │ │ ├── heat-pipe-corner-up-left-6.png │ │ ├── heat-pipe-corner-up-right-1.png │ │ ├── heat-pipe-corner-up-right-2.png │ │ ├── heat-pipe-corner-up-right-3.png │ │ ├── heat-pipe-corner-up-right-4.png │ │ ├── heat-pipe-corner-up-right-5.png │ │ ├── heat-pipe-corner-up-right-6.png │ │ ├── heat-pipe-ending-down-1.png │ │ ├── heat-pipe-ending-left-1.png │ │ ├── heat-pipe-ending-right-1.png │ │ ├── heat-pipe-ending-up-1.png │ │ ├── heat-pipe-straight-horizontal-1.png │ │ ├── heat-pipe-straight-horizontal-2.png │ │ ├── heat-pipe-straight-horizontal-3.png │ │ ├── heat-pipe-straight-horizontal-4.png │ │ ├── heat-pipe-straight-horizontal-5.png │ │ ├── heat-pipe-straight-horizontal-6.png │ │ ├── heat-pipe-straight-horizontal-single.png │ │ ├── heat-pipe-straight-vertical-1.png │ │ ├── heat-pipe-straight-vertical-2.png │ │ ├── heat-pipe-straight-vertical-3.png │ │ ├── heat-pipe-straight-vertical-4.png │ │ ├── heat-pipe-straight-vertical-5.png │ │ ├── heat-pipe-straight-vertical-6.png │ │ ├── heat-pipe-straight-vertical-single.png │ │ ├── heat-pipe-t-1.png │ │ ├── heat-pipe-t-down-1.png │ │ ├── heat-pipe-t-left-1.png │ │ ├── heat-pipe-t-right-1.png │ │ ├── heat-pipe-t-up-1.png │ │ ├── heatex-east-pipe.png │ │ ├── heatex-endings.png │ │ ├── heatex-north-pipe.png │ │ ├── heatex-south-pipe.png │ │ └── heatex-west-pipe.png │ ├── icons │ │ ├── burner-generator.png │ │ ├── burner-reactor.png │ │ ├── fluid-generator.png │ │ ├── heat-pipe-2.png │ │ ├── heat-pipe-3.png │ │ ├── heat-pipe-4.png │ │ ├── oil-boiler.png │ │ └── technology │ │ │ ├── boiler.png │ │ │ ├── fluid-generator.png │ │ │ ├── heat-exchanger.png │ │ │ ├── heat-pipe.png │ │ │ ├── heat-power.png │ │ │ ├── nuclear-power.png │ │ │ ├── oil-boiler.png │ │ │ ├── steam-engine.png │ │ │ └── steam-turbine.png │ ├── nuclear-reactor │ │ ├── reactor-connect-patches-2.png │ │ ├── reactor-connect-patches-3.png │ │ ├── reactor-connect-patches.png │ │ ├── reactor-lights.png │ │ ├── reactor-pipes-2.png │ │ ├── reactor-pipes-3.png │ │ └── reactor-pipes.png │ ├── solar-panel-large │ │ ├── base │ │ │ ├── solar-panel-large-shadow-overlay.png │ │ │ ├── solar-panel-large-shadow.png │ │ │ └── solar-panel-large.png │ │ ├── solar-panel-large-highlights.png │ │ └── solar-panel-large-mask.png │ ├── solar-panel-small │ │ ├── base │ │ │ ├── solar-panel-small-shadow-overlay.png │ │ │ ├── solar-panel-small-shadow.png │ │ │ └── solar-panel-small.png │ │ ├── solar-panel-small-highlights.png │ │ └── solar-panel-small-mask.png │ └── solar-panel │ │ ├── base │ │ ├── solar-panel-shadow-overlay.png │ │ ├── solar-panel-shadow.png │ │ └── solar-panel.png │ │ ├── solar-panel-highlights.png │ │ └── solar-panel-mask.png ├── info.json ├── locale │ ├── de │ │ └── bobpower.cfg │ ├── en │ │ └── bobpower.cfg │ ├── ru │ │ └── bobpower.cfg │ └── zh-TW │ │ └── bobpower.cfg ├── migrations │ ├── bobpower_0.18.0.json │ ├── bobpower_0.18.7.json │ ├── bobpower_1.1.6.json │ └── bobpower_2.0.0.json ├── prototypes │ ├── burner-generator.lua │ ├── burner-reactor-updates.lua │ ├── burner-reactor.lua │ ├── category.lua │ ├── entity │ │ ├── accumulators.lua │ │ ├── boilers.lua │ │ ├── fluid-generator.lua │ │ ├── heat-exchangers.lua │ │ ├── nuclear.lua │ │ ├── oil-boilers.lua │ │ ├── poles.lua │ │ ├── solar-panels.lua │ │ ├── steam-engines.lua │ │ └── steam-turbines.lua │ ├── heat-pipes-updates.lua │ ├── heat-pipes.lua │ ├── item │ │ ├── accumulators.lua │ │ ├── boilers.lua │ │ ├── fluid-generator.lua │ │ ├── heat-exchangers.lua │ │ ├── nuclear.lua │ │ ├── oil-boilers.lua │ │ ├── poles.lua │ │ ├── solar-panels.lua │ │ ├── steam-engines.lua │ │ └── steam-turbines.lua │ ├── recipe │ │ ├── accumulators-updates.lua │ │ ├── accumulators.lua │ │ ├── boilers-updates.lua │ │ ├── boilers.lua │ │ ├── fluid-generator-updates.lua │ │ ├── fluid-generator.lua │ │ ├── heat-exchangers-updates.lua │ │ ├── heat-exchangers.lua │ │ ├── nuclear-updates.lua │ │ ├── nuclear.lua │ │ ├── oil-boilers-updates.lua │ │ ├── oil-boilers.lua │ │ ├── poles-updates.lua │ │ ├── poles.lua │ │ ├── solar-panels-updates.lua │ │ ├── solar-panels.lua │ │ ├── steam-engines-updates.lua │ │ ├── steam-engines.lua │ │ ├── steam-turbines-updates.lua │ │ └── steam-turbines.lua │ └── technology │ │ ├── accumulators.lua │ │ ├── boilers.lua │ │ ├── fluid-generator.lua │ │ ├── heat-exchangers.lua │ │ ├── nuclear.lua │ │ ├── oil-boilers.lua │ │ ├── poles.lua │ │ ├── solar-panels.lua │ │ ├── steam-engines.lua │ │ ├── steam-turbines.lua │ │ └── technology-updates.lua ├── settings.lua └── thumbnail.png ├── bobrevamp ├── changelog.txt ├── data-updates.lua ├── data.lua ├── graphics │ └── icons │ │ ├── ammonia.png │ │ ├── ammonium-chloride-reprocessing.png │ │ ├── ammonium-chloride.png │ │ ├── bob-oil-processing.png │ │ ├── brine-electrolysis.png │ │ ├── brine.png │ │ ├── carbon-dioxide-oil-processing.png │ │ ├── carbon-dioxide.png │ │ ├── deuterium-reactor-blue.png │ │ ├── deuterium-reactor.png │ │ ├── dinitrogen-tetroxide.png │ │ ├── heat-shield-tile.png │ │ ├── hydrazine.png │ │ ├── hydrogen-peroxide.png │ │ ├── limestone.png │ │ ├── nitric-oxide.png │ │ ├── nitrogen-dioxide.png │ │ ├── oil-processing-with-sulfur-dioxide-1.png │ │ ├── oil-processing-with-sulfur-dioxide-2.png │ │ ├── oil-processing-with-sulfur-dioxide-3.png │ │ ├── oil-processing-with-sulfur.png │ │ ├── petroleum-gas.png │ │ ├── sodium-bicarbonate.png │ │ ├── sodium-carbonate.png │ │ ├── sodium-chlorate.png │ │ ├── sodium-cobaltate.png │ │ ├── sodium-cobaltate2.png │ │ ├── sodium-perchlorate.png │ │ ├── solid-fuel-from-sour-gas.png │ │ ├── sour-gas.png │ │ ├── technology │ │ ├── chemical-plant-old.png │ │ ├── chemical-plant.png │ │ ├── deuterium-nuclear-power-blue.png │ │ ├── deuterium-nuclear-power.png │ │ ├── heat-shield.png │ │ ├── hydrazine.png │ │ ├── nuclear-power.png │ │ ├── rtg.png │ │ └── thorium-nuclear-power.png │ │ ├── thorium-reactor.png │ │ └── void.png ├── info.json ├── locale │ ├── de │ │ └── bobrevamp.cfg │ ├── en │ │ └── bobrevamp.cfg │ ├── ru │ │ └── bobrevamp.cfg │ └── zh-TW │ │ └── bobrevamp.cfg ├── migrations │ ├── bobrevamp_0.15.1-rocket-fuel.lua │ ├── bobrevamp_0.15.2-rocket-fuel.lua │ ├── bobrevamp_1.2.0.lua │ └── bobrevamp_2.0.0.json ├── prototypes │ ├── hard-mode-updates.lua │ ├── hard-mode.lua │ ├── rocket-fuel-updates.lua │ ├── rocket-fuel.lua │ ├── rocket-parts-updates.lua │ ├── rocket-parts.lua │ ├── rtg-updates.lua │ └── rtg.lua ├── settings.lua └── thumbnail.png ├── bobtech ├── changelog.txt ├── control.lua ├── data-final-fixes.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entity │ │ ├── burner-generator │ │ │ ├── burner-generator-fire.png │ │ │ └── burner-generator.png │ │ └── lab │ │ │ ├── lab-alien-light.png │ │ │ ├── lab-alien.png │ │ │ ├── lab-integration.png │ │ │ ├── lab-red.png │ │ │ ├── lab-shadow.png │ │ │ ├── lab2-light.png │ │ │ └── lab2.png │ └── icons │ │ ├── alien-science-pack-base.png │ │ ├── alien-science-pack-blue.png │ │ ├── alien-science-pack-green.png │ │ ├── alien-science-pack-orange.png │ │ ├── alien-science-pack-purple.png │ │ ├── alien-science-pack-red.png │ │ ├── alien-science-pack-yellow.png │ │ ├── alien-science-pack.png │ │ ├── alien-technology.png │ │ ├── burner-generator.png │ │ ├── lab-alien.png │ │ ├── lab-red.png │ │ ├── lab-technology.png │ │ ├── lab0-technology.png │ │ ├── lab2-technology.png │ │ ├── lab2.png │ │ ├── logistic-science-pack-technology.png │ │ ├── logistic-science-pack.png │ │ ├── research-with-transport.png │ │ └── science-pack-gold.png ├── info.json ├── locale │ ├── de │ │ └── bobtech.cfg │ ├── en │ │ └── bobtech.cfg │ ├── ru │ │ └── bobtech.cfg │ └── zh-TW │ │ └── bobtech.cfg ├── migrations │ ├── bobtech_0.17.6.json │ ├── bobtech_2.0.0.json │ └── bobtech_2.0.0.lua ├── prototypes │ ├── entity │ │ ├── entity-alien.lua │ │ └── entity.lua │ ├── item │ │ ├── item-alien.lua │ │ ├── item-updates.lua │ │ └── item.lua │ ├── recipe │ │ ├── recipe-alien.lua │ │ ├── recipe-updates.lua │ │ └── recipe.lua │ └── technology │ │ ├── technology-alien.lua │ │ ├── technology-updates.lua │ │ └── technology.lua ├── remote.lua ├── settings.lua └── thumbnail.png ├── bobvehicleequipment ├── changelog.txt ├── data-updates.lua ├── data.lua ├── graphics │ ├── beam │ │ ├── laser-body-amethyst.png │ │ ├── laser-body-emerald.png │ │ ├── laser-body-sapphire.png │ │ ├── laser-body-topaz.png │ │ ├── laser-body.png │ │ ├── laser-end-amethyst.png │ │ ├── laser-end-emerald.png │ │ ├── laser-end-sapphire.png │ │ ├── laser-end-topaz.png │ │ └── laser-end.png │ ├── equipment │ │ ├── vehicle-battery-equipment-1.png │ │ ├── vehicle-battery-equipment-2.png │ │ ├── vehicle-battery-equipment-3.png │ │ ├── vehicle-battery-equipment-4.png │ │ ├── vehicle-battery-equipment-5.png │ │ ├── vehicle-battery-equipment-6.png │ │ ├── vehicle-big-turret-equipment-1.png │ │ ├── vehicle-big-turret-equipment-2.png │ │ ├── vehicle-big-turret-equipment-3.png │ │ ├── vehicle-big-turret-equipment-4.png │ │ ├── vehicle-big-turret-equipment-5.png │ │ ├── vehicle-big-turret-equipment-6.png │ │ ├── vehicle-engine-equipment.png │ │ ├── vehicle-fission-cell-equipment-1.png │ │ ├── vehicle-fission-cell-equipment-2.png │ │ ├── vehicle-fission-cell-equipment-3.png │ │ ├── vehicle-fission-cell-equipment-4.png │ │ ├── vehicle-fission-cell-equipment-5.png │ │ ├── vehicle-fission-cell-equipment-6.png │ │ ├── vehicle-fission-reactor-equipment-1.png │ │ ├── vehicle-fission-reactor-equipment-2.png │ │ ├── vehicle-fission-reactor-equipment-3.png │ │ ├── vehicle-fission-reactor-equipment-4.png │ │ ├── vehicle-fission-reactor-equipment-5.png │ │ ├── vehicle-fission-reactor-equipment-6.png │ │ ├── vehicle-fusion-cell-equipment-1.png │ │ ├── vehicle-fusion-cell-equipment-2.png │ │ ├── vehicle-fusion-cell-equipment-3.png │ │ ├── vehicle-fusion-cell-equipment-4.png │ │ ├── vehicle-fusion-cell-equipment-5.png │ │ ├── vehicle-fusion-cell-equipment-6.png │ │ ├── vehicle-fusion-reactor-equipment-1.png │ │ ├── vehicle-fusion-reactor-equipment-2.png │ │ ├── vehicle-fusion-reactor-equipment-3.png │ │ ├── vehicle-fusion-reactor-equipment-4.png │ │ ├── vehicle-fusion-reactor-equipment-5.png │ │ ├── vehicle-fusion-reactor-equipment-6.png │ │ ├── vehicle-laser-defense-equipment-1.png │ │ ├── vehicle-laser-defense-equipment-2.png │ │ ├── vehicle-laser-defense-equipment-3.png │ │ ├── vehicle-laser-defense-equipment-4.png │ │ ├── vehicle-laser-defense-equipment-5.png │ │ ├── vehicle-laser-defense-equipment-6.png │ │ ├── vehicle-motor-equipment.png │ │ ├── vehicle-roboport-equipment-2.png │ │ ├── vehicle-roboport-equipment-3.png │ │ ├── vehicle-roboport-equipment-4.png │ │ ├── vehicle-roboport-equipment.png │ │ ├── vehicle-shield-equipment-1.png │ │ ├── vehicle-shield-equipment-2.png │ │ ├── vehicle-shield-equipment-3.png │ │ ├── vehicle-shield-equipment-4.png │ │ ├── vehicle-shield-equipment-5.png │ │ ├── vehicle-shield-equipment-6.png │ │ ├── vehicle-shield-equipment-7.png │ │ ├── vehicle-solar-panel-equipment-0.png │ │ ├── vehicle-solar-panel-equipment-1.png │ │ ├── vehicle-solar-panel-equipment-2.png │ │ ├── vehicle-solar-panel-equipment-3.png │ │ ├── vehicle-solar-panel-equipment-4.png │ │ └── vehicle-solar-panel-equipment-5.png │ ├── icons │ │ ├── construction-robot-1.png │ │ ├── construction-robot-2.png │ │ ├── construction-robot-3.png │ │ ├── construction-robot-4.png │ │ ├── construction-robot-5.png │ │ ├── roboport-antenna-2.png │ │ ├── roboport-antenna-3.png │ │ ├── roboport-antenna-4.png │ │ ├── roboport-antenna.png │ │ ├── roboport-chargepad-2.png │ │ ├── roboport-chargepad-3.png │ │ ├── roboport-chargepad-4.png │ │ ├── roboport-chargepad.png │ │ ├── vehicle-big-turret-equipment-1.png │ │ ├── vehicle-big-turret-equipment-2.png │ │ ├── vehicle-big-turret-equipment-3.png │ │ ├── vehicle-big-turret-equipment-4.png │ │ ├── vehicle-big-turret-equipment-5.png │ │ ├── vehicle-big-turret-equipment-6.png │ │ ├── vehicle-fission-cell-equipment-1.png │ │ ├── vehicle-fission-cell-equipment-2.png │ │ ├── vehicle-fission-cell-equipment-3.png │ │ ├── vehicle-fission-cell-equipment-4.png │ │ ├── vehicle-fission-cell-equipment-5.png │ │ ├── vehicle-fission-cell-equipment-6.png │ │ ├── vehicle-fission-reactor-equipment-1.png │ │ ├── vehicle-fission-reactor-equipment-2.png │ │ ├── vehicle-fission-reactor-equipment-3.png │ │ ├── vehicle-fission-reactor-equipment-4.png │ │ ├── vehicle-fission-reactor-equipment-5.png │ │ ├── vehicle-fission-reactor-equipment-6.png │ │ ├── vehicle-fusion-reactor-equipment-1.png │ │ ├── vehicle-fusion-reactor-equipment-2.png │ │ ├── vehicle-fusion-reactor-equipment-3.png │ │ ├── vehicle-fusion-reactor-equipment-4.png │ │ ├── vehicle-fusion-reactor-equipment-5.png │ │ ├── vehicle-fusion-reactor-equipment-6.png │ │ ├── vehicle-roboport-equipment-base.png │ │ ├── vehicle-solar-panel-equipment-0.png │ │ ├── vehicle-solar-panel-equipment-1.png │ │ ├── vehicle-solar-panel-equipment-2.png │ │ ├── vehicle-solar-panel-equipment-3.png │ │ ├── vehicle-solar-panel-equipment-4.png │ │ └── vehicle-solar-panel-equipment-5.png │ ├── particles2.png │ ├── plasma-explosion.png │ └── technology │ │ ├── constant-vehicle-equipment.png │ │ ├── vehicle-battery-equipment.png │ │ ├── vehicle-big-turret-equipment.png │ │ ├── vehicle-engine-equipment.png │ │ ├── vehicle-fission-cell-equipment-1.png │ │ ├── vehicle-fission-cell-equipment-2.png │ │ ├── vehicle-fission-cell-equipment-3.png │ │ ├── vehicle-fission-cell-equipment-4.png │ │ ├── vehicle-fission-cell-equipment-5.png │ │ ├── vehicle-fission-cell-equipment-6.png │ │ ├── vehicle-fission-reactor-equipment-1.png │ │ ├── vehicle-fission-reactor-equipment-2.png │ │ ├── vehicle-fission-reactor-equipment-3.png │ │ ├── vehicle-fission-reactor-equipment-4.png │ │ ├── vehicle-fission-reactor-equipment-5.png │ │ ├── vehicle-fission-reactor-equipment-6.png │ │ ├── vehicle-fusion-cell-equipment.png │ │ ├── vehicle-fusion-reactor-equipment.png │ │ ├── vehicle-laser-defense-equipment.png │ │ ├── vehicle-motor-equipment.png │ │ ├── vehicle-roboport-equipment.png │ │ ├── vehicle-shield-equipment.png │ │ └── vehicle-solar-panel-equipment.png ├── info.json ├── locale │ ├── de │ │ └── bobvehicleequipment.cfg │ ├── en │ │ └── bobvehicleequipment.cfg │ ├── ru │ │ └── bobvehicleequipment.cfg │ └── zh-TW │ │ └── bobvehicleequipment.cfg ├── migrations │ └── bobvehicleequipment_2.0.0.json ├── prototypes │ ├── battery.lua │ ├── beams.lua │ ├── belt-immunity.lua │ ├── category.lua │ ├── entities.lua │ ├── equipment-grid.lua │ ├── fission-cell.lua │ ├── generator.lua │ ├── laser-defense.lua │ ├── plasma-defense.lua │ ├── projectiles.lua │ ├── recipe-updates.lua │ ├── roboport.lua │ ├── shield.lua │ ├── solar-panel.lua │ ├── speed.lua │ └── technology-updates.lua ├── settings.lua └── thumbnail.png ├── bobwarfare ├── changelog.txt ├── data-final-fixes.lua ├── data-updates.lua ├── data.lua ├── graphics │ ├── entities │ │ ├── beam │ │ │ ├── laser-body-amethyst.png │ │ │ ├── laser-body-emerald.png │ │ │ ├── laser-body-sapphire.png │ │ │ ├── laser-body-topaz.png │ │ │ ├── laser-body.png │ │ │ ├── laser-end-amethyst.png │ │ │ ├── laser-end-emerald.png │ │ │ ├── laser-end-sapphire.png │ │ │ ├── laser-end-topaz.png │ │ │ └── laser-end.png │ │ ├── laser-bubble.png │ │ ├── laser-turret │ │ │ ├── laser-turret-folded-8.png │ │ │ ├── laser-turret-folded-mask-8.png │ │ │ ├── laser-turret-folded-shadow-8.png │ │ │ └── laser-turret-shooting-light.png │ │ ├── particles2.png │ │ ├── plasma-explosion.png │ │ ├── projectiles │ │ │ ├── acid-projectile-green.png │ │ │ ├── acid-projectile-purple.png │ │ │ ├── acid-projectile-red.png │ │ │ ├── acid-projectile-shadow.png │ │ │ ├── acid-projectile-yellow.png │ │ │ ├── acid-rocket.png │ │ │ ├── electric-rocket.png │ │ │ ├── explosive-rocket.png │ │ │ ├── flame-rocket.png │ │ │ ├── laser.png │ │ │ ├── piercing-rocket.png │ │ │ ├── plasma-rocket.png │ │ │ ├── poison-rocket.png │ │ │ ├── rocket-shadow.png │ │ │ ├── rocket.png │ │ │ └── shotgun-shot.png │ │ ├── reinforced-wall │ │ │ ├── wall-corner-left-down-shadow.png │ │ │ ├── wall-corner-left-down.png │ │ │ ├── wall-corner-right-down-shadow.png │ │ │ ├── wall-corner-right-down.png │ │ │ ├── wall-ending-left-shadow.png │ │ │ ├── wall-ending-left.png │ │ │ ├── wall-ending-right-shadow.png │ │ │ ├── wall-ending-right.png │ │ │ ├── wall-single-shadow.png │ │ │ ├── wall-single.png │ │ │ ├── wall-straight-horizontal-1.png │ │ │ ├── wall-straight-horizontal-2.png │ │ │ ├── wall-straight-horizontal-3.png │ │ │ ├── wall-straight-horizontal-shadow.png │ │ │ ├── wall-straight-vertical-1.png │ │ │ ├── wall-straight-vertical-2.png │ │ │ ├── wall-straight-vertical-3.png │ │ │ ├── wall-straight-vertical-shadow.png │ │ │ ├── wall-t-down-shadow.png │ │ │ └── wall-t-down.png │ │ └── robots │ │ │ ├── combat-robot-capsule-shadow.png │ │ │ ├── construction-robot-2.png │ │ │ ├── construction-robot-3.png │ │ │ ├── construction-robot-4.png │ │ │ ├── construction-robot.png │ │ │ ├── defender-capsule.png │ │ │ ├── defender.png │ │ │ ├── destroyer-capsule.png │ │ │ ├── destroyer.png │ │ │ ├── distractor-capsule.png │ │ │ ├── distractor.png │ │ │ ├── laser-robot-capsule.png │ │ │ ├── laser-robot.png │ │ │ ├── logistic-robot-2.png │ │ │ ├── logistic-robot-3.png │ │ │ ├── logistic-robot-4.png │ │ │ ├── logistic-robot.png │ │ │ └── robot-shadow.png │ └── icons │ │ ├── acid-bullet-magazine.png │ │ ├── acid-bullet-projectile.png │ │ ├── acid-bullet.png │ │ ├── acid-rocket.png │ │ ├── ap-bullet-magazine.png │ │ ├── ap-bullet-projectile.png │ │ ├── ap-bullet.png │ │ ├── artillery-shell.png │ │ ├── bullet-casing.png │ │ ├── bullet-magazine.png │ │ ├── bullet-projectile.png │ │ ├── bullet.png │ │ ├── cordite.png │ │ ├── defender-capsule.png │ │ ├── defender.png │ │ ├── destroyer-capsule.png │ │ ├── destroyer.png │ │ ├── distractor-capsule.png │ │ ├── distractor.png │ │ ├── drone-frame.png │ │ ├── electric-bullet-magazine.png │ │ ├── electric-bullet-projectile.png │ │ ├── electric-bullet.png │ │ ├── electric-rocket.png │ │ ├── explosive-rocket.png │ │ ├── fire-capsule.png │ │ ├── flame-bullet-magazine.png │ │ ├── flame-bullet-projectile.png │ │ ├── flame-bullet.png │ │ ├── flame-rocket.png │ │ ├── flamethrower-drone-2.png │ │ ├── flamethrower-drone-3.png │ │ ├── flamethrower-drone-4.png │ │ ├── flamethrower-drone.png │ │ ├── gatling-gun.png │ │ ├── glycerol.png │ │ ├── gun-cotton.png │ │ ├── gun-drone-2.png │ │ ├── gun-drone-3.png │ │ ├── gun-drone-4.png │ │ ├── gun-drone.png │ │ ├── he-bullet-magazine.png │ │ ├── he-bullet-projectile.png │ │ ├── he-bullet.png │ │ ├── heavy-armor-2.png │ │ ├── heavy-armor-3.png │ │ ├── laser-drone-2.png │ │ ├── laser-drone-3.png │ │ ├── laser-drone-4.png │ │ ├── laser-drone.png │ │ ├── laser-rifle-ammo-category.png │ │ ├── laser-rifle-battery-amethyst.png │ │ ├── laser-rifle-battery-case.png │ │ ├── laser-rifle-battery-diamond.png │ │ ├── laser-rifle-battery-emerald.png │ │ ├── laser-rifle-battery-glass.png │ │ ├── laser-rifle-battery-ruby.png │ │ ├── laser-rifle-battery-sapphire.png │ │ ├── laser-rifle-battery-topaz.png │ │ ├── laser-rifle.png │ │ ├── laser-robot-capsule.png │ │ ├── laser-robot.png │ │ ├── magazine.png │ │ ├── missile-warhead-acid.png │ │ ├── missile-warhead-electric.png │ │ ├── missile-warhead-explosive.png │ │ ├── missile-warhead-fire.png │ │ ├── missile-warhead-pierce.png │ │ ├── missile-warhead-plasma.png │ │ ├── missile-warhead-poison.png │ │ ├── missile-warhead.png │ │ ├── nitroglycerin.png │ │ ├── petroleum-jelly.png │ │ ├── piercing-rocket.png │ │ ├── plasma-bullet-magazine.png │ │ ├── plasma-bullet-projectile.png │ │ ├── plasma-bullet.png │ │ ├── plasma-drone-2.png │ │ ├── plasma-drone-3.png │ │ ├── plasma-drone-4.png │ │ ├── plasma-drone.png │ │ ├── plasma-rocket.png │ │ ├── plasma.png │ │ ├── poison-bullet-magazine.png │ │ ├── poison-bullet-projectile.png │ │ ├── poison-bullet.png │ │ ├── poison-rocket.png │ │ ├── power-armor-mk3.png │ │ ├── power-armor-mk4.png │ │ ├── power-armor-mk5.png │ │ ├── reinforced-wall.png │ │ ├── rifle.png │ │ ├── robot-brain-combat-2.png │ │ ├── robot-brain-combat-3.png │ │ ├── robot-brain-combat-4.png │ │ ├── robot-brain-combat.png │ │ ├── robot-tool-combat.png │ │ ├── rocket-body.png │ │ ├── rocket-engine.png │ │ ├── rocket.png │ │ ├── shot.png │ │ ├── shotgun-acid-shell.png │ │ ├── shotgun-ap-shell.png │ │ ├── shotgun-electric-shell.png │ │ ├── shotgun-explosive-shell.png │ │ ├── shotgun-flame-shell.png │ │ ├── shotgun-plasma-shell.png │ │ ├── shotgun-poison-shell.png │ │ ├── shotgun-shell-casing.png │ │ ├── shotgun-shell.png │ │ ├── shotgun-uranium-shell.png │ │ ├── sniper-rifle.png │ │ ├── spidertron │ │ ├── mech-armor-plate.png │ │ ├── mech-body.png │ │ ├── mech-brain.png │ │ ├── mech-foot.png │ │ ├── mech-hip.png │ │ ├── mech-knee.png │ │ ├── mech-leg-segment.png │ │ └── mech-leg.png │ │ ├── sulfuric-nitric-acid.png │ │ ├── tank-2.png │ │ ├── tank-3.png │ │ ├── tank-artillery.png │ │ ├── tank-laser.png │ │ ├── technology │ │ ├── cordite.png │ │ ├── damage.png │ │ ├── flamethrower-drone.png │ │ ├── gun-drone.png │ │ ├── laser-drone.png │ │ ├── laser-rifle-damage.png │ │ ├── laser-rifle.png │ │ ├── nitroglycerin.png │ │ ├── plasma-drone.png │ │ ├── plasma-turrets.png │ │ ├── power-armor-mk3.png │ │ ├── power-armor-mk4.png │ │ ├── power-armor-mk5.png │ │ ├── radars.png │ │ ├── rocket-engine.png │ │ ├── tank-cannon-damage.png │ │ ├── tank-cannon.png │ │ └── tanks.png │ │ ├── uranium-bullet-projectile.png │ │ └── uranium-bullet.png ├── info.json ├── locale │ ├── en │ │ └── bobwarfare.cfg │ ├── ru │ │ └── bobwarfare.cfg │ └── zh-TW │ │ └── bobwarfare.cfg ├── migrations │ ├── bobwarfare_1.1.2.json │ ├── bobwarfare_1.1.6.json │ ├── bobwarfare_1.1.6.lua │ └── bobwarfare_2.0.0.json ├── prototypes │ ├── armor-updates.lua │ ├── category.lua │ ├── damage-type.lua │ ├── entity │ │ ├── beams.lua │ │ ├── drone.lua │ │ ├── effects.lua │ │ ├── mine.lua │ │ ├── projectiles.lua │ │ ├── radar.lua │ │ ├── sounds.lua │ │ ├── tank.lua │ │ ├── turrets.lua │ │ └── wall.lua │ ├── equipment-grid.lua │ ├── item │ │ ├── ammo.lua │ │ ├── armor.lua │ │ ├── drone.lua │ │ ├── fluid.lua │ │ ├── gun.lua │ │ ├── mine.lua │ │ ├── parts.lua │ │ ├── radar.lua │ │ ├── tank.lua │ │ ├── turrets.lua │ │ └── wall.lua │ ├── overides.lua │ ├── recipe │ │ ├── ammo-recipe.lua │ │ ├── armor-recipe.lua │ │ ├── drone-updates.lua │ │ ├── drone.lua │ │ ├── fluid-recipe.lua │ │ ├── gun-recipe.lua │ │ ├── mine-recipe.lua │ │ ├── parts-recipe.lua │ │ ├── radar-recipe.lua │ │ ├── recipe-updates.lua │ │ ├── tank.lua │ │ ├── turrets.lua │ │ └── wall.lua │ ├── robot-parts.lua │ ├── robots-updates.lua │ ├── robots.lua │ ├── spidertron-updates.lua │ ├── spidertron.lua │ ├── technology │ │ ├── ammo.lua │ │ ├── armor.lua │ │ ├── drone.lua │ │ ├── gun.lua │ │ ├── mine.lua │ │ ├── radar.lua │ │ ├── tank.lua │ │ ├── technology-updates.lua │ │ ├── technology.lua │ │ ├── turrets.lua │ │ └── wall.lua │ ├── train-updates.lua │ └── train.lua ├── settings.lua ├── sound │ ├── Gun_Turret1.ogg │ ├── Gun_Turret2.ogg │ ├── Gun_Turret3.ogg │ ├── Rifle1.ogg │ ├── Rifle2.ogg │ ├── Rifle3.ogg │ ├── Sniper_Rifle1.ogg │ ├── Sniper_Rifle2.ogg │ ├── Sniper_Rifle3.ogg │ ├── Sniper_Rifle4.ogg │ ├── Sniper_Rifle5.ogg │ ├── Tank_Turret1.ogg │ ├── Tank_Turret2.ogg │ ├── Tank_Turret3.ogg │ ├── laser-beam-01.ogg │ ├── laser-beam-02.ogg │ ├── laser-beam-03.ogg │ ├── plasma-explosion-01.ogg │ ├── plasma-explosion-02.ogg │ ├── plasma-turret-01.ogg │ └── turret_fire.ogg └── thumbnail.png ├── clock ├── changelog.txt ├── control.lua ├── data.lua ├── fonts │ ├── DIGITAL.TXT │ └── DS-DIGIB.TTF ├── graphics │ ├── always-day-off.png │ ├── always-day-off2.png │ └── always-day-on.png ├── info.json ├── locale │ ├── de │ │ └── clock.cfg │ └── en │ │ ├── clock.cfg │ │ └── info.json ├── settings.lua └── thumbnail.png └── stylua.toml /.github/workflows/stylua.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/.github/workflows/stylua.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/.gitignore -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/License.md -------------------------------------------------------------------------------- /bob_mod_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bob_mod_builder.py -------------------------------------------------------------------------------- /bobassembly/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/changelog.txt -------------------------------------------------------------------------------- /bobassembly/data-final-fixes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/data-final-fixes.lua -------------------------------------------------------------------------------- /bobassembly/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/data-updates.lua -------------------------------------------------------------------------------- /bobassembly/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/data.lua -------------------------------------------------------------------------------- /bobassembly/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/info.json -------------------------------------------------------------------------------- /bobassembly/locale/de/bobassembly.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/locale/de/bobassembly.cfg -------------------------------------------------------------------------------- /bobassembly/locale/en/bobassembly.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/locale/en/bobassembly.cfg -------------------------------------------------------------------------------- /bobassembly/locale/ru/bobassembly.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/locale/ru/bobassembly.cfg -------------------------------------------------------------------------------- /bobassembly/locale/uk/bobassembly.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/locale/uk/bobassembly.cfg -------------------------------------------------------------------------------- /bobassembly/locale/zh-TW/bobassembly.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/locale/zh-TW/bobassembly.cfg -------------------------------------------------------------------------------- /bobassembly/prototypes/assembly-burner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/assembly-burner.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/assembly-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/assembly-updates.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/assembly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/assembly.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/centrifuge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/centrifuge.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/chemical-plant.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/chemical-plant.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/distillery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/distillery.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/electric-furnace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/electric-furnace.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/electrolyser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/electrolyser.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/fluid-furnace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/fluid-furnace.lua -------------------------------------------------------------------------------- /bobassembly/prototypes/oil-refinery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/prototypes/oil-refinery.lua -------------------------------------------------------------------------------- /bobassembly/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/settings.lua -------------------------------------------------------------------------------- /bobassembly/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobassembly/thumbnail.png -------------------------------------------------------------------------------- /bobclasses/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/changelog.txt -------------------------------------------------------------------------------- /bobclasses/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/control.lua -------------------------------------------------------------------------------- /bobclasses/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/data-updates.lua -------------------------------------------------------------------------------- /bobclasses/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/data.lua -------------------------------------------------------------------------------- /bobclasses/icons/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/2.png -------------------------------------------------------------------------------- /bobclasses/icons/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/3.png -------------------------------------------------------------------------------- /bobclasses/icons/balanced-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/balanced-2.png -------------------------------------------------------------------------------- /bobclasses/icons/balanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/balanced.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/ayase-boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/ayase-boots.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/body.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/boots.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/brain-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/brain-2.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/brain-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/brain-3.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/brain-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/brain-4.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/brain.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/exoskeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/exoskeleton.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/fission-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/fission-core.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/gloves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/gloves.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/head.png -------------------------------------------------------------------------------- /bobclasses/icons/bodies/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/bodies/shell.png -------------------------------------------------------------------------------- /bobclasses/icons/builder-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/builder-2.png -------------------------------------------------------------------------------- /bobclasses/icons/builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/builder.png -------------------------------------------------------------------------------- /bobclasses/icons/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/character.png -------------------------------------------------------------------------------- /bobclasses/icons/crafter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/crafter-2.png -------------------------------------------------------------------------------- /bobclasses/icons/crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/crafter.png -------------------------------------------------------------------------------- /bobclasses/icons/engineer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/engineer.png -------------------------------------------------------------------------------- /bobclasses/icons/fighter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/fighter-2.png -------------------------------------------------------------------------------- /bobclasses/icons/fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/fighter.png -------------------------------------------------------------------------------- /bobclasses/icons/sapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sapper.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/balanced-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/balanced-2.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/balanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/balanced.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/builder-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/builder-2.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/builder.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/crafter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/crafter-2.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/crafter.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/engineer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/engineer.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/fighter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/fighter-2.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/fighter.png -------------------------------------------------------------------------------- /bobclasses/icons/sprites/sapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/icons/sprites/sapper.png -------------------------------------------------------------------------------- /bobclasses/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/info.json -------------------------------------------------------------------------------- /bobclasses/locale/de/bobclasses.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/locale/de/bobclasses.cfg -------------------------------------------------------------------------------- /bobclasses/locale/en/bobclasses.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/locale/en/bobclasses.cfg -------------------------------------------------------------------------------- /bobclasses/locale/ru/bobclasses.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/locale/ru/bobclasses.cfg -------------------------------------------------------------------------------- /bobclasses/locale/uk/bobclasses.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/locale/uk/bobclasses.cfg -------------------------------------------------------------------------------- /bobclasses/locale/zh-TW/bobclasses.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/locale/zh-TW/bobclasses.cfg -------------------------------------------------------------------------------- /bobclasses/migrations/bobclasses_0.17.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/migrations/bobclasses_0.17.4.json -------------------------------------------------------------------------------- /bobclasses/migrations/bobclasses_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/migrations/bobclasses_2.0.0.json -------------------------------------------------------------------------------- /bobclasses/prototypes/bodies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/prototypes/bodies.lua -------------------------------------------------------------------------------- /bobclasses/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/prototypes/category.lua -------------------------------------------------------------------------------- /bobclasses/prototypes/character.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/prototypes/character.lua -------------------------------------------------------------------------------- /bobclasses/prototypes/parts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/prototypes/parts.lua -------------------------------------------------------------------------------- /bobclasses/prototypes/recipe-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/prototypes/recipe-updates.lua -------------------------------------------------------------------------------- /bobclasses/prototypes/style.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/prototypes/style.lua -------------------------------------------------------------------------------- /bobclasses/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/settings.lua -------------------------------------------------------------------------------- /bobclasses/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobclasses/thumbnail.png -------------------------------------------------------------------------------- /bobelectronics/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/changelog.txt -------------------------------------------------------------------------------- /bobelectronics/control.lua: -------------------------------------------------------------------------------- 1 | require("remote") 2 | -------------------------------------------------------------------------------- /bobelectronics/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/data-updates.lua -------------------------------------------------------------------------------- /bobelectronics/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/data.lua -------------------------------------------------------------------------------- /bobelectronics/graphics/icons/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/graphics/icons/cpu.png -------------------------------------------------------------------------------- /bobelectronics/graphics/icons/resin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/graphics/icons/resin.png -------------------------------------------------------------------------------- /bobelectronics/graphics/icons/rubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/graphics/icons/rubber.png -------------------------------------------------------------------------------- /bobelectronics/graphics/icons/solder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/graphics/icons/solder.png -------------------------------------------------------------------------------- /bobelectronics/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/info.json -------------------------------------------------------------------------------- /bobelectronics/locale/de/bobelectronics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/locale/de/bobelectronics.cfg -------------------------------------------------------------------------------- /bobelectronics/locale/en/bobelectronics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/locale/en/bobelectronics.cfg -------------------------------------------------------------------------------- /bobelectronics/locale/ru/bobelectronics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/locale/ru/bobelectronics.cfg -------------------------------------------------------------------------------- /bobelectronics/locale/uk/bobelectronics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/locale/uk/bobelectronics.cfg -------------------------------------------------------------------------------- /bobelectronics/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/prototypes/category.lua -------------------------------------------------------------------------------- /bobelectronics/prototypes/chemicals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/prototypes/chemicals.lua -------------------------------------------------------------------------------- /bobelectronics/prototypes/electronics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/prototypes/electronics.lua -------------------------------------------------------------------------------- /bobelectronics/prototypes/recipe-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/prototypes/recipe-updates.lua -------------------------------------------------------------------------------- /bobelectronics/prototypes/resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/prototypes/resource.lua -------------------------------------------------------------------------------- /bobelectronics/prototypes/technology.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/prototypes/technology.lua -------------------------------------------------------------------------------- /bobelectronics/remote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/remote.lua -------------------------------------------------------------------------------- /bobelectronics/settings.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bobelectronics/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobelectronics/thumbnail.png -------------------------------------------------------------------------------- /bobenemies/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/changelog.txt -------------------------------------------------------------------------------- /bobenemies/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/control.lua -------------------------------------------------------------------------------- /bobenemies/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/data-updates.lua -------------------------------------------------------------------------------- /bobenemies/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/data.lua -------------------------------------------------------------------------------- /bobenemies/graphics/entity/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/entity/invisible.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/acid-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/acid-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/acid-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/acid-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/acid-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/acid-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/alien-artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/alien-artifact.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/basic-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/basic-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/basic-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/basic-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/basic-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/basic-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/behemoth-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/behemoth-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/behemoth-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/behemoth-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/big-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/big-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/big-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/big-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/big-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/big-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/biter-spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/biter-spawner.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/electric-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/electric-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/electric-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/electric-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/explosive-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/explosive-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/fire-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/fire-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/fire-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/fire-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/fire-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/fire-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/giant-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/giant-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/giant-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/giant-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/giant-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/giant-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/hardened-bile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/hardened-bile.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/huge-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/huge-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/huge-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/huge-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/huge-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/huge-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/leviathan-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/leviathan-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/medium-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/medium-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/medium-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/medium-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/medium-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/medium-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/piercing-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/piercing-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/piercing-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/piercing-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/poison-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/poison-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/poison-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/poison-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/poison-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/poison-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/radar.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/small-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/small-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/small-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/small-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/small-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/small-worm.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/super-spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/super-spawner.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/titan-biter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/titan-biter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/titan-spitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/titan-spitter.png -------------------------------------------------------------------------------- /bobenemies/graphics/icons/titan-worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/graphics/icons/titan-worm.png -------------------------------------------------------------------------------- /bobenemies/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/info.json -------------------------------------------------------------------------------- /bobenemies/locale/en/bobenemies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/locale/en/bobenemies.cfg -------------------------------------------------------------------------------- /bobenemies/locale/ru/bobenemies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/locale/ru/bobenemies.cfg -------------------------------------------------------------------------------- /bobenemies/locale/uk/bobenemies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/locale/uk/bobenemies.cfg -------------------------------------------------------------------------------- /bobenemies/locale/zh-TW/bobenemies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/locale/zh-TW/bobenemies.cfg -------------------------------------------------------------------------------- /bobenemies/migrations/bobenemies_0.17.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/migrations/bobenemies_0.17.0.json -------------------------------------------------------------------------------- /bobenemies/migrations/bobenemies_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/migrations/bobenemies_2.0.0.json -------------------------------------------------------------------------------- /bobenemies/prototypes/alien-artifact.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/alien-artifact.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/biters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/biters.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/categories.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/categories.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/entities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/entities.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/functions.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/projectiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/projectiles.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/radar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/radar.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/spawners.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/spawners.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/spitters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/spitters.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/values.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/values.lua -------------------------------------------------------------------------------- /bobenemies/prototypes/worms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/prototypes/worms.lua -------------------------------------------------------------------------------- /bobenemies/remote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/remote.lua -------------------------------------------------------------------------------- /bobenemies/settings-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/settings-updates.lua -------------------------------------------------------------------------------- /bobenemies/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/settings.lua -------------------------------------------------------------------------------- /bobenemies/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobenemies/thumbnail.png -------------------------------------------------------------------------------- /bobequipment/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/changelog.txt -------------------------------------------------------------------------------- /bobequipment/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/data-updates.lua -------------------------------------------------------------------------------- /bobequipment/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/data.lua -------------------------------------------------------------------------------- /bobequipment/graphics/beam/laser-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/graphics/beam/laser-body.png -------------------------------------------------------------------------------- /bobequipment/graphics/beam/laser-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/graphics/beam/laser-end.png -------------------------------------------------------------------------------- /bobequipment/graphics/icons/defender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/graphics/icons/defender.png -------------------------------------------------------------------------------- /bobequipment/graphics/icons/destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/graphics/icons/destroyer.png -------------------------------------------------------------------------------- /bobequipment/graphics/icons/distractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/graphics/icons/distractor.png -------------------------------------------------------------------------------- /bobequipment/graphics/icons/laser-robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/graphics/icons/laser-robot.png -------------------------------------------------------------------------------- /bobequipment/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/info.json -------------------------------------------------------------------------------- /bobequipment/locale/de/bobequipment.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/locale/de/bobequipment.cfg -------------------------------------------------------------------------------- /bobequipment/locale/en/bobequipment.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/locale/en/bobequipment.cfg -------------------------------------------------------------------------------- /bobequipment/locale/ru/bobequipment.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/locale/ru/bobequipment.cfg -------------------------------------------------------------------------------- /bobequipment/locale/uk/bobequipment.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/locale/uk/bobequipment.cfg -------------------------------------------------------------------------------- /bobequipment/locale/zh-TW/bobequipment.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/locale/zh-TW/bobequipment.cfg -------------------------------------------------------------------------------- /bobequipment/prototypes/armor-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/prototypes/armor-updates.lua -------------------------------------------------------------------------------- /bobequipment/prototypes/armor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/prototypes/armor.lua -------------------------------------------------------------------------------- /bobequipment/prototypes/beams.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/prototypes/beams.lua -------------------------------------------------------------------------------- /bobequipment/prototypes/item/equipment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/prototypes/item/equipment.lua -------------------------------------------------------------------------------- /bobequipment/prototypes/recipe/equipment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/prototypes/recipe/equipment.lua -------------------------------------------------------------------------------- /bobequipment/prototypes/recipe/updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/prototypes/recipe/updates.lua -------------------------------------------------------------------------------- /bobequipment/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobequipment/thumbnail.png -------------------------------------------------------------------------------- /bobgreenhouse/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/changelog.txt -------------------------------------------------------------------------------- /bobgreenhouse/data-updates.lua: -------------------------------------------------------------------------------- 1 | require("prototypes.updates") 2 | -------------------------------------------------------------------------------- /bobgreenhouse/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/data.lua -------------------------------------------------------------------------------- /bobgreenhouse/graphics/entity/greenhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/graphics/entity/greenhouse.png -------------------------------------------------------------------------------- /bobgreenhouse/graphics/icons/fertiliser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/graphics/icons/fertiliser.png -------------------------------------------------------------------------------- /bobgreenhouse/graphics/icons/greenhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/graphics/icons/greenhouse.png -------------------------------------------------------------------------------- /bobgreenhouse/graphics/icons/seedling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/graphics/icons/seedling.png -------------------------------------------------------------------------------- /bobgreenhouse/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/info.json -------------------------------------------------------------------------------- /bobgreenhouse/locale/de/bobgreenhouse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/locale/de/bobgreenhouse.cfg -------------------------------------------------------------------------------- /bobgreenhouse/locale/en/bobgreenhouse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/locale/en/bobgreenhouse.cfg -------------------------------------------------------------------------------- /bobgreenhouse/locale/ru/bobgreenhouse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/locale/ru/bobgreenhouse.cfg -------------------------------------------------------------------------------- /bobgreenhouse/locale/uk/bobgreenhouse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/locale/uk/bobgreenhouse.cfg -------------------------------------------------------------------------------- /bobgreenhouse/locale/zh-TW/bobgreenhouse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/locale/zh-TW/bobgreenhouse.cfg -------------------------------------------------------------------------------- /bobgreenhouse/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/prototypes/category.lua -------------------------------------------------------------------------------- /bobgreenhouse/prototypes/entities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/prototypes/entities.lua -------------------------------------------------------------------------------- /bobgreenhouse/prototypes/items.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/prototypes/items.lua -------------------------------------------------------------------------------- /bobgreenhouse/prototypes/recipes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/prototypes/recipes.lua -------------------------------------------------------------------------------- /bobgreenhouse/prototypes/technology.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/prototypes/technology.lua -------------------------------------------------------------------------------- /bobgreenhouse/prototypes/updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/prototypes/updates.lua -------------------------------------------------------------------------------- /bobgreenhouse/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobgreenhouse/thumbnail.png -------------------------------------------------------------------------------- /bobinserters/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/changelog.txt -------------------------------------------------------------------------------- /bobinserters/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/control.lua -------------------------------------------------------------------------------- /bobinserters/data-final-fixes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/data-final-fixes.lua -------------------------------------------------------------------------------- /bobinserters/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/data-updates.lua -------------------------------------------------------------------------------- /bobinserters/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/data.lua -------------------------------------------------------------------------------- /bobinserters/graphics/gui/checkbox-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/graphics/gui/checkbox-big.png -------------------------------------------------------------------------------- /bobinserters/graphics/gui/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/graphics/gui/checkbox.png -------------------------------------------------------------------------------- /bobinserters/graphics/gui/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/graphics/gui/gui.png -------------------------------------------------------------------------------- /bobinserters/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/info.json -------------------------------------------------------------------------------- /bobinserters/locale/de/bobinserters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/locale/de/bobinserters.cfg -------------------------------------------------------------------------------- /bobinserters/locale/en/bobinserters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/locale/en/bobinserters.cfg -------------------------------------------------------------------------------- /bobinserters/locale/ru/bobinserters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/locale/ru/bobinserters.cfg -------------------------------------------------------------------------------- /bobinserters/locale/uk/bobinserters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/locale/uk/bobinserters.cfg -------------------------------------------------------------------------------- /bobinserters/locale/zh-TW/bobinserters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/locale/zh-TW/bobinserters.cfg -------------------------------------------------------------------------------- /bobinserters/prototypes/styles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/prototypes/styles.lua -------------------------------------------------------------------------------- /bobinserters/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/settings.lua -------------------------------------------------------------------------------- /bobinserters/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobinserters/thumbnail.png -------------------------------------------------------------------------------- /boblibrary/auto-bottle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/auto-bottle.lua -------------------------------------------------------------------------------- /boblibrary/category-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/category-functions.lua -------------------------------------------------------------------------------- /boblibrary/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/changelog.txt -------------------------------------------------------------------------------- /boblibrary/data-final-fixes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/data-final-fixes.lua -------------------------------------------------------------------------------- /boblibrary/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/data.lua -------------------------------------------------------------------------------- /boblibrary/error-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/error-functions.lua -------------------------------------------------------------------------------- /boblibrary/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/functions.lua -------------------------------------------------------------------------------- /boblibrary/graphics/entity/liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/entity/liquid.png -------------------------------------------------------------------------------- /boblibrary/graphics/entity/ores/ore-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/entity/ores/ore-1.png -------------------------------------------------------------------------------- /boblibrary/graphics/entity/ores/ore-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/entity/ores/ore-2.png -------------------------------------------------------------------------------- /boblibrary/graphics/entity/ores/ore-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/entity/ores/ore-3.png -------------------------------------------------------------------------------- /boblibrary/graphics/entity/ores/ore-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/entity/ores/ore-4.png -------------------------------------------------------------------------------- /boblibrary/graphics/entity/ores/ore-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/entity/ores/ore-5.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/liquid.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore-1.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore-2.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore-3.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore-4.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore-5.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/1.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/10.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/11.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/12.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/13.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/14.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/15.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/2.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/3.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/4.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/5.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/6.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/7.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/8.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/1/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/1/9.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/1.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/10.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/11.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/12.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/13.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/14.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/15.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/16.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/17.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/18.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/2.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/3.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/4.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/5.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/6.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/7.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/8.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/2/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/2/9.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/1.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/10.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/11.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/12.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/13.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/2.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/3.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/4.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/5.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/6.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/7.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/8.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/3/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/3/9.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/1.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/10.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/11.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/12.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/13.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/14.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/15.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/16.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/17.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/18.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/19.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/2.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/20.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/3.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/4.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/5.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/6.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/7.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/8.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/4/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/4/9.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/1.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/10.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/11.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/12.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/13.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/14.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/15.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/16.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/2.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/3.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/4.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/5.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/6.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/7.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/8.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/5/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/5/9.png -------------------------------------------------------------------------------- /boblibrary/graphics/icons/ore/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/graphics/icons/ore/blank.png -------------------------------------------------------------------------------- /boblibrary/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/info.json -------------------------------------------------------------------------------- /boblibrary/item-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/item-functions.lua -------------------------------------------------------------------------------- /boblibrary/locale/de/boblibrary.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/locale/de/boblibrary.cfg -------------------------------------------------------------------------------- /boblibrary/locale/en/boblibrary.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/locale/en/boblibrary.cfg -------------------------------------------------------------------------------- /boblibrary/locale/ru/boblibrary.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/locale/ru/boblibrary.cfg -------------------------------------------------------------------------------- /boblibrary/locale/uk/boblibrary.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/locale/uk/boblibrary.cfg -------------------------------------------------------------------------------- /boblibrary/locale/zh-TW/boblibrary.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/locale/zh-TW/boblibrary.cfg -------------------------------------------------------------------------------- /boblibrary/migration-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/migration-functions.lua -------------------------------------------------------------------------------- /boblibrary/module-functions.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boblibrary/ore-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/ore-functions.lua -------------------------------------------------------------------------------- /boblibrary/ore-icon-variations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/ore-icon-variations.lua -------------------------------------------------------------------------------- /boblibrary/recipe-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/recipe-functions.lua -------------------------------------------------------------------------------- /boblibrary/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/settings.lua -------------------------------------------------------------------------------- /boblibrary/technology-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/technology-functions.lua -------------------------------------------------------------------------------- /boblibrary/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblibrary/thumbnail.png -------------------------------------------------------------------------------- /boblogistics/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/changelog.txt -------------------------------------------------------------------------------- /boblogistics/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/control.lua -------------------------------------------------------------------------------- /boblogistics/data-final-fixes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/data-final-fixes.lua -------------------------------------------------------------------------------- /boblogistics/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/data-updates.lua -------------------------------------------------------------------------------- /boblogistics/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/data.lua -------------------------------------------------------------------------------- /boblogistics/graphics/entity/robots/Graphics by Zombiee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boblogistics/graphics/gui/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/gui/checkbox.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/brass-chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/brass-chest.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/repair-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/repair-pack.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/robochest-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/robochest-2.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/robochest-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/robochest-3.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/robochest-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/robochest-4.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/robochest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/robochest.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/roboport-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/roboport-2.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/roboport-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/roboport-3.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/roboport-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/roboport-4.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/roboport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/roboport.png -------------------------------------------------------------------------------- /boblogistics/graphics/icons/robot-brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/graphics/icons/robot-brain.png -------------------------------------------------------------------------------- /boblogistics/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/info.json -------------------------------------------------------------------------------- /boblogistics/locale/de/boblogistics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/locale/de/boblogistics.cfg -------------------------------------------------------------------------------- /boblogistics/locale/en/boblogistics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/locale/en/boblogistics.cfg -------------------------------------------------------------------------------- /boblogistics/locale/ru/boblogistics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/locale/ru/boblogistics.cfg -------------------------------------------------------------------------------- /boblogistics/locale/uk/boblogistics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/locale/uk/boblogistics.cfg -------------------------------------------------------------------------------- /boblogistics/locale/zh-TW/boblogistics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/locale/zh-TW/boblogistics.cfg -------------------------------------------------------------------------------- /boblogistics/prototypes/aai-loaders.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/aai-loaders.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/aai-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/aai-updates.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/category.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/chests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/chests.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/entity/belt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/entity/belt.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/entity/inserter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/entity/inserter.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/entity/pipes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/entity/pipes.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/entity/pump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/entity/pump.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/entity/roboport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/entity/roboport.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/entity/robots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/entity/robots.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/entity/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/entity/train.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/item/belt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/item/belt.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/item/inserter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/item/inserter.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/item/pipes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/item/pipes.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/item/pump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/item/pump.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/item/roboport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/item/roboport.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/item/robots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/item/robots.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/item/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/item/train.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/recipe/chemicals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/recipe/chemicals.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/repair-pack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/repair-pack.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/robot-parts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/robot-parts.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/technology.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/technology.lua -------------------------------------------------------------------------------- /boblogistics/prototypes/tips-and-tricks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/prototypes/tips-and-tricks.lua -------------------------------------------------------------------------------- /boblogistics/settings-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/settings-updates.lua -------------------------------------------------------------------------------- /boblogistics/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/settings.lua -------------------------------------------------------------------------------- /boblogistics/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/boblogistics/thumbnail.png -------------------------------------------------------------------------------- /bobmining/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/changelog.txt -------------------------------------------------------------------------------- /bobmining/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/data-updates.lua -------------------------------------------------------------------------------- /bobmining/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/data.lua -------------------------------------------------------------------------------- /bobmining/graphics/icons/brass-axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/graphics/icons/brass-axe.png -------------------------------------------------------------------------------- /bobmining/graphics/icons/cobalt-axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/graphics/icons/cobalt-axe.png -------------------------------------------------------------------------------- /bobmining/graphics/icons/diamond-axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/graphics/icons/diamond-axe.png -------------------------------------------------------------------------------- /bobmining/graphics/icons/titanium-axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/graphics/icons/titanium-axe.png -------------------------------------------------------------------------------- /bobmining/graphics/icons/tungsten-axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/graphics/icons/tungsten-axe.png -------------------------------------------------------------------------------- /bobmining/graphics/icons/waterdrill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/graphics/icons/waterdrill.png -------------------------------------------------------------------------------- /bobmining/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/info.json -------------------------------------------------------------------------------- /bobmining/locale/de/bobmining.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/locale/de/bobmining.cfg -------------------------------------------------------------------------------- /bobmining/locale/en/bobmining.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/locale/en/bobmining.cfg -------------------------------------------------------------------------------- /bobmining/locale/ru/bobmining.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/locale/ru/bobmining.cfg -------------------------------------------------------------------------------- /bobmining/locale/uk/bobmining.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/locale/uk/bobmining.cfg -------------------------------------------------------------------------------- /bobmining/locale/zh-TW/bobmining.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/locale/zh-TW/bobmining.cfg -------------------------------------------------------------------------------- /bobmining/migrations/bobmining_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/migrations/bobmining_2.0.0.json -------------------------------------------------------------------------------- /bobmining/migrations/bobmining_2.0.0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/migrations/bobmining_2.0.0.lua -------------------------------------------------------------------------------- /bobmining/prototypes/areadrill-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/areadrill-updates.lua -------------------------------------------------------------------------------- /bobmining/prototypes/areadrills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/areadrills.lua -------------------------------------------------------------------------------- /bobmining/prototypes/axes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/axes.lua -------------------------------------------------------------------------------- /bobmining/prototypes/drill-functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/drill-functions.lua -------------------------------------------------------------------------------- /bobmining/prototypes/drill-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/drill-updates.lua -------------------------------------------------------------------------------- /bobmining/prototypes/drills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/drills.lua -------------------------------------------------------------------------------- /bobmining/prototypes/pumpjack-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/pumpjack-updates.lua -------------------------------------------------------------------------------- /bobmining/prototypes/pumpjacks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/pumpjacks.lua -------------------------------------------------------------------------------- /bobmining/prototypes/steam-drills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/steam-drills.lua -------------------------------------------------------------------------------- /bobmining/prototypes/water-miner-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/water-miner-updates.lua -------------------------------------------------------------------------------- /bobmining/prototypes/water-miner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/prototypes/water-miner.lua -------------------------------------------------------------------------------- /bobmining/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/settings.lua -------------------------------------------------------------------------------- /bobmining/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmining/thumbnail.png -------------------------------------------------------------------------------- /bobmodules/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/changelog.txt -------------------------------------------------------------------------------- /bobmodules/control.lua: -------------------------------------------------------------------------------- 1 | require("remote") 2 | -------------------------------------------------------------------------------- /bobmodules/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/data-updates.lua -------------------------------------------------------------------------------- /bobmodules/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/data.lua -------------------------------------------------------------------------------- /bobmodules/graphics/graphics license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/graphics license.md -------------------------------------------------------------------------------- /bobmodules/graphics/icons/blue/blue_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/blue/blue_01.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/blue/blue_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/blue/blue_02.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/blue/blue_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/blue/blue_03.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/blue/blue_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/blue/blue_04.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/blue/blue_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/blue/blue_05.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/brown/brown_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/brown/brown_01.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/brown/brown_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/brown/brown_02.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/brown/brown_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/brown/brown_03.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/brown/brown_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/brown/brown_04.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/brown/brown_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/brown/brown_05.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/green/green_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/green/green_01.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/green/green_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/green/green_02.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/green/green_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/green/green_03.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/green/green_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/green/green_04.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/green/green_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/green/green_05.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/module-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/module-case.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/module-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/module-contact.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/pine/pine_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/pine/pine_01.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/pine/pine_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/pine/pine_02.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/pine/pine_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/pine/pine_03.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/pine/pine_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/pine/pine_04.png -------------------------------------------------------------------------------- /bobmodules/graphics/icons/pine/pine_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/graphics/icons/pine/pine_05.png -------------------------------------------------------------------------------- /bobmodules/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/info.json -------------------------------------------------------------------------------- /bobmodules/locale/de/bobmodules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/locale/de/bobmodules.cfg -------------------------------------------------------------------------------- /bobmodules/locale/en/bobmodules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/locale/en/bobmodules.cfg -------------------------------------------------------------------------------- /bobmodules/locale/ru/bobmodules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/locale/ru/bobmodules.cfg -------------------------------------------------------------------------------- /bobmodules/locale/zh-TW/bobmodules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/locale/zh-TW/bobmodules.cfg -------------------------------------------------------------------------------- /bobmodules/migrations/bobmodules_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/migrations/bobmodules_2.0.0.json -------------------------------------------------------------------------------- /bobmodules/prototypes/beacon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/beacon.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/category.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/entity/beacon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/entity/beacon.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/item/electronics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/item/electronics.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/item/module-merged.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/item/module-merged.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/item/module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/item/module.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/recipe/electronics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/recipe/electronics.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/recipe/module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/recipe/module.lua -------------------------------------------------------------------------------- /bobmodules/prototypes/tips-and-tricks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/prototypes/tips-and-tricks.lua -------------------------------------------------------------------------------- /bobmodules/remote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/remote.lua -------------------------------------------------------------------------------- /bobmodules/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/settings.lua -------------------------------------------------------------------------------- /bobmodules/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobmodules/thumbnail.png -------------------------------------------------------------------------------- /bobores/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/changelog.txt -------------------------------------------------------------------------------- /bobores/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/control.lua -------------------------------------------------------------------------------- /bobores/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/data-updates.lua -------------------------------------------------------------------------------- /bobores/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/data.lua -------------------------------------------------------------------------------- /bobores/graphics/icons/amethyst-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/amethyst-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/bauxite-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/bauxite-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/coal.png -------------------------------------------------------------------------------- /bobores/graphics/icons/cobalt-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/cobalt-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/copper-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/copper-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/diamond-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/diamond-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/emerald-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/emerald-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/gem-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/gem-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/gold-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/gold-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/iron-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/iron-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/lead-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/lead-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/lithia-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/lithia-water.png -------------------------------------------------------------------------------- /bobores/graphics/icons/nickel-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/nickel-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/quartz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/quartz.png -------------------------------------------------------------------------------- /bobores/graphics/icons/ruby-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/ruby-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/rutile-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/rutile-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/sapphire-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/sapphire-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/silver-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/silver-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/stone.png -------------------------------------------------------------------------------- /bobores/graphics/icons/tin-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/tin-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/topaz-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/topaz-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/tungsten-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/tungsten-ore.png -------------------------------------------------------------------------------- /bobores/graphics/icons/zinc-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/graphics/icons/zinc-ore.png -------------------------------------------------------------------------------- /bobores/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/info.json -------------------------------------------------------------------------------- /bobores/locale/de/bobores.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/locale/de/bobores.cfg -------------------------------------------------------------------------------- /bobores/locale/en/bobores.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/locale/en/bobores.cfg -------------------------------------------------------------------------------- /bobores/locale/ru/bobores.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/locale/ru/bobores.cfg -------------------------------------------------------------------------------- /bobores/locale/zh-TW/bobores.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/locale/zh-TW/bobores.cfg -------------------------------------------------------------------------------- /bobores/migrations/bobores_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/migrations/bobores_2.0.0.json -------------------------------------------------------------------------------- /bobores/prototypes/bauxite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/bauxite.lua -------------------------------------------------------------------------------- /bobores/prototypes/cobalt-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/cobalt-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/fluids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/fluids.lua -------------------------------------------------------------------------------- /bobores/prototypes/gem-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/gem-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/gems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/gems.lua -------------------------------------------------------------------------------- /bobores/prototypes/gold-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/gold-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/lead-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/lead-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/nickel-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/nickel-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/quartz.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/quartz.lua -------------------------------------------------------------------------------- /bobores/prototypes/rutile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/rutile.lua -------------------------------------------------------------------------------- /bobores/prototypes/silver-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/silver-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/sulfur.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/sulfur.lua -------------------------------------------------------------------------------- /bobores/prototypes/thorium-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/thorium-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/tin-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/tin-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/tungsten-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/tungsten-ore.lua -------------------------------------------------------------------------------- /bobores/prototypes/zinc-ore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/prototypes/zinc-ore.lua -------------------------------------------------------------------------------- /bobores/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/settings.lua -------------------------------------------------------------------------------- /bobores/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobores/thumbnail.png -------------------------------------------------------------------------------- /bobplates/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/changelog.txt -------------------------------------------------------------------------------- /bobplates/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/control.lua -------------------------------------------------------------------------------- /bobplates/data-final-fixes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/data-final-fixes.lua -------------------------------------------------------------------------------- /bobplates/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/data-updates.lua -------------------------------------------------------------------------------- /bobplates/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/data.lua -------------------------------------------------------------------------------- /bobplates/graphics/entity/pump/pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/entity/pump/pump.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/air-pump-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/air-pump-1.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/air-pump-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/air-pump-2.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/air-pump-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/air-pump-3.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/air-pump-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/air-pump-4.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/air-pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/air-pump.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/b.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/battery-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/battery-blue.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/battery-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/battery-red.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/battery.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/c.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/carbon.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/chlorine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/chlorine.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/cobalt-oxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/cobalt-oxide.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/corundum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/corundum.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/deuterium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/deuterium.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/distillery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/distillery.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/electrolyser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/electrolyser.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/f-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/f-blue.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/f.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/gas-canister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/gas-canister.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/gems/ruby-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/gems/ruby-3.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/gems/ruby-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/gems/ruby-4.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/gems/ruby-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/gems/ruby-5.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/gems/topaz-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/gems/topaz-3.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/gems/topaz-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/gems/topaz-4.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/gems/topaz-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/gems/topaz-5.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/glass.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/h.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/heavy-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/heavy-water.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/hydrogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/hydrogen.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/lead-oxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/lead-oxide.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/lead-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/lead-silver.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/liquid-air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/liquid-air.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/liquid-fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/liquid-fuel.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/lithia-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/lithia-water.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/m.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/nitric-acid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/nitric-acid.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/nitrogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/nitrogen.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/oxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/oxygen.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/pure-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/pure-water.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/resin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/resin.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/rubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/rubber.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/salt.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/silver-oxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/silver-oxide.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/void-pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/void-pump.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/void.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/water-pump-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/water-pump-1.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/water-pump-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/water-pump-2.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/water-pump-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/water-pump-3.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/water-pump-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/water-pump-4.png -------------------------------------------------------------------------------- /bobplates/graphics/icons/water-pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/graphics/icons/water-pump.png -------------------------------------------------------------------------------- /bobplates/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/info.json -------------------------------------------------------------------------------- /bobplates/locale/de/bobplates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/locale/de/bobplates.cfg -------------------------------------------------------------------------------- /bobplates/locale/en/bobplates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/locale/en/bobplates.cfg -------------------------------------------------------------------------------- /bobplates/locale/ru/bobplates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/locale/ru/bobplates.cfg -------------------------------------------------------------------------------- /bobplates/locale/zh-TW/bobplates.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/locale/zh-TW/bobplates.cfg -------------------------------------------------------------------------------- /bobplates/migrations/bobplates_0.18.8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/migrations/bobplates_0.18.8.lua -------------------------------------------------------------------------------- /bobplates/migrations/bobplates_1.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/migrations/bobplates_1.1.1.json -------------------------------------------------------------------------------- /bobplates/migrations/bobplates_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/migrations/bobplates_2.0.0.json -------------------------------------------------------------------------------- /bobplates/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/category.lua -------------------------------------------------------------------------------- /bobplates/prototypes/distillery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/distillery.lua -------------------------------------------------------------------------------- /bobplates/prototypes/entity/entities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/entity/entities.lua -------------------------------------------------------------------------------- /bobplates/prototypes/entity/nuclear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/entity/nuclear.lua -------------------------------------------------------------------------------- /bobplates/prototypes/entity/pumps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/entity/pumps.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/alien.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/alien.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/alloys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/alloys.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/chemicals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/chemicals.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/electronics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/electronics.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/entities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/entities.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/gems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/gems.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/nuclear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/nuclear.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/parts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/parts.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/plates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/plates.lua -------------------------------------------------------------------------------- /bobplates/prototypes/item/resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/item/resource.lua -------------------------------------------------------------------------------- /bobplates/prototypes/technology-alien.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/technology-alien.lua -------------------------------------------------------------------------------- /bobplates/prototypes/technology-metal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/technology-metal.lua -------------------------------------------------------------------------------- /bobplates/prototypes/technology.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/technology.lua -------------------------------------------------------------------------------- /bobplates/prototypes/tips-and-tricks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/prototypes/tips-and-tricks.lua -------------------------------------------------------------------------------- /bobplates/remote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/remote.lua -------------------------------------------------------------------------------- /bobplates/settings-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/settings-updates.lua -------------------------------------------------------------------------------- /bobplates/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/settings.lua -------------------------------------------------------------------------------- /bobplates/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobplates/thumbnail.png -------------------------------------------------------------------------------- /bobpower/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/changelog.txt -------------------------------------------------------------------------------- /bobpower/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/data-updates.lua -------------------------------------------------------------------------------- /bobpower/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/data.lua -------------------------------------------------------------------------------- /bobpower/graphics/icons/heat-pipe-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/graphics/icons/heat-pipe-2.png -------------------------------------------------------------------------------- /bobpower/graphics/icons/heat-pipe-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/graphics/icons/heat-pipe-3.png -------------------------------------------------------------------------------- /bobpower/graphics/icons/heat-pipe-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/graphics/icons/heat-pipe-4.png -------------------------------------------------------------------------------- /bobpower/graphics/icons/oil-boiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/graphics/icons/oil-boiler.png -------------------------------------------------------------------------------- /bobpower/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/info.json -------------------------------------------------------------------------------- /bobpower/locale/de/bobpower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/locale/de/bobpower.cfg -------------------------------------------------------------------------------- /bobpower/locale/en/bobpower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/locale/en/bobpower.cfg -------------------------------------------------------------------------------- /bobpower/locale/ru/bobpower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/locale/ru/bobpower.cfg -------------------------------------------------------------------------------- /bobpower/locale/zh-TW/bobpower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/locale/zh-TW/bobpower.cfg -------------------------------------------------------------------------------- /bobpower/migrations/bobpower_0.18.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/migrations/bobpower_0.18.0.json -------------------------------------------------------------------------------- /bobpower/migrations/bobpower_0.18.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/migrations/bobpower_0.18.7.json -------------------------------------------------------------------------------- /bobpower/migrations/bobpower_1.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/migrations/bobpower_1.1.6.json -------------------------------------------------------------------------------- /bobpower/migrations/bobpower_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/migrations/bobpower_2.0.0.json -------------------------------------------------------------------------------- /bobpower/prototypes/burner-generator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/burner-generator.lua -------------------------------------------------------------------------------- /bobpower/prototypes/burner-reactor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/burner-reactor.lua -------------------------------------------------------------------------------- /bobpower/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/category.lua -------------------------------------------------------------------------------- /bobpower/prototypes/entity/boilers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/entity/boilers.lua -------------------------------------------------------------------------------- /bobpower/prototypes/entity/nuclear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/entity/nuclear.lua -------------------------------------------------------------------------------- /bobpower/prototypes/entity/poles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/entity/poles.lua -------------------------------------------------------------------------------- /bobpower/prototypes/heat-pipes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/heat-pipes.lua -------------------------------------------------------------------------------- /bobpower/prototypes/item/accumulators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/item/accumulators.lua -------------------------------------------------------------------------------- /bobpower/prototypes/item/boilers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/item/boilers.lua -------------------------------------------------------------------------------- /bobpower/prototypes/item/nuclear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/item/nuclear.lua -------------------------------------------------------------------------------- /bobpower/prototypes/item/oil-boilers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/item/oil-boilers.lua -------------------------------------------------------------------------------- /bobpower/prototypes/item/poles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/item/poles.lua -------------------------------------------------------------------------------- /bobpower/prototypes/item/solar-panels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/item/solar-panels.lua -------------------------------------------------------------------------------- /bobpower/prototypes/recipe/boilers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/recipe/boilers.lua -------------------------------------------------------------------------------- /bobpower/prototypes/recipe/nuclear.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/recipe/nuclear.lua -------------------------------------------------------------------------------- /bobpower/prototypes/recipe/poles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/recipe/poles.lua -------------------------------------------------------------------------------- /bobpower/prototypes/technology/poles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/prototypes/technology/poles.lua -------------------------------------------------------------------------------- /bobpower/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/settings.lua -------------------------------------------------------------------------------- /bobpower/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobpower/thumbnail.png -------------------------------------------------------------------------------- /bobrevamp/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/changelog.txt -------------------------------------------------------------------------------- /bobrevamp/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/data-updates.lua -------------------------------------------------------------------------------- /bobrevamp/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/data.lua -------------------------------------------------------------------------------- /bobrevamp/graphics/icons/ammonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/graphics/icons/ammonia.png -------------------------------------------------------------------------------- /bobrevamp/graphics/icons/brine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/graphics/icons/brine.png -------------------------------------------------------------------------------- /bobrevamp/graphics/icons/hydrazine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/graphics/icons/hydrazine.png -------------------------------------------------------------------------------- /bobrevamp/graphics/icons/limestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/graphics/icons/limestone.png -------------------------------------------------------------------------------- /bobrevamp/graphics/icons/nitric-oxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/graphics/icons/nitric-oxide.png -------------------------------------------------------------------------------- /bobrevamp/graphics/icons/sour-gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/graphics/icons/sour-gas.png -------------------------------------------------------------------------------- /bobrevamp/graphics/icons/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/graphics/icons/void.png -------------------------------------------------------------------------------- /bobrevamp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/info.json -------------------------------------------------------------------------------- /bobrevamp/locale/de/bobrevamp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/locale/de/bobrevamp.cfg -------------------------------------------------------------------------------- /bobrevamp/locale/en/bobrevamp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/locale/en/bobrevamp.cfg -------------------------------------------------------------------------------- /bobrevamp/locale/ru/bobrevamp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/locale/ru/bobrevamp.cfg -------------------------------------------------------------------------------- /bobrevamp/locale/zh-TW/bobrevamp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/locale/zh-TW/bobrevamp.cfg -------------------------------------------------------------------------------- /bobrevamp/migrations/bobrevamp_1.2.0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/migrations/bobrevamp_1.2.0.lua -------------------------------------------------------------------------------- /bobrevamp/migrations/bobrevamp_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/migrations/bobrevamp_2.0.0.json -------------------------------------------------------------------------------- /bobrevamp/prototypes/hard-mode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/prototypes/hard-mode.lua -------------------------------------------------------------------------------- /bobrevamp/prototypes/rocket-fuel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/prototypes/rocket-fuel.lua -------------------------------------------------------------------------------- /bobrevamp/prototypes/rocket-parts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/prototypes/rocket-parts.lua -------------------------------------------------------------------------------- /bobrevamp/prototypes/rtg-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/prototypes/rtg-updates.lua -------------------------------------------------------------------------------- /bobrevamp/prototypes/rtg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/prototypes/rtg.lua -------------------------------------------------------------------------------- /bobrevamp/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/settings.lua -------------------------------------------------------------------------------- /bobrevamp/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobrevamp/thumbnail.png -------------------------------------------------------------------------------- /bobtech/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/changelog.txt -------------------------------------------------------------------------------- /bobtech/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/control.lua -------------------------------------------------------------------------------- /bobtech/data-final-fixes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/data-final-fixes.lua -------------------------------------------------------------------------------- /bobtech/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/data-updates.lua -------------------------------------------------------------------------------- /bobtech/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/data.lua -------------------------------------------------------------------------------- /bobtech/graphics/entity/lab/lab-alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/graphics/entity/lab/lab-alien.png -------------------------------------------------------------------------------- /bobtech/graphics/entity/lab/lab-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/graphics/entity/lab/lab-red.png -------------------------------------------------------------------------------- /bobtech/graphics/entity/lab/lab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/graphics/entity/lab/lab2.png -------------------------------------------------------------------------------- /bobtech/graphics/icons/lab-alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/graphics/icons/lab-alien.png -------------------------------------------------------------------------------- /bobtech/graphics/icons/lab-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/graphics/icons/lab-red.png -------------------------------------------------------------------------------- /bobtech/graphics/icons/lab-technology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/graphics/icons/lab-technology.png -------------------------------------------------------------------------------- /bobtech/graphics/icons/lab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/graphics/icons/lab2.png -------------------------------------------------------------------------------- /bobtech/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/info.json -------------------------------------------------------------------------------- /bobtech/locale/de/bobtech.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/locale/de/bobtech.cfg -------------------------------------------------------------------------------- /bobtech/locale/en/bobtech.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/locale/en/bobtech.cfg -------------------------------------------------------------------------------- /bobtech/locale/ru/bobtech.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/locale/ru/bobtech.cfg -------------------------------------------------------------------------------- /bobtech/locale/zh-TW/bobtech.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/locale/zh-TW/bobtech.cfg -------------------------------------------------------------------------------- /bobtech/migrations/bobtech_0.17.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/migrations/bobtech_0.17.6.json -------------------------------------------------------------------------------- /bobtech/migrations/bobtech_2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/migrations/bobtech_2.0.0.json -------------------------------------------------------------------------------- /bobtech/migrations/bobtech_2.0.0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/migrations/bobtech_2.0.0.lua -------------------------------------------------------------------------------- /bobtech/prototypes/entity/entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/prototypes/entity/entity.lua -------------------------------------------------------------------------------- /bobtech/prototypes/item/item-alien.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/prototypes/item/item-alien.lua -------------------------------------------------------------------------------- /bobtech/prototypes/item/item-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/prototypes/item/item-updates.lua -------------------------------------------------------------------------------- /bobtech/prototypes/item/item.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/prototypes/item/item.lua -------------------------------------------------------------------------------- /bobtech/prototypes/recipe/recipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/prototypes/recipe/recipe.lua -------------------------------------------------------------------------------- /bobtech/remote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/remote.lua -------------------------------------------------------------------------------- /bobtech/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/settings.lua -------------------------------------------------------------------------------- /bobtech/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobtech/thumbnail.png -------------------------------------------------------------------------------- /bobvehicleequipment/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/changelog.txt -------------------------------------------------------------------------------- /bobvehicleequipment/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/data-updates.lua -------------------------------------------------------------------------------- /bobvehicleequipment/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/data.lua -------------------------------------------------------------------------------- /bobvehicleequipment/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/info.json -------------------------------------------------------------------------------- /bobvehicleequipment/prototypes/beams.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/prototypes/beams.lua -------------------------------------------------------------------------------- /bobvehicleequipment/prototypes/shield.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/prototypes/shield.lua -------------------------------------------------------------------------------- /bobvehicleequipment/prototypes/speed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/prototypes/speed.lua -------------------------------------------------------------------------------- /bobvehicleequipment/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/settings.lua -------------------------------------------------------------------------------- /bobvehicleequipment/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobvehicleequipment/thumbnail.png -------------------------------------------------------------------------------- /bobwarfare/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/changelog.txt -------------------------------------------------------------------------------- /bobwarfare/data-final-fixes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/data-final-fixes.lua -------------------------------------------------------------------------------- /bobwarfare/data-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/data-updates.lua -------------------------------------------------------------------------------- /bobwarfare/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/data.lua -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/acid-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/acid-bullet.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/acid-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/acid-rocket.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/ap-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/ap-bullet.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/bullet.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/cordite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/cordite.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/defender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/defender.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/destroyer.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/distractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/distractor.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/drone-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/drone-frame.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/gatling-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/gatling-gun.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/glycerol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/glycerol.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/gun-cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/gun-cotton.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/gun-drone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/gun-drone-2.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/gun-drone-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/gun-drone-3.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/gun-drone-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/gun-drone-4.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/gun-drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/gun-drone.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/he-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/he-bullet.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/laser-drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/laser-drone.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/laser-rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/laser-rifle.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/laser-robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/laser-robot.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/magazine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/magazine.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/plasma.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/rifle.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/rocket-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/rocket-body.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/rocket.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/shot.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/tank-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/tank-2.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/tank-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/tank-3.png -------------------------------------------------------------------------------- /bobwarfare/graphics/icons/tank-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/graphics/icons/tank-laser.png -------------------------------------------------------------------------------- /bobwarfare/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/info.json -------------------------------------------------------------------------------- /bobwarfare/locale/en/bobwarfare.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/locale/en/bobwarfare.cfg -------------------------------------------------------------------------------- /bobwarfare/locale/ru/bobwarfare.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/locale/ru/bobwarfare.cfg -------------------------------------------------------------------------------- /bobwarfare/locale/zh-TW/bobwarfare.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/locale/zh-TW/bobwarfare.cfg -------------------------------------------------------------------------------- /bobwarfare/prototypes/armor-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/armor-updates.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/category.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/category.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/damage-type.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/damage-type.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/beams.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/beams.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/drone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/drone.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/effects.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/mine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/mine.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/radar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/radar.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/sounds.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/tank.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/tank.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/turrets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/turrets.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/entity/wall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/entity/wall.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/equipment-grid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/equipment-grid.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/ammo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/ammo.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/armor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/armor.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/drone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/drone.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/fluid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/fluid.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/gun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/gun.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/mine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/mine.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/parts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/parts.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/radar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/radar.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/tank.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/tank.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/turrets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/turrets.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/item/wall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/item/wall.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/overides.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/overides.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/recipe/drone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/recipe/drone.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/recipe/tank.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/recipe/tank.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/recipe/turrets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/recipe/turrets.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/recipe/wall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/recipe/wall.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/robot-parts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/robot-parts.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/robots-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/robots-updates.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/robots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/robots.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/spidertron.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/spidertron.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/technology/ammo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/technology/ammo.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/technology/gun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/technology/gun.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/technology/mine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/technology/mine.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/technology/tank.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/technology/tank.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/technology/wall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/technology/wall.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/train-updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/train-updates.lua -------------------------------------------------------------------------------- /bobwarfare/prototypes/train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/prototypes/train.lua -------------------------------------------------------------------------------- /bobwarfare/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/settings.lua -------------------------------------------------------------------------------- /bobwarfare/sound/Gun_Turret1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Gun_Turret1.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Gun_Turret2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Gun_Turret2.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Gun_Turret3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Gun_Turret3.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Rifle1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Rifle1.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Rifle2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Rifle2.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Rifle3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Rifle3.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Sniper_Rifle1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Sniper_Rifle1.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Sniper_Rifle2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Sniper_Rifle2.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Sniper_Rifle3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Sniper_Rifle3.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Sniper_Rifle4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Sniper_Rifle4.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Sniper_Rifle5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Sniper_Rifle5.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Tank_Turret1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Tank_Turret1.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Tank_Turret2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Tank_Turret2.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/Tank_Turret3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/Tank_Turret3.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/laser-beam-01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/laser-beam-01.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/laser-beam-02.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/laser-beam-02.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/laser-beam-03.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/laser-beam-03.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/plasma-explosion-01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/plasma-explosion-01.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/plasma-explosion-02.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/plasma-explosion-02.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/plasma-turret-01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/plasma-turret-01.ogg -------------------------------------------------------------------------------- /bobwarfare/sound/turret_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/sound/turret_fire.ogg -------------------------------------------------------------------------------- /bobwarfare/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/bobwarfare/thumbnail.png -------------------------------------------------------------------------------- /clock/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/changelog.txt -------------------------------------------------------------------------------- /clock/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/control.lua -------------------------------------------------------------------------------- /clock/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/data.lua -------------------------------------------------------------------------------- /clock/fonts/DIGITAL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/fonts/DIGITAL.TXT -------------------------------------------------------------------------------- /clock/fonts/DS-DIGIB.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/fonts/DS-DIGIB.TTF -------------------------------------------------------------------------------- /clock/graphics/always-day-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/graphics/always-day-off.png -------------------------------------------------------------------------------- /clock/graphics/always-day-off2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/graphics/always-day-off2.png -------------------------------------------------------------------------------- /clock/graphics/always-day-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/graphics/always-day-on.png -------------------------------------------------------------------------------- /clock/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/info.json -------------------------------------------------------------------------------- /clock/locale/de/clock.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/locale/de/clock.cfg -------------------------------------------------------------------------------- /clock/locale/en/clock.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/locale/en/clock.cfg -------------------------------------------------------------------------------- /clock/locale/en/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/locale/en/info.json -------------------------------------------------------------------------------- /clock/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/settings.lua -------------------------------------------------------------------------------- /clock/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/clock/thumbnail.png -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modded-factorio/bobsmods/HEAD/stylua.toml --------------------------------------------------------------------------------