Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. {
  2. type = "explosion",
  3. name = "napalm-big-explosion",
  4. flags = {"not-on-map"},
  5. subgroup = "explosions",
  6. animations = explosion_animations.big_explosion(),
  7. light = {intensity = 1, size = 50, color = {r=1.0, g=1.0, b=1.0}},
  8. sound = sounds.large_explosion(1.0),
  9. created_effect =
  10. {
  11. type = "direct",
  12. action_delivery =
  13. {
  14. type = "instant",
  15. target_effects =
  16. {
  17. {
  18. type = "create-particle",
  19. repeat_count = 20,
  20. particle_name = "explosion-remnants-particle",
  21. initial_height = 0.5,
  22. speed_from_center = 0.08,
  23. speed_from_center_deviation = 0.15,
  24. initial_vertical_speed = 0.08,
  25. initial_vertical_speed_deviation = 0.15,
  26. offset_deviation = {{-0.2, -0.2}, {0.2, 0.2}}
  27. }
  28. }
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement