thewreck

Cobalt Mod API - Inventories

Dec 4th, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.45 KB | None | 0 0
  1. INVENTORIES = {
  2.   airBomb = {
  3.     categories = {
  4.       "consumable",
  5.       "convertable",
  6.       "ammo",
  7.     },
  8.     defaultSlot = 2,
  9.     equipmentSlots = {
  10.       {...},
  11.     },
  12.     maxSize = 5,
  13.     slots = {
  14.       {...},
  15.       {...},
  16.     },
  17.   },
  18.   amanita = {
  19.     categories = {
  20.       "consumable",
  21.       "convertable",
  22.       "ammo",
  23.     },
  24.     defaultSlot = 2,
  25.     equipmentSlots = {
  26.       {...},
  27.       {...},
  28.       {...},
  29.       {...},
  30.     },
  31.     huge = true,
  32.     maxSize = 6,
  33.     slots = {
  34.       {...},
  35.       {...},
  36.       {...},
  37.     },
  38.   },
  39.   backpack = {
  40.     equipmentSlots = {
  41.       {...},
  42.     },
  43.     maxSize = 5,
  44.   },
  45.   bird = {
  46.     categories = {
  47.       "consumable",
  48.       "convertable",
  49.       "ammo",
  50.     },
  51.     defaultSlot = 2,
  52.     huge = true,
  53.     maxSize = 6,
  54.     slots = {
  55.       {...},
  56.       {...},
  57.       {...},
  58.     },
  59.     specialStash = true,
  60.   },
  61.   blueface = {
  62.     categories = {
  63.       "consumable",
  64.       "convertable",
  65.       "ammo",
  66.     },
  67.     defaultSlot = 2,
  68.     equipmentSlots = {
  69.       {...},
  70.       {...},
  71.     },
  72.     huge = true,
  73.     maxSize = 6,
  74.     slots = {
  75.       {...},
  76.       {...},
  77.       {...},
  78.     },
  79.   },
  80.   boom = {
  81.     categories = {
  82.     },
  83.     defaultSlot = 1,
  84.     equipmentSlots = {
  85.       {...},
  86.     },
  87.     hudSlots = {
  88.       1,
  89.     },
  90.     maxSize = 5,
  91.     slots = {
  92.       {...},
  93.     },
  94.   },
  95.   brain = {
  96.     categories = {
  97.       "consumable",
  98.       "convertable",
  99.       "ammo",
  100.     },
  101.     defaultSlot = 2,
  102.     equipmentSlots = {
  103.       {...},
  104.     },
  105.     huge = true,
  106.     maxSize = 3,
  107.     slots = {
  108.       {...},
  109.       {...},
  110.       {...},
  111.     },
  112.   },
  113.   carSentry = {
  114.     categories = {
  115.       "ammo",
  116.     },
  117.     defaultSlot = 1,
  118.     maxSize = 5,
  119.     slots = {
  120.       {...},
  121.     },
  122.     uniqueEquipment = {
  123.       "helmetLow5",
  124.       "plateLow5",
  125.       "radio",
  126.     },
  127.   },
  128.   catapultSentry = {
  129.     defaultSlot = 1,
  130.     huge = true,
  131.     maxSize = 6,
  132.     slots = {
  133.       {...},
  134.     },
  135.     uniqueEquipment = {
  136.       "helmetLow2",
  137.     },
  138.   },
  139.   default = {
  140.     categories = {
  141.       "consumable",
  142.       "convertable",
  143.       "ammo",
  144.     },
  145.     defaultSlot = 2,
  146.     huge = true,
  147.     maxSize = 5,
  148.     slots = {
  149.       {...},
  150.       {...},
  151.       {...},
  152.     },
  153.   },
  154.   device = {
  155.     maxSize = 5,
  156.   },
  157.   fly = {
  158.     categories = {
  159.     },
  160.     defaultSlot = 1,
  161.     equipmentSlots = {
  162.       {...},
  163.     },
  164.     hudSlots = {
  165.       1,
  166.     },
  167.     maxSize = 5,
  168.     slots = {
  169.       {...},
  170.     },
  171.   },
  172.   ghost = {
  173.     categories = {
  174.     },
  175.     defaultSlot = 1,
  176.     maxSize = 5,
  177.     slots = {
  178.       {...},
  179.     },
  180.   },
  181.   hamster = {
  182.     defaultSlot = 1,
  183.     hudSlots = {
  184.       1,
  185.     },
  186.     maxSize = 5,
  187.     slots = {
  188.       {...},
  189.     },
  190.   },
  191.   human = {
  192.     categories = {
  193.       "consumable",
  194.       "convertable",
  195.       "ammo",
  196.     },
  197.     defaultSlot = 2,
  198.     equipmentSlots = {
  199.       {...},
  200.       {...},
  201.       {...},
  202.       {...},
  203.       {...},
  204.       {...},
  205.       {...},
  206.       {...},
  207.     },
  208.     huge = true,
  209.     maxSize = 6,
  210.     slots = {
  211.       {...},
  212.       {...},
  213.       {...},
  214.     },
  215.   },
  216.   jetbike = {
  217.     categories = {
  218.       "ammo",
  219.     },
  220.     defaultSlot = 1,
  221.     hudSlots = {
  222.       1,
  223.     },
  224.     maxSize = 5,
  225.     slots = {
  226.       {...},
  227.     },
  228.   },
  229.   manet = {
  230.     maxSize = 3,
  231.   },
  232.   mech = {
  233.     categories = {
  234.       "ammo",
  235.     },
  236.     defaultSlot = 2,
  237.     equipmentSlots = {
  238.       {...},
  239.     },
  240.     hudSlots = {
  241.       1,
  242.       2,
  243.       3,
  244.     },
  245.     huge = true,
  246.     maxSize = 5,
  247.     slots = {
  248.       {...},
  249.       {...},
  250.       {...},
  251.     },
  252.   },
  253.   metalface = {
  254.     categories = {
  255.       "consumable",
  256.       "convertable",
  257.       "ammo",
  258.     },
  259.     defaultSlot = 2,
  260.     equipmentSlots = {
  261.       {...},
  262.       {...},
  263.       {...},
  264.       {...},
  265.       {...},
  266.       {...},
  267.       {...},
  268.       {...},
  269.       {...},
  270.       {...},
  271.     },
  272.     huge = true,
  273.     maxSize = 6,
  274.     slots = {
  275.       {...},
  276.       {...},
  277.       {...},
  278.     },
  279.   },
  280.   mountedSentry = {
  281.     categories = {
  282.       "ammo",
  283.     },
  284.     defaultSlot = 1,
  285.     maxSize = 5,
  286.     slots = {
  287.       {...},
  288.     },
  289.     uniqueEquipment = {
  290.       "helmetLow3",
  291.       "plateLow3",
  292.     },
  293.   },
  294.   ninja = {
  295.     categories = {
  296.       "consumable",
  297.       "convertable",
  298.       "ammo",
  299.     },
  300.     defaultSlot = 2,
  301.     equipmentSlots = {
  302.       {...},
  303.       {...},
  304.       {...},
  305.       {...},
  306.     },
  307.     huge = true,
  308.     maxSize = 6,
  309.     slots = {
  310.       {...},
  311.       {...},
  312.       {...},
  313.     },
  314.   },
  315.   relay = {
  316.     equipmentSlots = {
  317.       {...},
  318.     },
  319.     maxSize = 6,
  320.   },
  321.   robot = {
  322.     categories = {
  323.       "consumable",
  324.       "convertable",
  325.       "ammo",
  326.     },
  327.     defaultSlot = 2,
  328.     equipmentSlots = {
  329.       {...},
  330.       {...},
  331.       {...},
  332.       {...},
  333.       {...},
  334.     },
  335.     huge = true,
  336.     maxSize = 6,
  337.     slots = {
  338.       {...},
  339.       {...},
  340.       {...},
  341.     },
  342.   },
  343.   sentry = {
  344.     categories = {
  345.       "ammo",
  346.     },
  347.     defaultSlot = 1,
  348.     equipmentSlots = {
  349.       {...},
  350.       {...},
  351.     },
  352.     maxSize = 5,
  353.     slots = {
  354.       {...},
  355.     },
  356.   },
  357.   shroom = {
  358.     categories = {
  359.       "consumable",
  360.       "convertable",
  361.       "ammo",
  362.     },
  363.     defaultSlot = 2,
  364.     huge = true,
  365.     maxSize = 5,
  366.     slots = {
  367.       {...},
  368.       {...},
  369.       {...},
  370.     },
  371.   },
  372.   shroomCat = {
  373.     categories = {
  374.       "consumable",
  375.       "convertable",
  376.       "ammo",
  377.     },
  378.     defaultSlot = 2,
  379.     equipmentSlots = {
  380.       {...},
  381.       {...},
  382.       {...},
  383.       {...},
  384.     },
  385.     huge = true,
  386.     maxSize = 6,
  387.     slots = {
  388.       {...},
  389.       {...},
  390.       {...},
  391.     },
  392.   },
  393.   skullfish = {
  394.     categories = {
  395.     },
  396.     defaultSlot = 1,
  397.     equipmentSlots = {
  398.     },
  399.     maxSize = 5,
  400.     slots = {
  401.       {...},
  402.     },
  403.   },
  404.   smallRobot = {
  405.     categories = {
  406.       "consumable",
  407.       "convertable",
  408.       "ammo",
  409.     },
  410.     defaultSlot = 2,
  411.     huge = true,
  412.     maxSize = 5,
  413.     slots = {
  414.       {...},
  415.       {...},
  416.       {...},
  417.     },
  418.   },
  419.   spikeBird = {
  420.     defaultSlot = 1,
  421.     hudSlots = {
  422.       1,
  423.     },
  424.     maxSize = 5,
  425.     slots = {
  426.       {...},
  427.     },
  428.   },
  429.   springSentry = {
  430.     defaultSlot = 1,
  431.     huge = true,
  432.     maxSize = 6,
  433.     slots = {
  434.       {...},
  435.     },
  436.   },
  437.   springbot = {
  438.     categories = {
  439.       "ammo",
  440.     },
  441.     defaultSlot = 1,
  442.     maxSize = 5,
  443.     slots = {
  444.       {...},
  445.     },
  446.   },
  447.   starGuard = {
  448.     categories = {
  449.       "ammo",
  450.     },
  451.     defaultSlot = 1,
  452.     maxSize = 6,
  453.     slots = {
  454.       {...},
  455.     },
  456.   },
  457.   tripodSentry = {
  458.     categories = {
  459.       "ammo",
  460.     },
  461.     defaultSlot = 1,
  462.     maxSize = 5,
  463.     slots = {
  464.       {...},
  465.     },
  466.     uniqueEquipment = {
  467.       "helmetLow1",
  468.       "plateLow1",
  469.     },
  470.   },
  471.   trunkan = {
  472.     categories = {
  473.     },
  474.     equipmentSlots = {
  475.       {...},
  476.     },
  477.     maxSize = 5,
  478.     slots = {
  479.     },
  480.   },
  481.   walker = {
  482.     categories = {
  483.       "consumable",
  484.       "convertable",
  485.       "ammo",
  486.     },
  487.     defaultSlot = 2,
  488.     equipmentSlots = {
  489.       {...},
  490.       {...},
  491.     },
  492.     hudSlots = {
  493.       1,
  494.       2,
  495.       3,
  496.     },
  497.     maxSize = 5,
  498.     slots = {
  499.       {...},
  500.       {...},
  501.       {...},
  502.     },
  503.   },
  504.   wasp = {
  505.     categories = {
  506.     },
  507.     defaultSlot = 1,
  508.     equipmentSlots = {
  509.       {...},
  510.     },
  511.     hudSlots = {
  512.       1,
  513.     },
  514.     maxSize = 5,
  515.     slots = {
  516.       {...},
  517.     },
  518.   },
  519. }
Advertisement
Add Comment
Please, Sign In to add comment