-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Smartguns * Style corrections * Update ranged.cpp * Remove a weapon that snuck through.
- Loading branch information
1 parent
8c5310f
commit 60ae0ca
Showing
17 changed files
with
265 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[ | ||
{ | ||
"type": "item_group", | ||
"id": "afs_template_10mm_smart", | ||
"subtype": "distribution", | ||
"entries": [ { "item": "afs_10mm_smart", "prob": 10 } ] | ||
} | ||
] |
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
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
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,12 @@ | ||
[ | ||
{ | ||
"type": "GENERIC", | ||
"id": "afs_10mm_smart_template", | ||
"copy-from": "standard_template_construct", | ||
"color": "yellow", | ||
"name": { "str": "Wraitheon production chip" }, | ||
"description": "An encrypted Wraitheon industrial production chip. The executive logo embossed on its lower right imply its contents are extremely valuable.", | ||
"nanofab_template_group": "afs_template_10mm_smart", | ||
"template_requirements": "afs_nanofab_material_3" | ||
} | ||
] |
35 changes: 35 additions & 0 deletions
35
data/mods/Aftershock/maps/furniture_and_terrain/terrain_manufactured.json
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 @@ | ||
[ | ||
{ | ||
"type": "terrain", | ||
"id": "t_nanofab", | ||
"name": "nanofabricator control panel", | ||
"symbol": "&", | ||
"description": "A small computer panel attached to a nanofabricator. It has a single slot for reading templates.", | ||
"allowed_template_ids": [ "standard_template_construct", "debug_template", "afs_10mm_smart_template" ], | ||
"color": "red", | ||
"looks_like": "f_console", | ||
"move_cost": 0, | ||
"coverage": 50, | ||
"flags": [ "WALL", "NOITEM", "PERMEABLE" ], | ||
"examine_action": "nanofab", | ||
"bash": { | ||
"str_min": 8, | ||
"str_max": 150, | ||
"sound": "crunch!", | ||
"sound_fail": "whack!", | ||
"ter_set": "t_console_broken", | ||
"items": [ | ||
{ "item": "processor", "prob": 25 }, | ||
{ "item": "RAM", "count": [ 0, 2 ], "prob": 50 }, | ||
{ "item": "cable", "charges": [ 1, 2 ], "prob": 50 }, | ||
{ "item": "small_lcd_screen", "prob": 25 }, | ||
{ "item": "e_scrap", "count": [ 1, 4 ], "prob": 50 }, | ||
{ "item": "circuit", "count": [ 0, 2 ], "prob": 50 }, | ||
{ "item": "power_supply", "prob": 25 }, | ||
{ "item": "amplifier", "prob": 25 }, | ||
{ "item": "plastic_chunk", "count": [ 4, 10 ], "prob": 50 }, | ||
{ "item": "scrap", "count": [ 2, 6 ], "prob": 50 } | ||
] | ||
} | ||
} | ||
] |
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,12 @@ | ||
[ | ||
{ | ||
"type": "skill", | ||
"id": "smartgun", | ||
"name": { "str": "smart guns" }, | ||
"description": "Back in the 21st century marksmanship was an art whose mastery meant arduous years of constant training and preparation. There are computers for that now.", | ||
"tags": [ "combat_skill" ], | ||
"time_to_attack": { "min_time": 20, "base_time": 30, "time_reduction_per_level": 1 }, | ||
"display_category": "display_ranged", | ||
"companion_skill_practice": [ { "skill": "combat", "weight": 25 } ] | ||
} | ||
] |
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