Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 10 additions & 0 deletions Brass_making/changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
25/05/2024 17:29
-changed the casing manufacturing recipes to require a forge and the casing
-fixed a bug that crashed the game on charecter creation

25/05/2024 12:19
- added a recipe to alloy copper and zinc to make small brass
- added a "already has a chosen casing" requirement to the casing manufacturing récipe

01/06/2024 07:21
- Fixed a small error in the small brass crafting récipe
24 changes: 24 additions & 0 deletions Brass_making/items/brass.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[
{
"id": "brass_small",
"type": "AMMO",
"category": "spare_parts",
"name": {
"str_sp": "brass"
},
"description": "A small unit of brass, you can fit maybe a dozen of them on your palm.",
"weight": "5 g",
"volume": "5 ml",
"//": "cartridge brass is the type of brass used in bullet casings, its composed of 70% copper and 30% zinc with some impurities.",
"price": "1 USD",
"price_postapoc": "1 USD",
"count": 100,
"stack_size": 200,
"material": [
"brass"
],
"symbol": "/",
"color": "yellow",
"ammo_type": "components"
}
]
12 changes: 12 additions & 0 deletions Brass_making/modinfo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "MOD_INFO",
"id": "BrassMaking",
"name": "BrassMaking",
"authors": [ "Just_a_NCR_ranger" ],
"description": "Make bullet casings with brass ingots and make brass by alloying it. This is my first mod, thanks for the folks on the discord for the help.",
"//": "Version 1.0",
"category": "content",
"dependencies": [ "dda" ]
}
]
12 changes: 12 additions & 0 deletions Brass_making/recipes/Uncraft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"result": "scrap_brass",
"type": "uncraft",
"activity_level": "BRISK_EXERCISE",
"skill_used": "fabrication",
"difficulty": 1,
"time": "1 m",
"qualities": [ { "id": "SAW_M", "level": 1 } ],
"components": [ [ [ "brass_small", 60 ] ] ]
}
]
Loading