Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
78afd44
Add a new longer sling to the game, along with
submariwastaken1time Jul 17, 2025
309705c
resolving stuff
submariwastaken1time Jul 17, 2025
87461f9
likely final tweaks?
submariwastaken1time Jul 17, 2025
90a47f5
more tweaks
submariwastaken1time Jul 17, 2025
5f0e80a
babby's first pull request?
submariwastaken1time Jul 17, 2025
2d6730c
go home github CLI you're drunk
submariwastaken1time Jul 17, 2025
216d781
non
submariwastaken1time Jul 17, 2025
f663bcf
ran files through the linting tool
submariwastaken1time Jul 20, 2025
da4f461
finishing touches added, babby's first commit finished?
submariwastaken1time Jul 20, 2025
fd02c2e
minor final tweaks, works ingame as expected
submariwastaken1time Jul 22, 2025
ab899da
more tweaks at kevin's request
submariwastaken1time Jul 22, 2025
52f0e13
some dispersion tweaks i forgot to add in
submariwastaken1time Jul 22, 2025
3fa7e66
basic mass and volume changes
submariwastaken1time Jul 22, 2025
aaff541
tweaks to appease density test
submariwastaken1time Jul 22, 2025
02dc0cb
final tweaks
submariwastaken1time Jul 23, 2025
fd748e1
changing things again
submariwastaken1time Jul 24, 2025
b66bb44
Update data/json/recipes/weapon/ranged.json
Maleclypse Jul 27, 2025
36bc460
Update data/json/recipes/weapon/ranged.json
Maleclypse Jul 27, 2025
e627983
Update data/json/recipes/weapon/ranged.json
Maleclypse Jul 29, 2025
225b1b7
tweaks
submariwastaken1time Jul 29, 2025
fbdb06b
merge for later pushes
submariwastaken1time Jul 29, 2025
a778d46
more tweaks
submariwastaken1time Jul 29, 2025
d605d6f
tweaks again
submariwastaken1time Jul 29, 2025
ec8303f
push to get this passing basic build
submariwastaken1time Aug 1, 2025
90bb711
push to get this passing basic build
submariwastaken1time Aug 1, 2025
00b5e55
hopefully this will pass basic build
submariwastaken1time Aug 5, 2025
3c38d21
more changes
submariwastaken1time Aug 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions data/json/items/ranged/slings.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,32 @@
"valid_mod_locations": [ [ "underbarrel mount", 1 ] ],
"reload": 50,
"pocket_data": [ { "pocket_type": "MAGAZINE", "ammo_restriction": { "pebble": 1 }, "open_container": true } ]
},
{
"id": "sling_long",
"looks_like": "slingshot",
"type": "ITEM",
"subtypes": [ "GUN" ],
"symbol": "(",
"color": "brown",
"name": { "ctxt": "weapon", "str": "long sling" },
"description": "A long sling, still easy to use and accurate. It's length allows the user to launch pebbles with greate force and range",
"price": "1 USD 50 cent",
"//": "It's little more than a piece of slightly shaped leather",
"material": [ "leather" ],
"flags": [ "RELOAD_AND_SHOOT", "NEVER_JAMS", "PRIMITIVE_RANGED_WEAPON", "BELT_CLIP", "WATERPROOF_GUN" ],
"ammo_effects": [ "NEVER_MISFIRES", "NO_PENETRATE_OBSTACLES" ],
"skill": "throw",
"ammo": [ "pebble" ],
"weight": "90 g",
"volume": "100 ml",
"price_postapoc": "2 USD 50 cent",
"ranged_damage": { "damage_type": "bullet", "amount": 6 },
"range": 16,
"dispersion": 225,
"durability": 6,
"clip_size": 1,
"reload": 75,
"pocket_data": [ { "pocket_type": "MAGAZINE", "ammo_restriction": { "pebble": 1 }, "open_container": true } ]
}
]
31 changes: 31 additions & 0 deletions data/json/recipes/weapon/ranged.json
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,37 @@
"proficiencies": [ { "proficiency": "prof_fibers", "skill_penalty": 0 } ],
"using": [ [ "cordage", 3 ] ]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "sling_long",
"id_suffix": "cord",
"category": "CC_WEAPON",
"subcategory": "CSC_WEAPON_RANGED",
"skill_used": "fabrication",
"skills_required": [ [ "throw", 1 ] ],
"difficulty": 1,
"time": "45 m",
"reversible": true,
"autolearn": true,
"proficiencies": [ { "proficiency": "prof_fibers", "skill_penalty": 0 } ],
"using": [ [ "cordage", 6 ] ]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "sling_long",
"category": "CC_WEAPON",
"subcategory": "CSC_WEAPON_RANGED",
"skill_used": "fabrication",
"skills_required": [ [ "throw", 1 ], [ "tailor", 1 ] ],
"time": "20 m",
"reversible": true,
"autolearn": true,
"proficiencies": [ { "proficiency": "prof_leatherworking_basic" } ],
"qualities": [ { "id": "CUT", "level": 2 }, { "id": "SEW", "level": 1 } ],
"components": [ [ [ "filament", 40, "LIST" ] ], [ [ "leather", 1 ], [ "fur", 1 ] ] ]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
Expand Down
Loading