Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. [
  2. {
  3. "id": "jack",
  4. "type": "TOOL",
  5. "name": "bottle jack",
  6. "description": "A portable hydraulic bottle jack used for lifting vehicles.",
  7. "material": "steel",
  8. "symbol": ";",
  9. "color": "light_gray",
  10. "weight": 11974,
  11. "volume": 6,
  12. "price": 18000,
  13. "bashing": 8,
  14. "to_hit": -2,
  15. "qualities": [ ["JACK", 20 ] ]
  16. },
  17. {
  18. "id": "jack_makeshift",
  19. "type": "TOOL",
  20. "name": "makeshift jack",
  21. "description": "A poorly constructed improvised scissor jack used for lifting vehicles if you're brave enough to use it.",
  22. "material": "steel",
  23. "symbol": ";",
  24. "color": "light_gray",
  25. "weight": 1800,
  26. "volume": 4,
  27. "price": 800,
  28. "bashing": 4,
  29. "to_hit": -2,
  30. "qualities": [ ["JACK", 1 ] ]
  31. },
  32. {
  33. "id": "jack_small",
  34. "type": "TOOL",
  35. "name": "scissor jack",
  36. "description": "A compact scissor jack used for lifting vehicles.",
  37. "material": "steel",
  38. "symbol": ";",
  39. "color": "light_gray",
  40. "weight": 1200,
  41. "volume": 3,
  42. "price": 5000,
  43. "bashing": 4,
  44. "to_hit": -2,
  45. "qualities": [ ["JACK", 2 ] ]
  46. },
  47. {
  48. "id": "oxy_torch",
  49. "type": "TOOL",
  50. "name": "acetylene torch",
  51. "name_plural": "acetylene torches",
  52. "description": "A compact tool kit intended for welding and cutting metal, this portable oxyacetylene torch includes a torch handle and cutting attachment in an easy-to-carry tote. It requires connecting to pressurised cylinders of an appropriate welding gas before use. In addition to its metalworking uses, you can activate it in order to destroy metal barriers.",
  53. "weight": 1600,
  54. "volume": 4,
  55. "price": 20000,
  56. "material": [ "steel", "plastic" ],
  57. "symbol": ";",
  58. "color": "red",
  59. "ammo": "weldgas",
  60. "charges_per_use": 4,
  61. "use_action": "OXYTORCH",
  62. "qualities": [ [ "WELD", 2 ] ],
  63. "magazines": [
  64. [ "weldgas", [ "weldtank", "tinyweldtank" ] ]
  65. ]
  66. }
  67. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement