Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.98 KB | None | 0 0
  1.  data:extend({
  2.   {
  3.     type = "assembling-machine",
  4.     name = "OilSteamFurnace",
  5.     icon = "__OilSteamFurnace__/graphics/icons/OilSteamFurnace.png",
  6.     flags = {"placeable-neutral","placeable-player", "player-creation"},
  7.     minable = {hardness = 0.2, mining_time = 0.5, result = "OilSteamFurnace"},
  8.     max_health = 200,
  9.     corpse = "big-remnants",
  10.     dying_explosion = "huge-explosion",
  11.     collision_box = {{-1.5, -1.5}, {1.5, 1.5}},
  12.     selection_box = {{-1.4, -1.4}, {1.4, 1.4}},
  13.     module_slots = 1,
  14.     allowed_effects = {"consumption", "speed", "productivity", "pollution"},
  15.     animation =
  16.     {
  17.       north =
  18.       {
  19.         filename = "__OilSteamFurnace__/graphics/entity/OilSteamFurnace/OilSteamFurnace.png",
  20.         width = 96,
  21.         height = 141,
  22.         frame_count = 1,
  23.         shift = {0.5, -0.078125}
  24.       },
  25.       west =
  26.       {
  27.         filename = "__OilSteamFurnace__/graphics/entity/OilSteamFurnace/OilSteamFurnace.png",
  28.         x = 156,
  29.         width = 96,
  30.         height = 141,
  31.         frame_count = 1,
  32.         shift = {0.5, -0.078125}
  33.       },
  34.       south =
  35.       {
  36.         filename = "__OilSteamFurnace__/graphics/entity/OilSteamFurnace/OilSteamFurnace.png",
  37.         x = 312,
  38.         width = 96,
  39.         height = 141,
  40.         frame_count = 1,
  41.         shift = {0.5, -0.078125}
  42.       },
  43.       east =
  44.       {
  45.         filename = "__OilSteamFurnace__/graphics/entity/OilSteamFurnace/OilSteamFurnace.png",
  46.         x = 468,
  47.         width = 96,
  48.         height = 141,
  49.         frame_count = 1,
  50.         shift = {0.5, -0.078125}
  51.       }
  52.     },
  53.    
  54.     working_sound =
  55.     {
  56.       sound = {
  57.         {
  58.           filename = "__base__/sound/boiler.ogg",
  59.           volume = 0.8
  60.         }
  61.       },
  62.       idle_sound = { filename = "__base__/sound/idle1.ogg", volume = 0.6 },
  63.       apparent_volume = 1.5,
  64.     },
  65.     crafting_speed = 2,
  66.     energy_source =
  67.     {
  68.       type = "electric",
  69.       usage_priority = "secondary-input",
  70.       emissions = 0.06 / 3.5
  71.     },
  72.     energy_usage = "30kW",
  73.     ingredient_count = 4,
  74.     crafting_categories = {"OilBurn"},
  75.     fluid_boxes =
  76.     {
  77.     {
  78.         production_type = "input",
  79.         pipe_covers = pipecoverspictures(),
  80.         base_area = 10,
  81.         base_level = -1,
  82.         pipe_connections = {{ type="input", position = {-1.7, -1} }}
  83.       },   
  84.    
  85.       {
  86.         production_type = "input",
  87.         pipe_covers = pipecoverspictures(),
  88.         base_area = 30,
  89.         base_level = -1,
  90.         pipe_connections = {{ type="input", position = {0, -1.7} }}
  91.       },
  92.      
  93.       {
  94.         production_type = "input",
  95.         pipe_covers = pipecoverspictures(),
  96.         base_area = 10,
  97.         base_level = -1,
  98.         pipe_connections = {{ type="input", position = {1.7, -1} }}
  99.       },
  100.       {
  101.         production_type = "output",
  102.         pipe_covers = pipecoverspictures(),
  103.         base_level = 1,
  104.         pipe_connections = {{ position = {-0, 1.7} }}
  105.       },
  106.      
  107.     }
  108.   },
  109.   }
  110.   )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement