Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/default.cfg /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/default.cfg
- --- /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/default.cfg 2023-12-19 12:51:06.000000000 -0300
- +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/default.cfg 2024-10-30 00:22:00.198777600 -0300
- @@ -1,20 +1,22 @@
- [item-name]
- -construction-robot-nuclear=Nuclear Construction Robot
- -logistic-robot-nuclear=Nuclear Logistic Robot
- +construction-robot-nuclear = Nuclear Construction Robot
- +logistic-robot-nuclear = Nuclear Logistic Robot
- [entity-name]
- -construction-robot-nuclear=Nuclear Construction Robot
- -logistic-robot-nuclear=Nuclear Logistic Robot
- +construction-robot-nuclear = Nuclear Construction Robot
- +logistic-robot-nuclear = Nuclear Logistic Robot
- [recipe-name]
- -construction-robot-nuclear=Nuclear Construction Robot
- -logistic-robot-nuclear=nuclear Logistic Robot
- +construction-robot-nuclear = Nuclear Construction Robot
- +logistic-robot-nuclear = nuclear Logistic Robot
- [technology-name]
- -nuclear-robots=Nuclear Robotics
- +nuclear-robots = Nuclear Robotics
- [mod-setting-name]
- robot-goboom=Robots Go Boom?
- +robot-cargo-mul=Cargo Multiplier
- +robot-speed-mul=Speed Multiplier
- [mod-setting-description]
- robot-goboom=When a Nuclear robot dies it explodes in a mini nuclear explosion.
- diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/locale.cfg /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/locale.cfg
- --- /t/Factorio/old/BuggisNuclearBots_2.0.0/locale/en/locale.cfg 2023-12-19 12:51:38.000000000 -0300
- +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/locale/en/locale.cfg 2024-10-30 00:21:38.960270100 -0300
- @@ -15,6 +15,8 @@
- [mod-setting-name]
- robot-goboom=Robots Go Boom?
- +robot-cargo-mul=Cargo Multiplier
- +robot-speed-mul=Speed Multiplier
- [mod-setting-description]
- robot-goboom=When a Nuclear robot dies it explodes in a mini nuclear explosion.
- 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
- --- /t/Factorio/old/BuggisNuclearBots_2.0.0/prototypes/entity/construction-robot.lua 2024-10-21 17:29:50.000000000 -0300
- +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/prototypes/entity/construction-robot.lua 2024-10-30 00:20:55.861280700 -0300
- @@ -18,8 +18,8 @@
- selection_box = {{-0.5, -1.5}, {0.5, -0.5}},
- hit_visualization_box = {{-0.1, -1.1}, {0.1, -1.0}},
- factoriopedia_simulation = simulations.factoriopedia_construction_robot,
- - max_payload_size = 10,
- - speed = 0.25,
- + max_payload_size = settings.startup["robot-cargo-mul"].value * 1,
- + speed = settings.startup["robot-speed-mul"].value * 0.06,
- transfer_distance = 0.5,
- max_energy = "1.5MJ",
- energy_per_tick = "0kJ",
- 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
- --- /t/Factorio/old/BuggisNuclearBots_2.0.0/prototypes/entity/logistic-robot.lua 2024-10-21 17:29:56.000000000 -0300
- +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/prototypes/entity/logistic-robot.lua 2024-10-30 00:20:49.827248700 -0300
- @@ -18,8 +18,8 @@
- collision_box = {{0, 0}, {0, 0}},
- selection_box = {{-0.5, -1.5}, {0.5, -0.5}},
- hit_visualization_box = {{-0.1, -1.1}, {0.1, -1.0}},
- - max_payload_size = 20,
- - speed = 0.25,
- + max_payload_size = settings.startup["robot-cargo-mul"].value * 1,
- + speed = settings.startup["robot-speed-mul"].value * 0.05,
- transfer_distance = 0.5,
- max_energy = "1.5MJ",
- energy_per_tick = "0kJ",
- diff -bur /t/Factorio/old/BuggisNuclearBots_2.0.0/settings.lua /t/Factorio/new/BuggisNuclearBots_2.0.0/settings.lua
- --- /t/Factorio/old/BuggisNuclearBots_2.0.0/settings.lua 2024-10-21 13:14:24.000000000 -0300
- +++ /t/Factorio/new/BuggisNuclearBots_2.0.0/settings.lua 2024-10-30 00:20:13.220332800 -0300
- @@ -6,5 +6,21 @@
- default_value = "Enabled",
- allowed_values = {"Disabled", "Enabled"},
- order = "a"
- + },
- + {
- + type = "int-setting",
- + name = "robot-cargo-mul",
- + setting_type = "startup",
- + default_value = 2,
- + minimum_value = 1,
- + maximum_value = 5
- + },
- + {
- + type = "double-setting",
- + name = "robot-speed-mul",
- + setting_type = "startup",
- + default_value = 2.0,
- + minimum_value = 1.0,
- + maximum_value = 5.0
- }
- })
- \ No newline at end of file
Advertisement
Add Comment
Please, Sign In to add comment