Guest User

Untitled

a guest
Oct 29th, 2024
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 4.59 KB | None | 0 0
  1. diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/default.cfg /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/default.cfg
  2. --- /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/default.cfg   2023-12-19 12:51:06.000000000 -0300
  3. +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/default.cfg   2024-10-30 00:22:00.198777600 -0300
  4. @@ -1,20 +1,22 @@
  5.  [item-name]
  6. -construction-robot-nuclear=Nuclear Construction Robot
  7. -logistic-robot-nuclear=Nuclear Logistic Robot
  8. +construction-robot-nuclear = Nuclear Construction Robot
  9. +logistic-robot-nuclear = Nuclear Logistic Robot
  10.  
  11.  [entity-name]
  12. -construction-robot-nuclear=Nuclear Construction Robot
  13. -logistic-robot-nuclear=Nuclear Logistic Robot
  14. +construction-robot-nuclear = Nuclear Construction Robot
  15. +logistic-robot-nuclear = Nuclear Logistic Robot
  16.  
  17.  [recipe-name]
  18. -construction-robot-nuclear=Nuclear Construction Robot
  19. -logistic-robot-nuclear=nuclear Logistic Robot
  20. +construction-robot-nuclear = Nuclear Construction Robot
  21. +logistic-robot-nuclear = nuclear Logistic Robot
  22.  
  23.  [technology-name]
  24. -nuclear-robots=Nuclear Robotics
  25. +nuclear-robots = Nuclear Robotics
  26.  
  27.  [mod-setting-name]
  28.  robot-goboom=Robots Go Boom?
  29. +robot-cargo-mul=Cargo Multiplier
  30. +robot-speed-mul=Speed Multiplier
  31.  
  32.  [mod-setting-description]
  33.  robot-goboom=When a Nuclear robot dies it explodes in a mini nuclear explosion.
  34. diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/locale.cfg /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/locale.cfg
  35. --- /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/locale.cfg    2023-12-19 12:51:38.000000000 -0300
  36. +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/locale.cfg    2024-10-30 00:21:38.960270100 -0300
  37. @@ -15,6 +15,8 @@
  38.  
  39.  [mod-setting-name]
  40.  robot-goboom=Robots Go Boom?
  41. +robot-cargo-mul=Cargo Multiplier
  42. +robot-speed-mul=Speed Multiplier
  43.  
  44.  [mod-setting-description]
  45.  robot-goboom=When a Nuclear robot dies it explodes in a mini nuclear explosion.
  46. diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/prototypes/entity/construction-robot.lua /t/Factorio/new/BuggisNuclearBots_2.0.0/prototypes/entity/construction-robot.lua
  47. --- /t/Factorio/old/BuggisNuclearBots_2.0.0/prototypes/entity/construction-robot.lua    2024-10-21 17:29:50.000000000 -0300
  48. +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/prototypes/entity/construction-robot.lua    2024-10-30 00:20:55.861280700 -0300
  49. @@ -18,8 +18,8 @@
  50.          selection_box = {{-0.5, -1.5}, {0.5, -0.5}},
  51.          hit_visualization_box = {{-0.1, -1.1}, {0.1, -1.0}},
  52.          factoriopedia_simulation = simulations.factoriopedia_construction_robot,
  53. -        max_payload_size = 10,
  54. -        speed = 0.25,
  55. +        max_payload_size = settings.startup["robot-cargo-mul"].value * 1,
  56. +        speed = settings.startup["robot-speed-mul"].value * 0.06,
  57.          transfer_distance = 0.5,
  58.          max_energy = "1.5MJ",
  59.          energy_per_tick = "0kJ",
  60. diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/prototypes/entity/logistic-robot.lua /t/Factorio/new/BuggisNuclearBots_2.0.0/prototypes/entity/logistic-robot.lua
  61. --- /t/Factorio/old/BuggisNuclearBots_2.0.0/prototypes/entity/logistic-robot.lua    2024-10-21 17:29:56.000000000 -0300
  62. +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/prototypes/entity/logistic-robot.lua    2024-10-30 00:20:49.827248700 -0300
  63. @@ -18,8 +18,8 @@
  64.          collision_box = {{0, 0}, {0, 0}},
  65.          selection_box = {{-0.5, -1.5}, {0.5, -0.5}},
  66.          hit_visualization_box = {{-0.1, -1.1}, {0.1, -1.0}},
  67. -        max_payload_size = 20,
  68. -        speed = 0.25,
  69. +        max_payload_size = settings.startup["robot-cargo-mul"].value * 1,
  70. +        speed = settings.startup["robot-speed-mul"].value * 0.05,
  71.          transfer_distance = 0.5,
  72.          max_energy = "1.5MJ",
  73.          energy_per_tick = "0kJ",
  74. diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/settings.lua /t/Factorio/new/BuggisNuclearBots_2.0.0/settings.lua
  75. --- /t/Factorio/old/BuggisNuclearBots_2.0.0/settings.lua    2024-10-21 13:14:24.000000000 -0300
  76. +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/settings.lua    2024-10-30 00:20:13.220332800 -0300
  77. @@ -6,5 +6,21 @@
  78.          default_value = "Enabled",
  79.          allowed_values = {"Disabled", "Enabled"},
  80.          order = "a"
  81. +    },
  82. +    {
  83. +        type = "int-setting",
  84. +        name = "robot-cargo-mul",
  85. +        setting_type = "startup",
  86. +        default_value = 2,
  87. +        minimum_value = 1,
  88. +        maximum_value = 5
  89. +    },
  90. +    {
  91. +        type = "double-setting",
  92. +        name = "robot-speed-mul",
  93. +        setting_type = "startup",
  94. +        default_value = 2.0,
  95. +        minimum_value = 1.0,
  96. +        maximum_value = 5.0
  97.      }
  98.  })
  99. \ No newline at end of file
  100.  
Advertisement
Add Comment
Please, Sign In to add comment