Skip to content

Commit 4426d37

Browse files
Stev-the-thirdsteviii
and
steviii
authored
Adds the Xanan rounds to the autolathe (#20758)
Now you can play as a coc consular and get more ammo after you magdump the solarian consular across the hall oorah I cannot decipher autolathe code so it is entirely possible I've messed this up somewhere idk man, I've tested it but I cannot find where to define how much it should cost to make. --------- Co-authored-by: steviii <[email protected]>
1 parent 5026b47 commit 4426d37

File tree

2 files changed

+74
-0
lines changed

2 files changed

+74
-0
lines changed

code/game/machinery/autolathe/designs/ammunition.dm

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,16 @@ ABSTRACT_TYPE(/singleton/autolathe_recipe/ammunition)
9696
path = /obj/item/ammo_magazine/c45uzi
9797
security_level = SEC_LEVEL_RED
9898

99+
/singleton/autolathe_recipe/ammunition/magazine_xanu_pistol
100+
name = "magazine (4.6mm)"
101+
path = /obj/item/ammo_magazine/c46m
102+
security_level = SEC_LEVEL_RED
103+
104+
/singleton/autolathe_recipe/ammunition/magazine_xanu_smg
105+
name = "magazine (4.6mm, extended)"
106+
path = /obj/item/ammo_magazine/c46m/extended
107+
security_level = SEC_LEVEL_RED
108+
99109
/singleton/autolathe_recipe/ammunition/magazine_stetchkin
100110
name = "magazine (9mm)"
101111
path = /obj/item/ammo_magazine/mc9mm
@@ -139,6 +149,11 @@ ABSTRACT_TYPE(/singleton/autolathe_recipe/ammunition)
139149
path = /obj/item/ammo_magazine/a556/carbine/polymer
140150
security_level = SEC_LEVEL_RED
141151

152+
/singleton/autolathe_recipe/ammunition/magazine_xanu_rifle
153+
name = "magazine (6.5mm, rifle)"
154+
path = /obj/item/ammo_magazine/a65
155+
security_level = SEC_LEVEL_RED
156+
142157
/singleton/autolathe_recipe/ammunition/magazine_arifle
143158
name = "magazine (7.62mm)"
144159
path = /obj/item/ammo_magazine/c762
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
################################
2+
# Example Changelog File
3+
#
4+
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
5+
#
6+
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
7+
# When it is, any changes listed below will disappear.
8+
#
9+
# Valid Prefixes:
10+
# bugfix
11+
# - (fixes bugs)
12+
# wip
13+
# - (work in progress)
14+
# qol
15+
# - (quality of life)
16+
# soundadd
17+
# - (adds a sound)
18+
# sounddel
19+
# - (removes a sound)
20+
# rscadd
21+
# - (adds a feature)
22+
# rscdel
23+
# - (removes a feature)
24+
# imageadd
25+
# - (adds an image or sprite)
26+
# imagedel
27+
# - (removes an image or sprite)
28+
# spellcheck
29+
# - (fixes spelling or grammar)
30+
# experiment
31+
# - (experimental change)
32+
# balance
33+
# - (balance changes)
34+
# code_imp
35+
# - (misc internal code change)
36+
# refactor
37+
# - (refactors code)
38+
# config
39+
# - (makes a change to the config files)
40+
# admin
41+
# - (makes changes to administrator tools)
42+
# server
43+
# - (miscellaneous changes to server)
44+
#################################
45+
46+
# Your name.
47+
author: steviii
48+
49+
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
50+
delete-after: True
51+
52+
# Any changes you've made. See valid prefix list above.
53+
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
54+
# SCREW THIS UP AND IT WON'T WORK.
55+
# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit.
56+
# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog.
57+
changes:
58+
- rscadd: "Added the Xanan 4.6mm and 6.5mm rounds to the autolathe."
59+

0 commit comments

Comments
 (0)