Advertisement
Guest User

Untitled

a guest
Jun 28th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. if mods["Krastorio"] then
  2. data.raw["electric-turret"]["laser-turret"].attack_parameters.cooldown = 20
  3. data.raw["electric-turret"]["laser-turret"].attack_parameters.range = 30
  4. data.raw["electric-turret"]["laser-turret"].attack_parameters.damage_modifier = 5
  5. data.raw["electric-turret"]["laser-turret"].attack_parameters.sound =
  6. {
  7. filename = "__base__/sound/fight/pulse.ogg",
  8. volume = 0.75
  9. }
  10. data.raw["electric-turret"]["laser-turret"].attack_parameters.ammo_type.energy_consumption = "3MJ"
  11. data.raw["electric-turret"]["laser-turret"].attack_parameters.ammo_type.action[1].action_delivery.max_length = 35
  12. data.raw["electric-turret"]["laser-turret"].attack_parameters.ammo_type.action[2].action_delivery.max_length = 35
  13. end
  14. if mods["Turret_Range_Buff"] then
  15. data.raw["electric-turret"]["laser-turret"].attack_parameters.range = 32
  16. end
  17. --if settings.startup["laserfix-equipment"].value == "Some flickering" then
  18. data.raw["active-defense-equipment"]["personal-laser-defense-equipment"].attack_parameters =
  19. {
  20. type = "beam",
  21. cooldown = 20,
  22. range = 15,
  23. --source_direction_count = 64,
  24. --source_offset = {0, -3.423489 / 4},
  25. damage_modifier = 4,
  26. ammo_type =
  27. {
  28. category = "laser-turret",
  29. energy_consumption = "50kJ",
  30. action =
  31. {
  32. {
  33. type = "direct",
  34. action_delivery =
  35. {
  36. type = "beam",
  37. beam = "laser-beam",
  38. max_length = 15,
  39. duration = 20,
  40. source_offset = {0, -1.31439 }
  41. }
  42. },
  43. {
  44. type = "direct",
  45. action_delivery =
  46. {
  47. type = "beam",
  48. beam = "laser-beam-light",
  49. max_length = 15,
  50. duration = 20,
  51. source_offset = {0, 0.0 }
  52. }
  53. }
  54. }
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement