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.
Files changed (561) hide show
  1. {factorio_draftsman-2.0.2/factorio_draftsman.egg-info → factorio_draftsman-2.0.3}/PKG-INFO +1 -1
  2. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/__init__.py +17 -17
  3. factorio_draftsman-2.0.3/draftsman/_factorio_version.py +4 -0
  4. factorio_draftsman-2.0.3/draftsman/_version.py +4 -0
  5. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/association.py +3 -3
  6. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/blueprint.py +5 -5
  7. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/blueprint_book.py +2 -2
  8. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/deconstruction_planner.py +4 -4
  9. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/entity.py +5 -5
  10. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/exportable.py +1 -1
  11. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/transformable.py +12 -8
  12. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/constants.py +42 -0
  13. factorio_draftsman-2.0.3/draftsman/data/entities.pkl +0 -0
  14. factorio_draftsman-2.0.3/draftsman/data/fluids.pkl +0 -0
  15. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/instruments.pkl +0 -0
  16. factorio_draftsman-2.0.3/draftsman/data/items.pkl +0 -0
  17. factorio_draftsman-2.0.3/draftsman/data/mods.pkl +0 -0
  18. factorio_draftsman-2.0.3/draftsman/data/modules.pkl +0 -0
  19. factorio_draftsman-2.0.3/draftsman/data/planets.pkl +0 -0
  20. factorio_draftsman-2.0.3/draftsman/data/recipes.pkl +0 -0
  21. factorio_draftsman-2.0.3/draftsman/data/signals.pkl +0 -0
  22. factorio_draftsman-2.0.3/draftsman/data/tiles.pkl +0 -0
  23. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/env.py +1 -1
  24. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/mod_list.py +10 -6
  25. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/mod_settings.py +208 -208
  26. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/script.py +5 -3
  27. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/info.json +1 -1
  28. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/autoplace-controls.lua +2 -1
  29. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/decorative/decoratives.lua +3 -3
  30. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/combinator-pictures.lua +1 -1
  31. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/entities.lua +173 -10
  32. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/explosions.lua +1 -0
  33. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/fire.lua +6 -6
  34. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/flying-robots.lua +3 -3
  35. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/mining-drill.lua +3 -3
  36. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/resources.lua +1 -1
  37. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/transport-belts.lua +4 -0
  38. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/trees.lua +9 -1
  39. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item.lua +56 -3
  40. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/particle-animations.lua +1 -0
  41. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/particles.lua +6 -10
  42. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/recipe.lua +4 -4
  43. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tips-and-tricks-simulations.lua +2 -8
  44. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/changelog.txt +449 -3
  45. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/collision-mask-defaults.lua +1 -0
  46. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/event_handler.lua +27 -2
  47. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/math2d.lua +1 -1
  48. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/style.lua +20 -2
  49. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/utility-constants.lua +14 -1
  50. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/utility-sprites.lua +10 -0
  51. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/info.json +1 -1
  52. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/info.json +1 -1
  53. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/base-data-updates.lua +5 -2
  54. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/info.json +1 -1
  55. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/autoplace-controls.lua +2 -1
  56. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-aquilo.lua +2 -2
  57. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-fulgora.lua +12 -12
  58. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-gleba.lua +2 -2
  59. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives-vulcanus.lua +7 -9
  60. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/enemies.lua +2 -2
  61. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/explosions.lua +3 -0
  62. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/plants.lua +145 -56
  63. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/resources.lua +3 -3
  64. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/transport-belts.lua +1 -0
  65. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/turrets.lua +1 -1
  66. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item-effects.lua +2 -0
  67. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item.lua +7 -5
  68. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/particle-animations.lua +2 -2
  69. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/particles.lua +131 -77
  70. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/recipe.lua +13 -13
  71. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/technology.lua +1 -1
  72. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-aquilo.lua +1 -0
  73. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/arithmetic_combinator.py +3 -3
  74. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/decider_combinator.py +69 -212
  75. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/heat_interface.py +5 -5
  76. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/selector_combinator.py +5 -5
  77. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/spider_vehicle.py +3 -3
  78. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/splitter.py +5 -5
  79. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/signatures.py +5 -5
  80. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/utils.py +2 -2
  81. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/warning.py +1 -1
  82. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3/factorio_draftsman.egg-info}/PKG-INFO +1 -1
  83. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/SOURCES.txt +0 -1
  84. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_blueprint.py +16 -2
  85. factorio_draftsman-2.0.3/test/test_version.py +9 -0
  86. factorio_draftsman-2.0.2/Lib/site-packages/numpy/core/tests/data/astype_copy.pkl +0 -0
  87. factorio_draftsman-2.0.2/draftsman/_factorio_version.py +0 -4
  88. factorio_draftsman-2.0.2/draftsman/_version.py +0 -4
  89. factorio_draftsman-2.0.2/draftsman/data/entities.pkl +0 -0
  90. factorio_draftsman-2.0.2/draftsman/data/fluids.pkl +0 -0
  91. factorio_draftsman-2.0.2/draftsman/data/items.pkl +0 -0
  92. factorio_draftsman-2.0.2/draftsman/data/mods.pkl +0 -0
  93. factorio_draftsman-2.0.2/draftsman/data/modules.pkl +0 -0
  94. factorio_draftsman-2.0.2/draftsman/data/planets.pkl +0 -0
  95. factorio_draftsman-2.0.2/draftsman/data/recipes.pkl +0 -0
  96. factorio_draftsman-2.0.2/draftsman/data/signals.pkl +0 -0
  97. factorio_draftsman-2.0.2/draftsman/data/tiles.pkl +0 -0
  98. factorio_draftsman-2.0.2/test/test_version.py +0 -9
  99. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/LICENSE +0 -0
  100. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/MANIFEST.in +0 -0
  101. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/README.md +0 -0
  102. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/blueprintable.py +0 -0
  103. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/__init__.py +0 -0
  104. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/blueprintable.py +0 -0
  105. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/collection.py +0 -0
  106. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/collision_set.py +0 -0
  107. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/entity_like.py +0 -0
  108. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/entity_list.py +0 -0
  109. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/group.py +0 -0
  110. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/__init__.py +0 -0
  111. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/artillery_auto_target.py +0 -0
  112. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/burner_energy_source.py +0 -0
  113. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_condition.py +0 -0
  114. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_connectable.py +0 -0
  115. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_enable.py +0 -0
  116. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_read_contents.py +0 -0
  117. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_read_hand.py +0 -0
  118. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_read_resource.py +0 -0
  119. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/circuit_set_filters.py +0 -0
  120. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/color.py +0 -0
  121. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/consumes_ammo.py +0 -0
  122. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/control_behavior.py +0 -0
  123. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/directional.py +0 -0
  124. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/double_grid_aligned.py +0 -0
  125. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/eight_way_directional.py +0 -0
  126. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/equipment_grid.py +0 -0
  127. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/filters.py +0 -0
  128. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/input_ingredients.py +0 -0
  129. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/inventory.py +0 -0
  130. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/inventory_filter.py +0 -0
  131. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/io_type.py +0 -0
  132. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/logistic_condition.py +0 -0
  133. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/mode_of_operation.py +0 -0
  134. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/modules.py +0 -0
  135. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/orientation.py +0 -0
  136. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/player_description.py +0 -0
  137. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/power_connectable.py +0 -0
  138. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/read_ammo.py +0 -0
  139. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/read_rail_signal.py +0 -0
  140. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/recipe.py +0 -0
  141. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/request_filters.py +0 -0
  142. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/request_items.py +0 -0
  143. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/stack_size.py +0 -0
  144. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/target_priorities.py +0 -0
  145. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/mixins/vehicle.py +0 -0
  146. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/rail_planner.py +0 -0
  147. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/schedule.py +0 -0
  148. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/schedule_list.py +0 -0
  149. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/spatial_data_structure.py +0 -0
  150. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/spatial_hashmap.py +0 -0
  151. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/spatial_like.py +0 -0
  152. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/tile.py +0 -0
  153. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/tile_list.py +0 -0
  154. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/train_configuration.py +0 -0
  155. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/upgrade_planner.py +0 -0
  156. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/classes/vector.py +0 -0
  157. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/defines.lua +0 -0
  158. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/interface.lua +0 -0
  159. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/serpent.lua +0 -0
  160. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/compatibility/settings.lua +0 -0
  161. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/__init__.py +0 -0
  162. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/entities.py +0 -0
  163. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/fluids.py +0 -0
  164. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/instruments.py +0 -0
  165. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/items.py +0 -0
  166. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/mods.py +0 -0
  167. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/modules.py +0 -0
  168. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/planets.py +0 -0
  169. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/recipes.py +0 -0
  170. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/signals.py +0 -0
  171. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/data/tiles.py +0 -0
  172. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/entity.py +0 -0
  173. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/__init__.py +0 -0
  174. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/environment/update.py +0 -0
  175. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/error.py +0 -0
  176. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/extras.py +0 -0
  177. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/.git +0 -0
  178. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/README.md +0 -0
  179. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/data-updates.lua +0 -0
  180. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/data.lua +0 -0
  181. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/1.1.0.json +0 -0
  182. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/1.2.0 stack inserter rename.json +0 -0
  183. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-biter-egg.json +0 -0
  184. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-internal.json +0 -0
  185. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-internal2.json +0 -0
  186. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0-internal3.json +0 -0
  187. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0.json +0 -0
  188. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/2.0.0.lua +0 -0
  189. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/migrations/migrations.txt +0 -0
  190. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/achievements.lua +0 -0
  191. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/ambient-sounds.lua +0 -0
  192. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/ammo-category.lua +0 -0
  193. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/equipment-category.lua +0 -0
  194. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/fuel-category.lua +0 -0
  195. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/module-category.lua +0 -0
  196. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/quality.lua +0 -0
  197. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/recipe-category.lua +0 -0
  198. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/categories/resource-category.lua +0 -0
  199. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/collision-layers.lua +0 -0
  200. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/custom-inputs.lua +0 -0
  201. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/damage-type.lua +0 -0
  202. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/decorative/decorative-trigger-effects.lua +0 -0
  203. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/demo.lua +0 -0
  204. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/artillery-cannon-muzzle-flash-shifting.lua +0 -0
  205. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/assemblerpipes.lua +0 -0
  206. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/atomic-bomb.lua +0 -0
  207. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/beacon-animations.lua +0 -0
  208. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/beams.lua +0 -0
  209. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/biter-ai-settings.lua +0 -0
  210. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/biter-animations.lua +0 -0
  211. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/biter-die-effects.lua +0 -0
  212. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/cargo-hatch.lua +0 -0
  213. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/cargo-pod-catalogue.lua +0 -0
  214. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/character-animations.lua +0 -0
  215. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/circuit-network.lua +0 -0
  216. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/crash-site.lua +0 -0
  217. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemies.lua +0 -0
  218. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemy-autoplace-utils.lua +0 -0
  219. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemy-constants.lua +0 -0
  220. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/enemy-projectiles.lua +0 -0
  221. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/entity-util.lua +0 -0
  222. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/explosion-animations.lua +0 -0
  223. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/factorio-logo.lua +0 -0
  224. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/giga-cargo-hatch.lua +0 -0
  225. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/hit-effects.lua +0 -0
  226. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/laser-sounds.lua +0 -0
  227. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/movement-triggers.lua +0 -0
  228. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/pipecovers.lua +0 -0
  229. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/projectiles.lua +0 -0
  230. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/pump-connector.lua +0 -0
  231. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/rail-pictures.lua +0 -0
  232. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/remnants.lua +0 -0
  233. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/rocket-projectile-pictures.lua +0 -0
  234. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/smoke-animations.lua +0 -0
  235. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/smoke.lua +0 -0
  236. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/sounds.lua +0 -0
  237. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spawner-animation.lua +0 -0
  238. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spidertron-animations.lua +0 -0
  239. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spidertron-light-positions.lua +0 -0
  240. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/spitter-animations.lua +0 -0
  241. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/trains.lua +0 -0
  242. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/turrets.lua +0 -0
  243. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/entity/worm-animations.lua +0 -0
  244. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/equipment-grid.lua +0 -0
  245. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/equipment.lua +0 -0
  246. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/factoriopedia-simulations.lua +0 -0
  247. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/factoriopedia-util.lua +0 -0
  248. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/fire-util.lua +0 -0
  249. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/fluid.lua +0 -0
  250. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/impact-deliver-category.lua +0 -0
  251. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item-groups.lua +0 -0
  252. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item-tints.lua +0 -0
  253. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/item_sounds.lua +0 -0
  254. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/map-gen-presets.lua +0 -0
  255. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/map-settings.lua +0 -0
  256. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/noise-expressions.lua +0 -0
  257. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/planet-map-gen.lua +0 -0
  258. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/planet.lua +0 -0
  259. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession-audio-catalogue-types.lua +0 -0
  260. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession-graphic-catalogue-types.lua +0 -0
  261. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession-style.lua +0 -0
  262. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/procession.lua +0 -0
  263. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/planet/surface-property.lua +0 -0
  264. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/pollution.lua +0 -0
  265. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/shortcuts.lua +0 -0
  266. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/signal.lua +0 -0
  267. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/technology.lua +0 -0
  268. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-collision-masks.lua +0 -0
  269. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-graphics.lua +0 -0
  270. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-pollution-values.lua +0 -0
  271. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-sounds.lua +0 -0
  272. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tile-trigger-effects.lua +0 -0
  273. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tile/tiles.lua +0 -0
  274. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tips-and-tricks.lua +0 -0
  275. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/trigger-target-types.lua +0 -0
  276. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/tutorials.lua +0 -0
  277. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/base/prototypes/utility-sprites.lua +0 -0
  278. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/backers.json +0 -0
  279. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/data.lua +0 -0
  280. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/info.json +0 -0
  281. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/autoplace_utils.lua +0 -0
  282. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/bonus-gui-ordering.lua +0 -0
  283. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/circuit-connector-generated-definitions.lua +0 -0
  284. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/circuit-connector-sprites.lua +0 -0
  285. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/collision-mask-util.lua +0 -0
  286. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/crash-site.lua +0 -0
  287. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/data-duplicate-checker.lua +0 -0
  288. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/dataloader.lua +0 -0
  289. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/kill-score.lua +0 -0
  290. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/math3d.lua +0 -0
  291. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/meld.lua +0 -0
  292. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/mod-gui.lua +0 -0
  293. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/production-score.lua +0 -0
  294. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/resource-autoplace.lua +0 -0
  295. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/silo-script.lua +0 -0
  296. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/sound-util.lua +0 -0
  297. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/space-finish-script.lua +0 -0
  298. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/story.lua +0 -0
  299. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/surface-render-parameter-effects.lua +0 -0
  300. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/lualib/util.lua +0 -0
  301. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/burner-usage.lua +0 -0
  302. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/cursors.lua +0 -0
  303. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/editor-controller.lua +0 -0
  304. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/fonts.lua +0 -0
  305. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/god-controller.lua +0 -0
  306. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/noise-functions.lua +0 -0
  307. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/noise-programs.lua +0 -0
  308. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/parameters.lua +0 -0
  309. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/remote-controller.lua +0 -0
  310. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/spectator-controller.lua +0 -0
  311. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/unknown.lua +0 -0
  312. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/core/prototypes/utility-sounds.lua +0 -0
  313. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/credits.txt +0 -0
  314. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/data.lua +0 -0
  315. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/base-data-updates.lua +0 -0
  316. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rail-pictures.lua +0 -0
  317. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/elevated-rails.lua +0 -0
  318. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/explosions.lua +0 -0
  319. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/entity/remnants.lua +0 -0
  320. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/item/elevated-rails.lua +0 -0
  321. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/particles.lua +0 -0
  322. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/recipe/elevated-rails.lua +0 -0
  323. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/sloped-trains-updates.lua +0 -0
  324. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/technology/elevated-rails.lua +0 -0
  325. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks-simulations.lua +0 -0
  326. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/elevated-rails/prototypes/tips-and-tricks.lua +0 -0
  327. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/map-gen-settings.example.json +0 -0
  328. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/map-settings.example.json +0 -0
  329. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/data-updates.lua +0 -0
  330. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/data.lua +0 -0
  331. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/base-data-updates.lua +0 -0
  332. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/entity.lua +0 -0
  333. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/explosions.lua +0 -0
  334. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/recycler-pictures.lua +0 -0
  335. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/entity/remnants.lua +0 -0
  336. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/item.lua +0 -0
  337. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/module-category.lua +0 -0
  338. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/quality.lua +0 -0
  339. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/recipe.lua +0 -0
  340. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/recycling.lua +0 -0
  341. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/signal.lua +0 -0
  342. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/technology.lua +0 -0
  343. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/tips-and-tricks-simulations.lua +0 -0
  344. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/quality/prototypes/tips-and-tricks.lua +0 -0
  345. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/server-settings.example.json +0 -0
  346. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/server-whitelist.example.json +0 -0
  347. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/data-updates.lua +0 -0
  348. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/data.lua +0 -0
  349. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/aquilo-tilesets.json +0 -0
  350. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/biolab.json +0 -0
  351. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/internal.json +0 -0
  352. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/jelly-yum-rename.json +0 -0
  353. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/shattered-planet.json +0 -0
  354. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/migrations/tungsten-belt-rename.json +0 -0
  355. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/achievements.lua +0 -0
  356. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/active-triggers.lua +0 -0
  357. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/ambient-sounds.lua +0 -0
  358. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/burner-usage.lua +0 -0
  359. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/ammo-category.lua +0 -0
  360. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/fuel-category.lua +0 -0
  361. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/recipe-category.lua +0 -0
  362. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/categories/resource-category.lua +0 -0
  363. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/decorative/decoratives.lua +0 -0
  364. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/agricultural-tower-crane.lua +0 -0
  365. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/asteroid-collector-pictures.lua +0 -0
  366. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/asteroid.lua +0 -0
  367. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/base-frozen-graphics.lua +0 -0
  368. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/beams.lua +0 -0
  369. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/big-mining-drill.lua +0 -0
  370. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/biochamber-pictures.lua +0 -0
  371. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/cargo-hatch.lua +0 -0
  372. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/cargo-pod-catalogue.lua +0 -0
  373. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/circuit-network.lua +0 -0
  374. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/crusher-pictures.lua +0 -0
  375. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/cryogenic-plant-pictures.lua +0 -0
  376. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/electromagnetic-plant-pictures.lua +0 -0
  377. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/entities.lua +0 -0
  378. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/explosion-animations.lua +0 -0
  379. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/flying-robots.lua +0 -0
  380. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/foundry-pictures.lua +0 -0
  381. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/fusion-system-pictures.lua +0 -0
  382. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/giga-cargo-hatch.lua +0 -0
  383. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/gleba-ai-settings.lua +0 -0
  384. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/gleba-enemy-animations.lua +0 -0
  385. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/lightning-collector-graphics.lua +0 -0
  386. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/lightning-rod-graphics.lua +0 -0
  387. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/mech-armor-animations.lua +0 -0
  388. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/projectiles.lua +0 -0
  389. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/railgun-turret-pictures.lua +0 -0
  390. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/remnants.lua +0 -0
  391. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/smoke.lua +0 -0
  392. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/sounds.lua +0 -0
  393. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/space-enemy-autoplace-utils.lua +0 -0
  394. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/space-platform-hub-cockpit.lua +0 -0
  395. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/entity/trees.lua +0 -0
  396. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/equipment-grid.lua +0 -0
  397. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/equipment.lua +0 -0
  398. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/factoriopedia-simulations.lua +0 -0
  399. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/fluid.lua +0 -0
  400. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item-groups.lua +0 -0
  401. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/item_sounds.lua +0 -0
  402. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/asteroid-spawn-definitions.lua +0 -0
  403. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/general-functions.lua +0 -0
  404. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/general-variables.lua +0 -0
  405. {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
  406. {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
  407. {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
  408. {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
  409. {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
  410. {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
  411. {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
  412. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/planet-to-platform.lua +0 -0
  413. {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
  414. {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
  415. {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
  416. {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
  417. {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
  418. {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
  419. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/general/platform-to-planet.lua +0 -0
  420. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-aquilo-map-gen.lua +0 -0
  421. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-fulgora-map-gen.lua +0 -0
  422. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-gleba-map-gen.lua +0 -0
  423. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-map-gen.lua +0 -0
  424. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet-vulcanus-map-gen.lua +0 -0
  425. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/planet.lua +0 -0
  426. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-aquilo.lua +0 -0
  427. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-fulgora.lua +0 -0
  428. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-gleba.lua +0 -0
  429. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-catalogue-vulcanus.lua +0 -0
  430. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession-common.lua +0 -0
  431. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/planet/procession.lua +0 -0
  432. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/spores.lua +0 -0
  433. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/surface.lua +0 -0
  434. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/platform-tile-animations.lua +0 -0
  435. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tile-pollution-values.lua +0 -0
  436. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tile-sounds.lua +0 -0
  437. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tile-trigger-effects.lua +0 -0
  438. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-fulgora.lua +0 -0
  439. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-gleba.lua +0 -0
  440. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles-vulcanus.lua +0 -0
  441. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tile/tiles.lua +0 -0
  442. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks-simulations.lua +0 -0
  443. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/tips-and-tricks.lua +0 -0
  444. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/utility-sounds.lua +0 -0
  445. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-data/space-age/prototypes/utility-sprites.lua +0 -0
  446. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/factorio-mods/.gitignore +0 -0
  447. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/__init__.py +0 -0
  448. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/accumulator.py +0 -0
  449. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/agricultural_tower.py +0 -0
  450. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/ammo_turret.py +0 -0
  451. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/artillery_turret.py +0 -0
  452. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/artillery_wagon.py +0 -0
  453. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/assembling_machine.py +0 -0
  454. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/asteroid_collector.py +0 -0
  455. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/beacon.py +0 -0
  456. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/boiler.py +0 -0
  457. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/burner_generator.py +0 -0
  458. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/car.py +0 -0
  459. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/cargo_bay.py +0 -0
  460. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/cargo_landing_pad.py +0 -0
  461. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/cargo_wagon.py +0 -0
  462. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/constant_combinator.py +0 -0
  463. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/container.py +0 -0
  464. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/curved_rail_a.py +0 -0
  465. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/curved_rail_b.py +0 -0
  466. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/display_panel.py +0 -0
  467. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/electric_energy_interface.py +0 -0
  468. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/electric_pole.py +0 -0
  469. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/electric_turret.py +0 -0
  470. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_curved_rail_a.py +0 -0
  471. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_curved_rail_b.py +0 -0
  472. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_half_diagonal_rail.py +0 -0
  473. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/elevated_straight_rail.py +0 -0
  474. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/filter_inserter.py +0 -0
  475. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fluid_turret.py +0 -0
  476. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fluid_wagon.py +0 -0
  477. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/furnace.py +0 -0
  478. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fusion_generator.py +0 -0
  479. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/fusion_reactor.py +0 -0
  480. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/gate.py +0 -0
  481. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/generator.py +0 -0
  482. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/half_diagonal_rail.py +0 -0
  483. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/heat_pipe.py +0 -0
  484. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/infinity_container.py +0 -0
  485. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/infinity_pipe.py +0 -0
  486. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/inserter.py +0 -0
  487. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/lab.py +0 -0
  488. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/lamp.py +0 -0
  489. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/land_mine.py +0 -0
  490. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/legacy_curved_rail.py +0 -0
  491. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/legacy_straight_rail.py +0 -0
  492. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/lightning_attractor.py +0 -0
  493. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/linked_belt.py +0 -0
  494. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/linked_container.py +0 -0
  495. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/loader.py +0 -0
  496. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/locomotive.py +0 -0
  497. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_active_container.py +0 -0
  498. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_buffer_container.py +0 -0
  499. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_passive_container.py +0 -0
  500. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_request_container.py +0 -0
  501. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/logistic_storage_container.py +0 -0
  502. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/mining_drill.py +0 -0
  503. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/offshore_pump.py +0 -0
  504. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/pipe.py +0 -0
  505. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/player_port.py +0 -0
  506. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/power_switch.py +0 -0
  507. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/programmable_speaker.py +0 -0
  508. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/pump.py +0 -0
  509. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/radar.py +0 -0
  510. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_chain_signal.py +0 -0
  511. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_ramp.py +0 -0
  512. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_signal.py +0 -0
  513. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rail_support.py +0 -0
  514. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/reactor.py +0 -0
  515. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/roboport.py +0 -0
  516. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/rocket_silo.py +0 -0
  517. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/simple_entity_with_force.py +0 -0
  518. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/simple_entity_with_owner.py +0 -0
  519. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/solar_panel.py +0 -0
  520. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/space_platform_hub.py +0 -0
  521. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/storage_tank.py +0 -0
  522. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/straight_rail.py +0 -0
  523. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/thruster.py +0 -0
  524. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/train_stop.py +0 -0
  525. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/transport_belt.py +0 -0
  526. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/turret.py +0 -0
  527. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/underground_belt.py +0 -0
  528. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/underground_pipe.py +0 -0
  529. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/prototypes/wall.py +0 -0
  530. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/rail.py +0 -0
  531. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/tile.py +0 -0
  532. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/draftsman/types.py +0 -0
  533. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/dependency_links.txt +0 -0
  534. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/entry_points.txt +0 -0
  535. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/requires.txt +0 -0
  536. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/factorio_draftsman.egg-info/top_level.txt +0 -0
  537. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/pyproject.toml +0 -0
  538. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/setup.cfg +0 -0
  539. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/setup.py +0 -0
  540. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_association.py +0 -0
  541. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_blueprint_book.py +0 -0
  542. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_blueprintable.py +0 -0
  543. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_collision_set.py +0 -0
  544. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_data.py +0 -0
  545. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_deconstruction_planner.py +0 -0
  546. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_entity.py +0 -0
  547. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_entity_list.py +0 -0
  548. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_environment.py +0 -0
  549. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_examples.py +0 -0
  550. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_group.py +0 -0
  551. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_mixins.py +0 -0
  552. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_rail_planner.py +0 -0
  553. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_schedule.py +0 -0
  554. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_schedule_list.py +0 -0
  555. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_spatial_hash_map.py +0 -0
  556. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_tile.py +0 -0
  557. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_tile_list.py +0 -0
  558. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_train_configuration.py +0 -0
  559. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_upgrade_planner.py +0 -0
  560. {factorio_draftsman-2.0.2 → factorio_draftsman-2.0.3}/test/test_utils.py +0 -0
  561. {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.2
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__
@@ -0,0 +1,4 @@
1
+ # _factorio_version.py
2
+
3
+ __factorio_version__ = "2.0.49.0"
4
+ __factorio_version_info__ = (2, 0, 49, 0)
@@ -0,0 +1,4 @@
1
+ # _version.py
2
+
3
+ __version__ = "2.0.3"
4
+ __version_info__ = (2, 0, 3)
@@ -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: value
26
- if isinstance(value, Association)
27
- else handler(value)
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
  {
@@ -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
- "normal", "uncommon", "rare", "epic", "legendary"
116
- ] = Field( # TODO: determine these automatically
117
- "normal",
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: Any, target: Any, name: str, value: Any, **kwargs
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
- matrices = {"horizontal": [-1, +1], "vertical": [+1, -1]}
181
- matrix = matrices[direction]
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
- if direction == "horizontal":
195
- entity.direction += ((-2 * (entity.direction - 8)) % 16) % 16
196
- else: # direction == "vertical":
197
- entity.direction += (((-2 * entity.direction) % 16) - 8) % 16
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 * matrix[0], pos.y * matrix[1])
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 = (pos.x * matrix[0] - 0.5, pos.y * matrix[1] - 0.5)
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
@@ -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
- if mod.version == ""
584
- else truncate_str(mod.version, version_width),
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
- if mod.version == ""
607
- else truncate_str(mod.version, version_width),
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
  )