18 lines
		
	
	
		
			485 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			485 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Numbers indicate the maximum number of items that can be loaded
 | |
| -- The limit is either the stack size (cramming in as many as fit)
 | |
| -- Or this number
 | |
| local LOAD_MAP = {
 | |
| 	plasmacutter = { oxygentank = 1 },
 | |
| 	weldingtool = { weldingfueltank = 1 },
 | |
| 	revolver = { revolverround = 999 },
 | |
| 	harpooncoilrifle = {
 | |
| 		spear = 999,
 | |
| 		batterycell = 1
 | |
| 	},
 | |
| 	anechoicdivingsuit = { oxygentank = 1, },
 | |
| 	handheldsonar = { batterycell = 1 },
 | |
| 	underwaterscooter = { batterycell = 1 },
 | |
| }
 | |
| 
 | |
| return LOAD_MAP
 |