-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AFTERSHOCK] Basic Ballistic Weapons (#47559)
- Loading branch information
1 parent
ed0e6de
commit 00dc3be
Showing
16 changed files
with
515 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[ | ||
{ | ||
"id": "afs_10mm_caseless_FMJ", | ||
"type": "AMMO", | ||
"name": { "str_sp": "10mm FMJ caseless" }, | ||
"description": "Standardized 10mm ammunition with a brass jacketed projectile. For as long as you can remember bullets like these have been used for military, law enforcement, and civilian use. Being caseless, these cannot be disassembled or reloaded.", | ||
"weight": "9 g", | ||
"volume": "117 ml", | ||
"price": 400, | ||
"material": [ "lead" ], | ||
"symbol": "=", | ||
"color": "yellow", | ||
"count": 40, | ||
"stack_size": 40, | ||
"ammo_type": "afs_10mm", | ||
"range": 14, | ||
"damage": { "damage_type": "bullet", "amount": 29, "armor_penetration": 4 }, | ||
"dispersion": 60, | ||
"recoil": 650, | ||
"effects": [ "COOKOFF" ] | ||
}, | ||
{ | ||
"id": "afs_10mm_caseless_JHP", | ||
"type": "AMMO", | ||
"name": { "str_sp": "10mm JHP caseless" }, | ||
"description": "Standardized 10mm ammunition with a hollow point projectile. While they have inferior penetration to FMJ rounds, their expansion slightly increases stopping power against unarmed targets and reduces overpenetration. Being caseless, these cannot be disassembled or reloaded.", | ||
"weight": "7 g", | ||
"volume": "115 ml", | ||
"price": 150, | ||
"material": [ "lead" ], | ||
"symbol": "=", | ||
"color": "yellow", | ||
"count": 40, | ||
"stack_size": 40, | ||
"ammo_type": "afs_10mm", | ||
"range": 14, | ||
"damage": { "damage_type": "bullet", "amount": 31 }, | ||
"dispersion": 60, | ||
"recoil": 600, | ||
"effects": [ "COOKOFF" ] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[ | ||
{ | ||
"id": "afs_25mm_shot", | ||
"type": "AMMO", | ||
"name": { "str_sp": "25mm canister shot" }, | ||
"description": "A 25mm grenade with a canister shot load, deals devastating damage against moderately armored foes within mid to close range. Relatively low tech and affordable when compared to other 25mm grenades, these are often fielded by frontier outfits due to their adequate performance in anti-drone and close quarters combat.", | ||
"weight": "130 g", | ||
"volume": "230 ml", | ||
"price": 8000, | ||
"material": [ "superalloy", "powder", "lead" ], | ||
"symbol": "=", | ||
"color": "pink", | ||
"count": 6, | ||
"stack_size": 1, | ||
"ammo_type": "afs_25mm", | ||
"casing": "afs_25_casing", | ||
"range": 24, | ||
"damage": { "damage_type": "bullet", "amount": 60, "armor_penetration": 15 }, | ||
"dispersion": 75, | ||
"recoil": 2200, | ||
"effects": [ "NEVER_MISFIRES" ] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[ | ||
{ | ||
"id": "afs_7.50mm_caseless", | ||
"type": "AMMO", | ||
"name": { "str_sp": "7.50mm caseless" }, | ||
"description": "An intermediate bullet with an acceptable all-round performance. Due to their role as UICA's standard issue rifle cartridge, these are ubiquitous wherever Earth makes its presence be known. Being caseless, these cannot be disassembled or reloaded.", | ||
"weight": "12 g", | ||
"volume": "194 ml", | ||
"price": 280, | ||
"material": [ "lead" ], | ||
"symbol": "=", | ||
"color": "yellow", | ||
"count": 30, | ||
"stack_size": 47, | ||
"ammo_type": "afs_7.50mm", | ||
"range": 36, | ||
"damage": { "damage_type": "bullet", "amount": 44, "armor_penetration": 2 }, | ||
"dispersion": 30, | ||
"recoil": 1500, | ||
"effects": [ "COOKOFF" ] | ||
}, | ||
{ | ||
"id": "afs_7.50mm_rp", | ||
"type": "AMMO", | ||
"name": { "str_sp": "7.50mm RP" }, | ||
"description": "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and unjacketed projectiles. The 7.50mm RP round is extremely weak with very low stopping power, short range, and negligible recoil. While cheaper than military grade rounds, its only really useful for rifle training, and for hunting small animals. Being caseless, these cannot be disassembled or reloaded.", | ||
"weight": "3 g", | ||
"volume": "65 ml", | ||
"price": 150, | ||
"material": [ "lead" ], | ||
"symbol": "=", | ||
"color": "yellow", | ||
"count": 80, | ||
"stack_size": 100, | ||
"ammo_type": "afs_7.50mm", | ||
"range": 13, | ||
"damage": { "damage_type": "bullet", "amount": 12 }, | ||
"dispersion": 60, | ||
"recoil": 150, | ||
"effects": [ "COOKOFF" ] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[ | ||
{ | ||
"id": "afs_25_casing", | ||
"type": "GENERIC", | ||
"category": "spare_parts", | ||
"name": { "str": "25mm casing" }, | ||
"description": "A large casing from a spent 25mm cartridge.", | ||
"weight": "50 g", | ||
"volume": "45ml", | ||
"material": [ "superalloy" ], | ||
"symbol": "=", | ||
"stackable": true, | ||
"color": "dark_gray" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[ | ||
{ | ||
"id": "afs_orion_84K", | ||
"copy-from": "pistol_base", | ||
"looks_like": "glock_17", | ||
"type": "GUN", | ||
"name": { "str": "Seyfert 84K" }, | ||
"description": "Commonly carried by shipping crews that can afford it, Seyfert Armistice's 84K pistol doesn't particularly shine or show anything special but it keeps you safe on long journeys in the vast dark of Orion's Arm.", | ||
"weight": "780 g", | ||
"volume": "480 ml", | ||
"longest_side": "205 mm", | ||
"price": 59200, | ||
"to_hit": -2, | ||
"bashing": 8, | ||
"material": [ "plastic", "superalloy" ], | ||
"symbol": "(", | ||
"color": "dark_gray", | ||
"ammo": "afs_10mm", | ||
"ranged_damage": { "damage_type": "bullet", "amount": -5 }, | ||
"dispersion": 480, | ||
"durability": 8, | ||
"blackpowder_tolerance": 48, | ||
"min_cycle_recoil": 570, | ||
"pocket_data": [ | ||
{ | ||
"magazine_well": "103 ml", | ||
"pocket_type": "MAGAZINE_WELL", | ||
"holster": true, | ||
"max_contains_volume": "20 L", | ||
"max_contains_weight": "20 kg", | ||
"item_restriction": [ "afs_84k_20mag" ] | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[ | ||
{ | ||
"id": "afs_gibs_shotgun", | ||
"looks_like": "m79", | ||
"type": "GUN", | ||
"reload_noise_volume": 10, | ||
"name": { "str": "Gibson S86" }, | ||
"description": "Manufactured by Gibson Armory, the S86 is a light-weight grenade launcher designed to take care of moderately armored opponents. While the S86 firepower is nothing to truly gawk at, it still packs quite a punch both for the target and user and is usually mounted as it is impossible to fire with average strength.", | ||
"weight": "2700 g", | ||
"volume": "2800 ml", | ||
"longest_side": "736 mm", | ||
"price": 550000, | ||
"to_hit": -3, | ||
"bashing": 10, | ||
"material": [ "superalloy", "plastic" ], | ||
"symbol": "(", | ||
"color": "brown", | ||
"min_strength": 18, | ||
"ranged_damage": { "damage_type": "bullet", "amount": 10 }, | ||
"skill": "launcher", | ||
"modes": [ [ "DEFAULT", "DOUBLE", 4 ] ], | ||
"dispersion": 90, | ||
"durability": 6, | ||
"ammo": [ "afs_25mm" ], | ||
"clip_size": 1, | ||
"pocket_data": [ | ||
{ | ||
"pocket_type": "MAGAZINE_WELL", | ||
"holster": true, | ||
"max_contains_volume": "20 L", | ||
"max_contains_weight": "20 kg", | ||
"item_restriction": [ "afs_25mm_mag" ] | ||
} | ||
], | ||
"reload": 400, | ||
"valid_mod_locations": [ | ||
[ "accessories", 2 ], | ||
[ "barrel", 1 ], | ||
[ "sights", 1 ], | ||
[ "sling", 1 ], | ||
[ "grip mount", 1 ], | ||
[ "rail mount", 1 ], | ||
[ "stock mount", 1 ], | ||
[ "underbarrel mount", 1 ] | ||
] | ||
} | ||
] |
Oops, something went wrong.