26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| return
 | |
| {
 | |
|   entities =
 | |
|   {
 | |
|     {"small-lamp", {x = -2.5, y = -1}, {}},
 | |
|     {"bob-storage-tank-all-corners", {x = 0.5, y = 0}, {dir = "east", }},
 | |
|     {"pipe-straight", {x = -2.5, y = 1}, {dir = "east", }},
 | |
|     {"pipe-elbow", {x = -1.5, y = 1}, {dir = "east", }},
 | |
|     {"pipe-straight", {x = 2.5, y = 1}, {dir = "south", }},
 | |
|     {"pipe-to-ground", {x = 2.5, y = 0}, {dir = "south", }},
 | |
|     {"pipe-straight", {x = -2.5, y = 2}, {dir = "east", }},
 | |
|     {"pipe-elbow", {x = -2.5, y = 3}, {}},
 | |
|     {"pipe-elbow", {x = -0.5, y = 2}, {dir = "south", }},
 | |
|     {"pipe-junction", {x = -1.5, y = 2}, {dir = "south", }},
 | |
|     {"pipe-junction", {x = -1.5, y = 3}, {}},
 | |
|     {"pipe-elbow", {x = 1.5, y = 3}, {}},
 | |
|     {"pipe-elbow", {x = 1.5, y = 2}, {dir = "west", }},
 | |
|     {"pipe-junction", {x = 2.5, y = 3}, {dir = "south", }},
 | |
|     {"pipe-junction", {x = 2.5, y = 2}, {dir = "east", }},
 | |
|     {"pipe-straight", {x = -2.5, y = 4}, {dir = "south", }},
 | |
|     {"pipe-straight", {x = -1.5, y = 4}, {dir = "south", }},
 | |
|     {"pipe-elbow", {x = 1.5, y = 4}, {dir = "west", }},
 | |
|     {"pipe-straight", {x = 2.5, y = 4}, {dir = "west", }},
 | |
|   },
 | |
| }
 |