factorio-draftsman 2.0.2__tar.gz → 2.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {factorio_draftsman-2.0.2/factorio_draftsman.egg-info → factorio_draftsman-2.0.3}/PKG-INFO +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/__init__.py +17 -17
- factorio_draftsman-2.0.3/draftsman/_factorio_version.py +4 -0
- factorio_draftsman-2.0.3/draftsman/_version.py +4 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/association.py +3 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/blueprint.py +5 -5
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/blueprint_book.py +2 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/deconstruction_planner.py +4 -4
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/entity.py +5 -5
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/exportable.py +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/transformable.py +12 -8
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/constants.py +42 -0
- factorio_draftsman-2.0.3/draftsman/data/entities.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/fluids.pkl +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/instruments.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/items.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/mods.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/modules.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/planets.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/recipes.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/signals.pkl +0 -0
- factorio_draftsman-2.0.3/draftsman/data/tiles.pkl +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/env.py +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/mod_list.py +10 -6
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/mod_settings.py +208 -208
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/script.py +5 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/info.json +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/autoplace-controls.lua +2 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/decorative/decoratives.lua +3 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/combinator-pictures.lua +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/entities.lua +173 -10
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/explosions.lua +1 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/fire.lua +6 -6
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/flying-robots.lua +3 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/mining-drill.lua +3 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/resources.lua +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/transport-belts.lua +4 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/trees.lua +9 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item.lua +56 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/particle-animations.lua +1 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/particles.lua +6 -10
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/recipe.lua +4 -4
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tips-and-tricks-simulations.lua +2 -8
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/changelog.txt +449 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/collision-mask-defaults.lua +1 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/event_handler.lua +27 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/math2d.lua +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/style.lua +20 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/utility-constants.lua +14 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/utility-sprites.lua +10 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/info.json +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/info.json +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/base-data-updates.lua +5 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/info.json +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/autoplace-controls.lua +2 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-aquilo.lua +2 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-fulgora.lua +12 -12
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-gleba.lua +2 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-vulcanus.lua +7 -9
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/enemies.lua +2 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/explosions.lua +3 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/plants.lua +145 -56
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/resources.lua +3 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/transport-belts.lua +1 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/turrets.lua +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item-effects.lua +2 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item.lua +7 -5
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/particle-animations.lua +2 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/particles.lua +131 -77
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/recipe.lua +13 -13
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/technology.lua +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-aquilo.lua +1 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/arithmetic_combinator.py +3 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/decider_combinator.py +69 -212
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/heat_interface.py +5 -5
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/selector_combinator.py +5 -5
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/spider_vehicle.py +3 -3
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/splitter.py +5 -5
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/signatures.py +5 -5
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/utils.py +2 -2
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/warning.py +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3/factorio_draftsman.egg-info}/PKG-INFO +1 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/SOURCES.txt +0 -1
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_blueprint.py +16 -2
- factorio_draftsman-2.0.3/test/test_version.py +9 -0
- factorio_draftsman-2.0.2/Lib/site-packages/numpy/core/tests/data/astype_copy.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/_factorio_version.py +0 -4
- factorio_draftsman-2.0.2/draftsman/_version.py +0 -4
- factorio_draftsman-2.0.2/draftsman/data/entities.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/fluids.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/items.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/mods.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/modules.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/planets.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/recipes.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/signals.pkl +0 -0
- factorio_draftsman-2.0.2/draftsman/data/tiles.pkl +0 -0
- factorio_draftsman-2.0.2/test/test_version.py +0 -9
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/LICENSE +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/MANIFEST.in +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/README.md +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/blueprintable.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/__init__.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/blueprintable.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/collection.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/collision_set.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/entity_like.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/entity_list.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/group.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/__init__.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/artillery_auto_target.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/burner_energy_source.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_condition.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_connectable.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_enable.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_read_contents.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_read_hand.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_read_resource.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_set_filters.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/color.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/consumes_ammo.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/control_behavior.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/directional.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/double_grid_aligned.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/eight_way_directional.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/equipment_grid.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/filters.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/input_ingredients.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/inventory.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/inventory_filter.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/io_type.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/logistic_condition.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/mode_of_operation.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/modules.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/orientation.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/player_description.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/power_connectable.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/read_ammo.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/read_rail_signal.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/recipe.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/request_filters.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/request_items.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/stack_size.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/target_priorities.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/vehicle.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/rail_planner.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/schedule.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/schedule_list.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/spatial_data_structure.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/spatial_hashmap.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/spatial_like.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/tile.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/tile_list.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/train_configuration.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/upgrade_planner.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/vector.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/defines.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/interface.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/serpent.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/settings.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/__init__.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/entities.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/fluids.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/instruments.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/items.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/mods.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/modules.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/planets.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/recipes.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/signals.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/tiles.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/entity.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/__init__.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/update.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/error.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/extras.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/.git +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/README.md +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/data-updates.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/data.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/1.1.0.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/1.2.0 stack inserter rename.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-biter-egg.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-internal.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-internal2.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-internal3.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/migrations.txt +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/achievements.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/ambient-sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/ammo-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/equipment-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/fuel-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/module-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/quality.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/recipe-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/resource-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/collision-layers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/custom-inputs.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/damage-type.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/decorative/decorative-trigger-effects.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/demo.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/assemblerpipes.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/atomic-bomb.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/beacon-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/beams.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/biter-ai-settings.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/biter-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/biter-die-effects.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/cargo-pod-catalogue.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/character-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/circuit-network.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/crash-site.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemies.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemy-autoplace-utils.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemy-constants.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemy-projectiles.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/entity-util.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/explosion-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/factorio-logo.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/giga-cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/hit-effects.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/laser-sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/movement-triggers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/pipecovers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/projectiles.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/pump-connector.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/rail-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/rocket-projectile-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/smoke-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/smoke.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spawner-animation.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spidertron-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spidertron-light-positions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spitter-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/trains.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/turrets.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/worm-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/equipment-grid.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/equipment.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/factoriopedia-simulations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/factoriopedia-util.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/fire-util.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/fluid.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/impact-deliver-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item-groups.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item-tints.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item_sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/map-gen-presets.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/map-settings.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/noise-expressions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/planet-map-gen.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/planet.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession-audio-catalogue-types.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession-graphic-catalogue-types.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession-style.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/surface-property.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/pollution.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/shortcuts.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/signal.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/technology.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-collision-masks.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-graphics.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-pollution-values.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-trigger-effects.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tiles.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/trigger-target-types.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tutorials.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/utility-sprites.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/backers.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/data.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/info.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/autoplace_utils.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/bonus-gui-ordering.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/circuit-connector-generated-definitions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/circuit-connector-sprites.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/collision-mask-util.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/crash-site.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/data-duplicate-checker.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/dataloader.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/kill-score.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/math3d.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/meld.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/mod-gui.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/production-score.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/resource-autoplace.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/silo-script.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/sound-util.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/space-finish-script.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/story.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/surface-render-parameter-effects.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/util.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/burner-usage.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/cursors.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/editor-controller.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/fonts.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/god-controller.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/noise-functions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/noise-programs.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/parameters.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/remote-controller.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/spectator-controller.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/unknown.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/utility-sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/credits.txt +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/data.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/base-data-updates.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rail-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/item/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/particles.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/recipe/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/sloped-trains-updates.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/technology/elevated-rails.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/map-gen-settings.example.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/map-settings.example.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/data-updates.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/data.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/base-data-updates.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/entity.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/explosions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/recycler-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/item.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/module-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/quality.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/recipe.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/recycling.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/signal.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/technology.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/server-settings.example.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/server-whitelist.example.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/data-updates.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/data.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/aquilo-tilesets.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/biolab.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/internal.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/jelly-yum-rename.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/shattered-planet.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/tungsten-belt-rename.json +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/achievements.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/active-triggers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/ambient-sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/burner-usage.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/ammo-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/fuel-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/recipe-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/resource-category.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/agricultural-tower-crane.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/asteroid-collector-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/asteroid.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/base-frozen-graphics.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/beams.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/big-mining-drill.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/biochamber-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/cargo-pod-catalogue.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/circuit-network.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/crusher-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/cryogenic-plant-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/electromagnetic-plant-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/entities.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/explosion-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/flying-robots.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/foundry-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/fusion-system-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/giga-cargo-hatch.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/gleba-ai-settings.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/gleba-enemy-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/lightning-collector-graphics.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/lightning-rod-graphics.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/mech-armor-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/projectiles.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/railgun-turret-pictures.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/remnants.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/smoke.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/space-enemy-autoplace-utils.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/space-platform-hub-cockpit.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/trees.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/equipment-grid.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/equipment.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/factoriopedia-simulations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/fluid.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item-groups.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item_sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/asteroid-spawn-definitions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/general-functions.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/general-variables.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/audio-events.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/cloud-layers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-a.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-b.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/pod-layers-i.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/rocket-layers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform/space-layers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/audio-events.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/cloud-layers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-a.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-b.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/pod-layers-i.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet/space-layers.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-aquilo-map-gen.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-fulgora-map-gen.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-gleba-map-gen.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-map-gen.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-vulcanus-map-gen.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-aquilo.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-fulgora.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-gleba.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-vulcanus.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-common.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/spores.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/surface.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/platform-tile-animations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tile-pollution-values.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tile-trigger-effects.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-fulgora.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-gleba.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-vulcanus.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks-simulations.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/utility-sounds.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/utility-sprites.lua +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-mods/.gitignore +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/__init__.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/accumulator.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/agricultural_tower.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/ammo_turret.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/artillery_turret.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/artillery_wagon.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/assembling_machine.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/asteroid_collector.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/beacon.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/boiler.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/burner_generator.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/car.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/cargo_bay.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/cargo_landing_pad.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/cargo_wagon.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/constant_combinator.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/curved_rail_a.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/curved_rail_b.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/display_panel.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/electric_energy_interface.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/electric_pole.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/electric_turret.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_curved_rail_a.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_curved_rail_b.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_half_diagonal_rail.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_straight_rail.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/filter_inserter.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fluid_turret.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fluid_wagon.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/furnace.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fusion_generator.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fusion_reactor.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/gate.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/generator.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/half_diagonal_rail.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/heat_pipe.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/infinity_container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/infinity_pipe.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/inserter.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/lab.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/lamp.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/land_mine.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/legacy_curved_rail.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/legacy_straight_rail.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/lightning_attractor.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/linked_belt.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/linked_container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/loader.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/locomotive.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_active_container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_buffer_container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_passive_container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_request_container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_storage_container.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/mining_drill.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/offshore_pump.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/pipe.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/player_port.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/power_switch.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/programmable_speaker.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/pump.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/radar.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_chain_signal.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_ramp.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_signal.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_support.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/reactor.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/roboport.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rocket_silo.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/simple_entity_with_force.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/simple_entity_with_owner.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/solar_panel.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/space_platform_hub.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/storage_tank.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/straight_rail.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/thruster.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/train_stop.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/transport_belt.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/turret.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/underground_belt.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/underground_pipe.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/wall.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/rail.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/tile.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/types.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/dependency_links.txt +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/entry_points.txt +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/requires.txt +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/top_level.txt +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/pyproject.toml +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/setup.cfg +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/setup.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_association.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_blueprint_book.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_blueprintable.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_collision_set.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_data.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_deconstruction_planner.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_entity.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_entity_list.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_environment.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_examples.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_group.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_mixins.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_rail_planner.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_schedule.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_schedule_list.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_spatial_hash_map.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_tile.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_tile_list.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_train_configuration.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_upgrade_planner.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_utils.py +0 -0
- {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_vector.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorio-draftsman
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: A complete, well-tested, and up-to-date module to manipulate Factorio blueprint strings. Compatible with mods.
|
|
5
5
|
Home-page: https://github.com/redruin1/factorio-draftsman
|
|
6
6
|
Author: redruin1
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# __init__.py
|
|
2
|
-
"""
|
|
3
|
-
Allows the user to import, create, manipulate, and export Factorio blueprint
|
|
4
|
-
strings.
|
|
5
|
-
|
|
6
|
-
`draftsman` attempts to provide a convinient, 'one-stop-shop' solution to the
|
|
7
|
-
problem of programmatically creating blueprint strings, used for automation of
|
|
8
|
-
designing structures that would be too tedius to build otherwise.
|
|
9
|
-
|
|
10
|
-
In addition to providing the bare functionality of importing and exporting,
|
|
11
|
-
`draftsman` is designed with the developer in mind, and has a wide array of
|
|
12
|
-
methods and classes designed to write clean, self-documenting scripts.
|
|
13
|
-
`draftsman` is also well-documented, well-tested, and easy to install.
|
|
14
|
-
"""
|
|
15
|
-
|
|
16
|
-
from draftsman._version import __version__, __version_info__
|
|
17
|
-
from draftsman._factorio_version import __factorio_version__, __factorio_version_info__
|
|
1
|
+
# __init__.py
|
|
2
|
+
"""
|
|
3
|
+
Allows the user to import, create, manipulate, and export Factorio blueprint
|
|
4
|
+
strings.
|
|
5
|
+
|
|
6
|
+
`draftsman` attempts to provide a convinient, 'one-stop-shop' solution to the
|
|
7
|
+
problem of programmatically creating blueprint strings, used for automation of
|
|
8
|
+
designing structures that would be too tedius to build otherwise.
|
|
9
|
+
|
|
10
|
+
In addition to providing the bare functionality of importing and exporting,
|
|
11
|
+
`draftsman` is designed with the developer in mind, and has a wide array of
|
|
12
|
+
methods and classes designed to write clean, self-documenting scripts.
|
|
13
|
+
`draftsman` is also well-documented, well-tested, and easy to install.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
from draftsman._version import __version__, __version_info__
|
|
17
|
+
from draftsman._factorio_version import __factorio_version__, __factorio_version_info__
|
|
@@ -22,9 +22,9 @@ class Association(weakref.ref):
|
|
|
22
22
|
int,
|
|
23
23
|
Field(ge=0, lt=2**64),
|
|
24
24
|
WrapValidator(
|
|
25
|
-
lambda value, handler:
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
lambda value, handler: (
|
|
26
|
+
value if isinstance(value, Association) else handler(value)
|
|
27
|
+
)
|
|
28
28
|
),
|
|
29
29
|
]
|
|
30
30
|
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
... # Up to 4 icons total
|
|
22
22
|
],
|
|
23
23
|
"description": str, # A user given description for this blueprint
|
|
24
|
-
"version": int, # The encoded version of Factorio this planner was created
|
|
24
|
+
"version": int, # The encoded version of Factorio this planner was created
|
|
25
25
|
# with/designed for (64 bits)
|
|
26
26
|
"snap-to-grid": { # The size of the grid to snap this blueprint to
|
|
27
27
|
"x": int, # X dimension in units
|
|
28
28
|
"y": int, # Y dimension in units
|
|
29
29
|
}
|
|
30
|
-
"absolute-snapping": bool, # Whether or not to use absolute placement
|
|
30
|
+
"absolute-snapping": bool, # Whether or not to use absolute placement
|
|
31
31
|
# (defaults to True)
|
|
32
32
|
"position-relative-to-grid": { # The offset of the grid if using absolute
|
|
33
33
|
# placement
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"entities": [ # A list of entities in this blueprint
|
|
38
38
|
{
|
|
39
39
|
"name": str, # Name of the entity,
|
|
40
|
-
"entity_number": int, # Unique number associated with this entity
|
|
40
|
+
"entity_number": int, # Unique number associated with this entity
|
|
41
41
|
"position": {"x": float, "y": float}, # Position of the entity
|
|
42
42
|
... # Any associated Entity key/value
|
|
43
43
|
},
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"type": str, # Name of the type of condition
|
|
62
62
|
"compare_type": "and" or "or",
|
|
63
63
|
"ticks": int, # If using "time" or "inactivity"
|
|
64
|
-
"condition": CONDITION, # If a circuit condition is
|
|
64
|
+
"condition": CONDITION, # If a circuit condition is
|
|
65
65
|
# needed
|
|
66
66
|
}
|
|
67
67
|
],
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
},
|
|
74
74
|
...
|
|
75
75
|
]
|
|
76
|
-
|
|
76
|
+
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
"""
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
... # Up to 4 icons total
|
|
22
22
|
],
|
|
23
23
|
"description": str, # A user given description for this blueprint book
|
|
24
|
-
"version": int, # The encoded version of Factorio this planner was created
|
|
24
|
+
"version": int, # The encoded version of Factorio this planner was created
|
|
25
25
|
# with/designed for (64 bits)
|
|
26
26
|
"active_index": int, # The currently selected blueprint in "blueprints"
|
|
27
27
|
"blueprints": [ # A list of all Blueprintable objects this book contains
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
{
|
|
37
37
|
"item": "deconstruction-planner",
|
|
38
38
|
... # Any associated DeconstructionPlanner key/values
|
|
39
|
-
},
|
|
39
|
+
},
|
|
40
40
|
"index": int # Index in the Blueprint Book
|
|
41
41
|
}, # or
|
|
42
42
|
{
|
{factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/deconstruction_planner.py
RENAMED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"deconstruction_planner": {
|
|
8
8
|
"item": "deconstruction-planner", # The associated item with this structure
|
|
9
9
|
"label": str, # A user given name for this deconstruction planner
|
|
10
|
-
"version": int, # The encoded version of Factorio this planner was created
|
|
10
|
+
"version": int, # The encoded version of Factorio this planner was created
|
|
11
11
|
# with/designed for (64 bits)
|
|
12
12
|
"settings": {
|
|
13
13
|
"entity_filter_mode": int, # 0 = Whitelist, 1 = Blacklist
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
... # Up to 30 filters total
|
|
20
20
|
]
|
|
21
|
-
"trees_and_rocks_only": bool, # Self explanatory, disables everything
|
|
21
|
+
"trees_and_rocks_only": bool, # Self explanatory, disables everything
|
|
22
22
|
# else
|
|
23
23
|
"tile_filter_mode": int, # 0 = Whitelist, 1 = Blacklist
|
|
24
24
|
"tile_filters": [ # A list of tiles to deconstruct
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
},
|
|
29
29
|
... # Up to 30 filters total
|
|
30
30
|
]
|
|
31
|
-
"tile_selection_mode": int, # 0 = Normal, 1 = Always, 2 = Never,
|
|
31
|
+
"tile_selection_mode": int, # 0 = Normal, 1 = Always, 2 = Never,
|
|
32
32
|
# 3 = Only
|
|
33
|
-
"description": str, # A user given description for this deconstruction
|
|
33
|
+
"description": str, # A user given description for this deconstruction
|
|
34
34
|
# planner
|
|
35
35
|
"icons": [ # A set of signals to act as visual identification
|
|
36
36
|
{
|
|
@@ -111,15 +111,15 @@ class Entity(Exportable, EntityLike):
|
|
|
111
111
|
The internal ID of the entity.
|
|
112
112
|
""",
|
|
113
113
|
)
|
|
114
|
-
quality: Literal[
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
description="""
|
|
114
|
+
quality: Literal["normal", "uncommon", "rare", "epic", "legendary"] = (
|
|
115
|
+
Field( # TODO: determine these automatically
|
|
116
|
+
"normal",
|
|
117
|
+
description="""
|
|
119
118
|
The quality of the entity. Defaults to 'normal' when not specified,
|
|
120
119
|
or when quality is not present in the save being imported to /
|
|
121
120
|
exported from.
|
|
122
121
|
""",
|
|
122
|
+
)
|
|
123
123
|
)
|
|
124
124
|
position: FloatPosition = Field(
|
|
125
125
|
...,
|
|
@@ -12,7 +12,7 @@ import pprint # TODO: think about
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def attempt_and_reissue(
|
|
15
|
-
object: Any, format_model:
|
|
15
|
+
object: Any, format_model: BaseModel, target: Any, name: str, value: Any, **kwargs
|
|
16
16
|
):
|
|
17
17
|
"""
|
|
18
18
|
Helper function that normalizes assignment validation
|
|
@@ -177,8 +177,8 @@ class Transformable:
|
|
|
177
177
|
if direction not in {"horizontal", "vertical"}:
|
|
178
178
|
raise ValueError("'direction' must be either 'horizontal' or 'vertical'")
|
|
179
179
|
|
|
180
|
-
|
|
181
|
-
|
|
180
|
+
pos_matrices = {"horizontal": [-1, +1], "vertical": [+1, -1]}
|
|
181
|
+
pos_matrix = pos_matrices[direction]
|
|
182
182
|
|
|
183
183
|
# Entities
|
|
184
184
|
for entity in self.entities:
|
|
@@ -191,13 +191,14 @@ class Transformable:
|
|
|
191
191
|
pos = Vector(entity.position.x, entity.position.y)
|
|
192
192
|
# Alter the direction
|
|
193
193
|
if entity.rotatable:
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
194
|
+
entity.direction = entity.direction.flip(direction)
|
|
195
|
+
# if direction == "horizontal":
|
|
196
|
+
# entity.direction += ((-2 * (entity.direction - 8)) % 16) % 16
|
|
197
|
+
# else: # direction == "vertical":
|
|
198
|
+
# entity.direction += (((-2 * entity.direction) % 16) - 8) % 16
|
|
198
199
|
|
|
199
200
|
# Alter (both) the position(s)
|
|
200
|
-
entity.position = (pos.x *
|
|
201
|
+
entity.position = (pos.x * pos_matrix[0], pos.y * pos_matrix[1])
|
|
201
202
|
|
|
202
203
|
entity._parent = self
|
|
203
204
|
|
|
@@ -216,7 +217,10 @@ class Transformable:
|
|
|
216
217
|
# With tiles we flip from their center
|
|
217
218
|
pos = Vector(tile.position.x + 0.5, tile.position.y + 0.5)
|
|
218
219
|
# Alter the position
|
|
219
|
-
tile.position = (
|
|
220
|
+
tile.position = (
|
|
221
|
+
pos.x * pos_matrix[0] - 0.5,
|
|
222
|
+
pos.y * pos_matrix[1] - 0.5,
|
|
223
|
+
)
|
|
220
224
|
|
|
221
225
|
tile._parent = self
|
|
222
226
|
|
|
@@ -11,6 +11,7 @@ from enum import IntEnum, Enum
|
|
|
11
11
|
from functools import total_ordering
|
|
12
12
|
import math
|
|
13
13
|
from pydantic_core import core_schema
|
|
14
|
+
from typing import Literal
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
class Direction(IntEnum):
|
|
@@ -101,6 +102,47 @@ class Direction(IntEnum):
|
|
|
101
102
|
"""
|
|
102
103
|
return Direction((self.value - (4 if four_way else 1)) % 16)
|
|
103
104
|
|
|
105
|
+
def flip(self, direction: Literal["horizontal", "vertical"] = "horizontal"):
|
|
106
|
+
matrix = {
|
|
107
|
+
"horizontal": {
|
|
108
|
+
Direction.NORTH: Direction.NORTH,
|
|
109
|
+
Direction.NORTHNORTHEAST: Direction.NORTHNORTHWEST,
|
|
110
|
+
Direction.NORTHEAST: Direction.NORTHWEST,
|
|
111
|
+
Direction.EASTNORTHEAST: Direction.WESTNORTHWEST,
|
|
112
|
+
Direction.EAST: Direction.WEST,
|
|
113
|
+
Direction.EASTSOUTHEAST: Direction.WESTSOUTHWEST,
|
|
114
|
+
Direction.SOUTHEAST: Direction.SOUTHWEST,
|
|
115
|
+
Direction.SOUTHSOUTHEAST: Direction.SOUTHSOUTHWEST,
|
|
116
|
+
Direction.SOUTH: Direction.SOUTH,
|
|
117
|
+
Direction.SOUTHSOUTHWEST: Direction.SOUTHSOUTHEAST,
|
|
118
|
+
Direction.SOUTHWEST: Direction.SOUTHEAST,
|
|
119
|
+
Direction.WESTSOUTHWEST: Direction.EASTSOUTHEAST,
|
|
120
|
+
Direction.WEST: Direction.EAST,
|
|
121
|
+
Direction.WESTNORTHWEST: Direction.EASTNORTHEAST,
|
|
122
|
+
Direction.NORTHWEST: Direction.NORTHEAST,
|
|
123
|
+
Direction.NORTHNORTHWEST: Direction.NORTHNORTHEAST,
|
|
124
|
+
},
|
|
125
|
+
"vertical": {
|
|
126
|
+
Direction.NORTH: Direction.SOUTH,
|
|
127
|
+
Direction.NORTHNORTHEAST: Direction.SOUTHSOUTHEAST,
|
|
128
|
+
Direction.NORTHEAST: Direction.SOUTHEAST,
|
|
129
|
+
Direction.EASTNORTHEAST: Direction.EASTSOUTHEAST,
|
|
130
|
+
Direction.EAST: Direction.EAST,
|
|
131
|
+
Direction.EASTSOUTHEAST: Direction.EASTNORTHEAST,
|
|
132
|
+
Direction.SOUTHEAST: Direction.NORTHEAST,
|
|
133
|
+
Direction.SOUTHSOUTHEAST: Direction.NORTHNORTHEAST,
|
|
134
|
+
Direction.SOUTH: Direction.NORTH,
|
|
135
|
+
Direction.SOUTHSOUTHWEST: Direction.NORTHNORTHWEST,
|
|
136
|
+
Direction.SOUTHWEST: Direction.NORTHWEST,
|
|
137
|
+
Direction.WESTSOUTHWEST: Direction.WESTNORTHWEST,
|
|
138
|
+
Direction.WEST: Direction.WEST,
|
|
139
|
+
Direction.WESTNORTHWEST: Direction.WESTSOUTHWEST,
|
|
140
|
+
Direction.NORTHWEST: Direction.SOUTHWEST,
|
|
141
|
+
Direction.NORTHNORTHWEST: Direction.SOUTHSOUTHWEST,
|
|
142
|
+
},
|
|
143
|
+
}
|
|
144
|
+
return matrix[direction][self.value]
|
|
145
|
+
|
|
104
146
|
def to_orientation(self) -> "Orientation":
|
|
105
147
|
"""
|
|
106
148
|
Converts this direction to an :py:class:`Orientation` of corresponding
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
4
|
Manages the Factorio environment. Primarily holds :py:func:`draftsman.env.update()`,
|
|
5
|
-
which runs through the Factorio data lifecycle and updates the data in
|
|
5
|
+
which runs through the Factorio data lifecycle and updates the data in
|
|
6
6
|
:py:mod:`draftsman.data`.
|
|
7
7
|
|
|
8
8
|
|
|
@@ -579,9 +579,11 @@ def display_mods(mods: dict[str, list[Mod]], verbose=False) -> None:
|
|
|
579
579
|
" ✓ " if mod.enabled and i == 0 else " ",
|
|
580
580
|
"(zip)" if mod.is_archive else "(dir)",
|
|
581
581
|
printed_name,
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
582
|
+
(
|
|
583
|
+
"-"
|
|
584
|
+
if mod.version == ""
|
|
585
|
+
else truncate_str(mod.version, version_width)
|
|
586
|
+
),
|
|
585
587
|
truncate_str(mod.location, location_width),
|
|
586
588
|
name_width=name_width,
|
|
587
589
|
version_width=version_width,
|
|
@@ -602,9 +604,11 @@ def display_mods(mods: dict[str, list[Mod]], verbose=False) -> None:
|
|
|
602
604
|
"✓" if mod.enabled and i == 0 else " ",
|
|
603
605
|
"(zip)" if mod.is_archive else "(dir)",
|
|
604
606
|
printed_name,
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
607
|
+
(
|
|
608
|
+
"-"
|
|
609
|
+
if mod.version == ""
|
|
610
|
+
else truncate_str(mod.version, version_width)
|
|
611
|
+
),
|
|
608
612
|
name_width=name_width,
|
|
609
613
|
version_width=version_width,
|
|
610
614
|
)
|