diff --git a/code/modules/cargo/items/weaponry.dm b/code/modules/cargo/items/weaponry.dm index fabf338776d..5d759f30507 100644 --- a/code/modules/cargo/items/weaponry.dm +++ b/code/modules/cargo/items/weaponry.dm @@ -208,6 +208,20 @@ groupable = TRUE spawn_amount = 1 +/singleton/cargo_item/prarifle + category = "weaponry" + name = "Tsarrayut'yan automatic rifle" + supplier = "zharkov" + description = "An Adhomian assault rifle from the People's Republic of Adhomai." + price = 1450 + items = list( + /obj/item/gun/projectile/automatic/rifle/adhomian + ) + access = ACCESS_ARMORY + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + /singleton/cargo_item/derringer category = "weaponry" name = "derringer" @@ -406,6 +420,48 @@ groupable = TRUE spawn_amount = 1 +/singleton/cargo_item/clip_68 + category = "weaponry" + name = "rifle clip (6.8mm)" + supplier = "zharkov" + description = "A clip of 6.8mm for Adhomian rifles." + price = 30 + items = list( + /obj/item/ammo_magazine/boltaction/adhomai + ) + access = ACCESS_SECURITY + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/magazine_68 + category = "weaponry" + name = "rifle magazine (6.8mm)" + supplier = "zharkov" + description = "A 6.8mm rifle magazine." + price = 65 + items = list( + /obj/item/ammo_magazine/a68 + ) + access = ACCESS_SECURITY + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/magazine_68ap + category = "weaponry" + name = "sniper rifle magazine (6.8mm AP)" + supplier = "zharkov" + description = "An AP 6.8mm rifle magazine." + price = 70 + items = list( + /obj/item/ammo_magazine/a68/hotaki + ) + access = ACCESS_SECURITY + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + /singleton/cargo_item/magazine_9 category = "weaponry" name = "pistol magazine (9mm)" diff --git a/html/changelogs/CatsinHD - Tajgun_Ammo.yml b/html/changelogs/CatsinHD - Tajgun_Ammo.yml new file mode 100644 index 00000000000..157b6e157be --- /dev/null +++ b/html/changelogs/CatsinHD - Tajgun_Ammo.yml @@ -0,0 +1,59 @@ +################################ +# Example Changelog File +# +# 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. +# +# 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.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: CatsinHD + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# 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. +changes: + - rscadd: "Adds the Tsarrayut'an rifle to the cargo order list." + - rscadd: "Adds 6.8mm magazine, clip, and AP magazine to the cargo order list."