Advertisement
Jamison85

Modern Handbook Armors

Jan 1st, 2025 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 2.88 KB | Source Code | 0 0
  1. // Modern Armors - Homebrew
  2. var iFileName = "Modern Armors.js";
  3. RequiredSheetVersion(13);
  4.  
  5. SourceList["MA"] = {
  6.   name: "Modern Armors",
  7.   abbreviation: "MA",
  8.   group: "Homebrew",
  9.   date: "2025/01/02",
  10.   url: "https://www.gmbinder.com/share/-M8CqWP2BL4GITsgyDM2?utm_source=chatgpt.com#p19"
  11. };
  12.  
  13. // Light Armor
  14.  
  15. ArmourList["ghillie suit"] = {
  16.   name: "Ghillie Suit",
  17.   source: ["HB", 0],
  18.   list: "modern",
  19.   regExpSearch: /ghillie suit/i,
  20.   ac: 11,
  21.   type: "light",
  22.   stealthdis: false,
  23.   weight: 7
  24. };
  25.  
  26. ArmourList["heavy coat"] = {
  27.   name: "Heavy Coat",
  28.   source: ["HB", 0],
  29.   list: "modern",
  30.   regExpSearch: /heavy coat/i,
  31.   ac: 11,
  32.   type: "light",
  33.   stealthdis: true,
  34.   weight: 6
  35. };
  36.  
  37. ArmourList["kevlar-lined coat"] = {
  38.   name: "Kevlar-lined Coat",
  39.   source: ["HB", 0],
  40.   list: "modern",
  41.   regExpSearch: /kevlar-lined coat/i,
  42.   ac: 12,
  43.   type: "light",
  44.   stealthdis: false,
  45.   weight: 8
  46. };
  47.  
  48. ArmourList["leather jacket"] = {
  49.   name: "Leather Jacket",
  50.   source: ["HB", 0],
  51.   list: "modern",
  52.   regExpSearch: /leather jacket/i,
  53.   ac: 11,
  54.   type: "light",
  55.   stealthdis: false,
  56.   weight: 4
  57. };
  58.  
  59. ArmourList["light undercover shirt"] = {
  60.   name: "Light Undercover Shirt",
  61.   source: ["HB", 0],
  62.   list: "modern",
  63.   regExpSearch: /light undercover shirt/i,
  64.   ac: 11,
  65.   type: "light",
  66.   stealthdis: false,
  67.   weight: 2
  68. };
  69.  
  70. ArmourList["undercover vest"] = {
  71.   name: "Undercover Vest",
  72.   source: ["HB", 0],
  73.   list: "modern",
  74.   regExpSearch: /undercover vest/i,
  75.   ac: 12,
  76.   type: "light",
  77.   stealthdis: false,
  78.   weight: 3
  79. };
  80.  
  81. // Medium Armor
  82. ArmourList["concealable vest"] = {
  83.   name: "Concealable Vest",
  84.   source: ["HB", 0],
  85.   list: "modern",
  86.   regExpSearch: /concealable vest/i,
  87.   ac: 13,
  88.   type: "medium",
  89.   stealthdis: false,
  90.   weight: 4
  91. };
  92.  
  93. ArmourList["light-duty vest"] = {
  94.   name: "Light-duty Vest",
  95.   source: ["HB", 0],
  96.   list: "modern",
  97.   regExpSearch: /light-duty vest/i,
  98.   ac: 14,
  99.   type: "medium",
  100.   dex: 3,
  101.   stealthdis: false,
  102.   weight: 8
  103. };
  104.  
  105. ArmourList["tactical vest"] = {
  106.   name: "Tactical Vest",
  107.   source: ["HB", 0],
  108.   list: "modern",
  109.   regExpSearch: /tactical vest/i,
  110.   ac: 15,
  111.   type: "medium",
  112.   stealthdis: false,
  113.   weight: 10,
  114.   strReq: 10
  115. };
  116.  
  117. // Heavy Armor
  118. ArmourList["forced entry unit"] = {
  119.   name: "Forced Entry Unit",
  120.   source: ["HB", 0],
  121.   list: "modern",
  122.   regExpSearch: /forced entry unit/i,
  123.   ac: 18,
  124.   type: "heavy",
  125.   stealthdis: true,
  126.   weight: 20
  127. };
  128.  
  129. ArmourList["land warrior armor"] = {
  130.   name: "Land Warrior Armor",
  131.   source: ["HB", 0],
  132.   list: "modern",
  133.   regExpSearch: /land warrior armor/i,
  134.   ac: 17,
  135.   type: "heavy",
  136.   stealthdis: true,
  137.   weight: 10
  138. };
  139.  
  140. ArmourList["special response vest"] = {
  141.   name: "Special Response Vest",
  142.   source: ["HB", 0],
  143.   list: "modern",
  144.   regExpSearch: /special response vest/i,
  145.   ac: 15,
  146.   type: "heavy",
  147.   stealthdis: true,
  148.   weight: 15
  149. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement