mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 12:43:13 +00:00
* Splits uplink categories into separate files and moves other files around * Corrects an incorrect description * Puts uplink categories in uplink_categories into the same order as they are individual files * Mercenaries now spawn with their own private uplink. * Adds a random discount to uplink items that is applied every 15 minutes no message no message * Adds changelog * Fakes announcements are now once again purchasable from the uplink and actually work * Removes a debug line * Adds several existing items to the antag uplink including stun rounds for shotguns, metal foam grenades and more * Refactors boxes.dm to use absolute pathing and for loops for contents Adds changelog
67 lines
1.6 KiB
Plaintext
67 lines
1.6 KiB
Plaintext
/*************
|
|
* Ammunition *
|
|
*************/
|
|
/datum/uplink_item/item/ammo
|
|
item_cost = 2
|
|
category = /datum/uplink_category/ammunition
|
|
|
|
/datum/uplink_item/item/ammo/a357
|
|
name = ".357"
|
|
path = /obj/item/ammo_magazine/a357
|
|
|
|
/datum/uplink_item/item/ammo/mc9mm
|
|
name = "9mm"
|
|
path = /obj/item/ammo_magazine/mc9mm
|
|
|
|
/datum/uplink_item/item/ammo/c45m
|
|
name = ".45"
|
|
path = /obj/item/ammo_magazine/c45m
|
|
|
|
/datum/uplink_item/item/ammo/darts
|
|
name = "Darts"
|
|
path = /obj/item/ammo_magazine/chemdart
|
|
|
|
/datum/uplink_item/item/ammo/sniperammo
|
|
name = "14.5mm"
|
|
path = /obj/item/weapon/storage/box/sniperammo
|
|
|
|
/datum/uplink_item/item/ammo/a556
|
|
name = "5.56mm"
|
|
path = /obj/item/ammo_magazine/a556
|
|
|
|
/datum/uplink_item/item/ammo/a556/ap
|
|
name = "5.56mm AP"
|
|
path = /obj/item/ammo_magazine/a556/ap
|
|
|
|
/datum/uplink_item/item/ammo/a10mm
|
|
name = "10mm"
|
|
path = /obj/item/ammo_magazine/a10mm
|
|
|
|
/datum/uplink_item/item/ammo/a762
|
|
name = "7.62mm"
|
|
path = /obj/item/ammo_magazine/a762
|
|
|
|
/datum/uplink_item/item/ammo/a762/ap
|
|
name = "7.62mm AP"
|
|
path = /obj/item/ammo_magazine/a762/ap
|
|
|
|
/datum/uplink_item/item/ammo/g12
|
|
name = "12 gauge"
|
|
path = /obj/item/ammo_magazine/g12
|
|
|
|
/datum/uplink_item/item/ammo/g12/beanbag
|
|
name = "12 gauge beanbag"
|
|
path = /obj/item/ammo_magazine/g12/beanbag
|
|
item_cost = 1 // Discount due to it being LTL.
|
|
|
|
/datum/uplink_item/item/ammo/g12/pellet
|
|
name = "12 gauge pellet"
|
|
path = /obj/item/ammo_magazine/g12/pellet
|
|
|
|
/datum/uplink_item/item/ammo/g12/stun
|
|
name = "12 gauge stun"
|
|
path = /obj/item/weapon/storage/box/stunshells
|
|
|
|
/datum/uplink_item/item/ammo/g12/flash
|
|
name = "12 gauge flash"
|
|
path = /obj/item/weapon/storage/box/flashshells |