Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Modern Armors - Homebrew
- var iFileName = "Modern Armors.js";
- RequiredSheetVersion(13);
- SourceList["MA"] = {
- name: "Modern Armors",
- abbreviation: "MA",
- group: "Homebrew",
- date: "2025/01/02",
- url: "https://www.gmbinder.com/share/-M8CqWP2BL4GITsgyDM2?utm_source=chatgpt.com#p19"
- };
- // Light Armor
- ArmourList["ghillie suit"] = {
- name: "Ghillie Suit",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /ghillie suit/i,
- ac: 11,
- type: "light",
- stealthdis: false,
- weight: 7
- };
- ArmourList["heavy coat"] = {
- name: "Heavy Coat",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /heavy coat/i,
- ac: 11,
- type: "light",
- stealthdis: true,
- weight: 6
- };
- ArmourList["kevlar-lined coat"] = {
- name: "Kevlar-lined Coat",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /kevlar-lined coat/i,
- ac: 12,
- type: "light",
- stealthdis: false,
- weight: 8
- };
- ArmourList["leather jacket"] = {
- name: "Leather Jacket",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /leather jacket/i,
- ac: 11,
- type: "light",
- stealthdis: false,
- weight: 4
- };
- ArmourList["light undercover shirt"] = {
- name: "Light Undercover Shirt",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /light undercover shirt/i,
- ac: 11,
- type: "light",
- stealthdis: false,
- weight: 2
- };
- ArmourList["undercover vest"] = {
- name: "Undercover Vest",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /undercover vest/i,
- ac: 12,
- type: "light",
- stealthdis: false,
- weight: 3
- };
- // Medium Armor
- ArmourList["concealable vest"] = {
- name: "Concealable Vest",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /concealable vest/i,
- ac: 13,
- type: "medium",
- stealthdis: false,
- weight: 4
- };
- ArmourList["light-duty vest"] = {
- name: "Light-duty Vest",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /light-duty vest/i,
- ac: 14,
- type: "medium",
- dex: 3,
- stealthdis: false,
- weight: 8
- };
- ArmourList["tactical vest"] = {
- name: "Tactical Vest",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /tactical vest/i,
- ac: 15,
- type: "medium",
- stealthdis: false,
- weight: 10,
- strReq: 10
- };
- // Heavy Armor
- ArmourList["forced entry unit"] = {
- name: "Forced Entry Unit",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /forced entry unit/i,
- ac: 18,
- type: "heavy",
- stealthdis: true,
- weight: 20
- };
- ArmourList["land warrior armor"] = {
- name: "Land Warrior Armor",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /land warrior armor/i,
- ac: 17,
- type: "heavy",
- stealthdis: true,
- weight: 10
- };
- ArmourList["special response vest"] = {
- name: "Special Response Vest",
- source: ["HB", 0],
- list: "modern",
- regExpSearch: /special response vest/i,
- ac: 15,
- type: "heavy",
- stealthdis: true,
- weight: 15
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement